summaryrefslogtreecommitdiffstats
path: root/src/usr/local/www/pkg_mgr_install.php
Commit message (Collapse)AuthorAgeFilesLines
* Refresh metadata before an upgradeRenato Botelho2017-08-111-1/+1
|
* Typos in pkg management code commentsPhil Davis2017-05-021-1/+1
|
* Deduplicate codeRenato Botelho2017-03-061-2/+1
|
* GET/POST conversionSteve Beaver2017-02-141-2/+2
|
* Merge pull request #3503 from phil-davis/patch-3Renato Botelho2017-02-071-0/+1
|\
| * Fix #7226 Package installation message is incompletePhil Davis2017-02-071-0/+1
| | | | | | This makes it remember pkgname after the install finishes and the form is re-submitted.
* | pkg_mgr_install remove embedded HTML from result stringsPhil Davis2017-02-071-9/+11
|/
* Encode 'from' and 'to' before output on pkg_mgr_install.php. Fixes #7225jim-p2017-02-071-1/+1
|
* Code with multiple %s in usr/local/wwwPhil Davis2017-02-011-2/+2
|
* Tidy up "<script>" tagsColin Fleming2017-01-131-2/+2
| | | | | | Tidy up <script> tags by adding TYPE attribute (https://doc.pfsense.org/index.php/Developer_Style_Guide#HTML_Specific_Rules)
* Breadcrumb linksPhil Davis2017-01-101-0/+2
|
* Fix log file deletionSteve Beaver2016-12-091-1/+2
|
* Revise status messages. Adjust PID file timeout to accommodate slower systemsSteve Beaver2016-12-021-11/+12
|
* Correct "not ready" flagSteve Beaver2016-11-301-1/+1
|
* Allow for slower uFW by removing log file before upgrading, and allowing ↵Steve Beaver2016-11-301-2/+12
| | | | more time for the PID to appear
* Fix System Update linkRenato Botelho2016-11-281-1/+1
|
* Move copyright from ESF to NetgateRenato Botelho2016-09-061-1/+1
|
* Code style and commentsPhil Davis2016-08-161-1/+1
| | | | No functional change - just making style consistent
* Move to Apache License 2.0Renato Botelho2016-07-151-41/+9
|
* Review license / copyright on all files (final round)Renato Botelho2016-07-151-42/+40
|
* Rationalize System Update GUI messagesPhil Davis2016-06-301-16/+7
| | | | | | | | | | | At present, when doing a System Update, there is a message box that says: "Please wait while the installation of completes. This may take several minutes." Between "of" and "completes" is the package name, which is blank in the case of a System Update. This should fix that issue by defining $pkg_wait_txt appropriately for the $firmwareupdate case. Note: It was also easy to refactor out a couple of special "if firmwareupdate" tests, as the code "fell out" nicely by defining the other *_txt variables to suitable strings for the $firmwareupdate case.
* 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().
* Comment typoStephen Beaver2016-06-231-1/+1
|
* Restored countdown functionality and menu refresh on successful ↵Stephen Beaver2016-06-231-5/+23
| | | | | | update/remove/install Added comments to clarify operation of the page
* Rework pkg_mgr_install.php:Renato Botelho2016-06-081-59/+61
| | | | | | | | | | | | | | | - Stop using id parameter for additional packages, keep using it only for firmware upgrades - Created to control variables $completed and $confirmed to check all the stages and make it easy to understand what is happening - Stop using $pkgid and use $pkgname instead - Set $pkgname early and validate the port name - Use $firmwareupdate everywhere to check if it's a firmware upgrade - Add hidden input called confirmed to control when user has confirmed installation / upgrade / removal - Add specific messages for reinstall all - Remove an extra form submit and just changes progress bar and informative panel when json process finished successfully
* Fix variable name s/POST/_POST/ and also parameter name s/complete/completed/Renato Botelho2016-06-081-1/+1
|
* Fix indentRenato Botelho2016-06-081-35/+35
|
* Improve readabilityRenato Botelho2016-06-081-31/+39
|
* Improve readabilityRenato Botelho2016-06-081-3/+4
|
* Simplify mode parameter validationRenato Botelho2016-06-081-16/+13
|
* Remove redundant check since pkgcancel is never setRenato Botelho2016-06-081-5/+0
|
* Validate mode parameter and use sanitized variable on other placesRenato Botelho2016-06-081-19/+35
|
* Workaound fixes #6320Stephen Beaver2016-05-071-1/+1
|
* Remove stray colonNewEraCracker2016-05-011-1/+1
|
* Comment typos in pkg_mgr_install.phpPhil Davis2016-04-291-4/+4
|
* Retrieve firmware versions via Ajax so we don't hang the GUI if unable to ↵Stephen Beaver2016-04-281-26/+67
| | | | reach the server
* Miscellaneous II - Remove PersonalizationsNOYB2016-04-091-6/+6
| | | | Remove "you" personalizations.
* Fix button icons in the package manager. Ticket #5965jim-p2016-03-101-2/+8
|
* Fix mistyped wordk-paulius2016-02-161-2/+2
|
* Use p instead of br for better styling support.k-paulius2016-02-161-4/+4
|
* This wording is also shown during system upgrade, so update it to be more ↵k-paulius2016-02-161-2/+2
| | | | accurate.
* No need for this message to be in bold.k-paulius2016-02-161-1/+1
|
* Move action alert box to the top of the page, just like on all other pages.k-paulius2016-02-161-5/+8
|
* Review alert wording. End sentence with periodk-paulius2016-02-161-6/+6
|
* Remove breaks and use content class to provide proper styling.k-paulius2016-02-161-2/+2
|
* Change wording from stating what is going to happen to asking user if they ↵k-paulius2016-02-161-1/+1
| | | | want it to happen.
* Change wording from stating what is going to happen to asking user if they ↵k-paulius2016-02-161-6/+6
| | | | want it to happen.
* Merge pull request #2637 from k-paulius/patch-6Stephen Beaver2016-02-141-24/+2
|\
| * Make 'Installed Packages' first tab, because it is the active tab by default.k-paulius2016-02-141-1/+1
| |
| * Remove "headline" from the breadcrumb. It serves no real purpose, since the ↵k-paulius2016-02-141-23/+1
| | | | | | | | action that is being performed is already shown in the panel title + no other page shows action in the breadcrumb.
OpenPOWER on IntegriCloud