summaryrefslogtreecommitdiffstats
path: root/src/usr/local/www/status_dhcpv6_leases.php
Commit message (Collapse)AuthorAgeFilesLines
* GET/POST conversion for status*Steve Beaver2017-02-131-9/+9
|
* Better handle no dhcpv6 leases filePhil Davis2016-10-191-3/+10
|
* Move copyright from ESF to NetgateRenato Botelho2016-09-061-1/+1
|
* Display local DHCP lease times in 24-hour clockPhil Davis2016-07-261-1/+1
| | | | | | | | | It seems odd to me that when the times are displayed in UTC they have 24-hour clock, but when displayed in local time they are formatted with 12-our clock and AM/PM. 24-hour format takes less screen space, and I would have thought that network admins would prefer working consistently in 24-hour clock format.
* Fix redmine #6640 DHCPv6 server time formatPhil Davis2016-07-261-9/+6
| | | | | | | The original code here ended up always applying the time zone offset once, and if you had set dhcpv6leaseinlocaltime then it got applied twice, so Sydney at UTC+10:00 would show UTC+20:00 and presumably somewhere at UTC-04:00 would show UTC-08:00 This change makes the code use the same logic as the V4 status_dhcp_leases.php - which works and is simpler. Note: both the V4 and V6 code format the output, when using local time, as 12-our clock with AM/PM. That seems a bit odd, but I will leave it for now. I will make a separate pull request to change it to 24-hour clock (like is displayed in V4 leases in UTC)
* Move to Apache License 2.0Renato Botelho2016-07-151-41/+9
|
* Review license / copyright on all files (final round)Renato Botelho2016-07-151-44/+43
|
* Improve patterns to read dhcpd6.leases to prevent leases containing '}' in ↵Renato Botelho2016-07-081-5/+14
| | | | ia-na line not showing up. It fixes #6543
* 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().
* (status > DHCPv6 Leases) make tables responsiveJared Dillard2016-03-291-3/+3
|
* Bring some consistency to the way most buttons are displayed (color, icons, ↵jim-p2016-03-091-2/+2
| | | | | | etc). Ticket #5965 Still need to review Advanced buttons and Repeatable block buttons.
* Correct some icon usage inconsistencies. Fixes #5965jim-p2016-03-081-1/+4
|
* Update status_dhcpv6_leases.phpAnders Lind2016-03-021-3/+7
| | | | | Fix lacking of incrementation of index when two characters have been passed. Fix check of $n so that the octal value is checked as an octal value.
* Missed to fix all $mappingsAnders Lind2016-03-011-1/+1
|
* Fix indexing of $mappings and fix column headersAnders Lind2016-03-011-2/+3
| | | | | Remove "$entry['iaid'] . " from $mappings[] since the IAID of the IA_NA != IAID of the IA_PD, please see note in https://redmine.pfsense.org/issues/4206#note-9 Add table header for the icon in the Delegated Prefixes section to fix alignment of the column headers.
* 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.
* Use print_info_box() to generate alertsk-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.
* Use print_info_box() to generate alertsk-paulius2016-02-141-1/+1
|
* Synchronize page titles with tab titles. Rename some titles in order to be ↵k-paulius2016-02-131-1/+1
| | | | more consistent. Convert page title to title case.
* Merge pull request #2618 from k-paulius/patch-2Stephen Beaver2016-02-111-1/+1
|\
| * Fix typo. a tag is opened twice.k-paulius2016-02-101-1/+1
| |
* | Convert section titles to title casek-paulius2016-02-101-1/+1
|/
* HTML Compliance - Status / DHCPv6 leasesNOYB2016-02-021-2/+2
| | | | | Stray end tag tr. Move stray tr end tags inside foreach loops.
* Internationalize DHCPv6 lease status wordsPhil Davis2016-01-271-28/+38
|
* UI ConsistencyPhil Davis2016-01-141-0/+1
| | | | | | | | | 1) Put the heading "Actions" at the top of all the "Actions" columns - it was on some and not others. 2) Some more consistent capitalization of panel titles etc. 3) Most interfaces section edit pages had a section titled like "GIF Configuration", "GRE Configuration". Make them all consistent, e.g. "QinQ Configuration" rather than "Interface QinQ Edit"...
* status_dhcp6_leases incorrect comparison operatorPhil Davis2016-01-121-3/+3
| | | | | | | | rather than assignment. Also $dhcpv6leaseinlocaltime was also being re-used as the value part of the foreach - that looks not so good also. Even so, I think the old code would have worked by good luck - in the end $dhcpv6leaseinlocaltime is only compared to "yes" anyway, so if it ended up as unset, or some part of a sub-array of $config['dhcpdv6'] or... it still functioned like "no". I found this by a quick scan through the output of: find /usr -type f -exec grep -H "^[^(]*==" {} \; That returns a lot of other stuff, but the bad uses of "==" stand out.
* Convert this endif's missed by last commitNewEraCracker2016-01-071-1/+1
|
* Convert short open tags to full tagsNewEraCracker2016-01-071-17/+17
| | | | | | Short open tag is discouraged since it is only available if enabled See https://secure.php.net/manual/en/language.basic-syntax.phptags.php
* Remove all pfSense_MODULE and pfSense_BUILDER_BINARIES definitions, whatever ↵Renato Botelho2015-12-151-5/+0
| | | | was the reason they were added, it was never finished and it's not being used
* Code style status*Phil Davis2015-12-151-17/+24
|
* 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.
* Ticket #5471 another convert batch to font-awesome iconsJared Dillard2015-11-181-8/+8
|
* Completes #5400, #3999, #5405Stephen Beaver2015-11-101-3/+3
| | | | Mote: New ticket will be opened to provide IP address sorting
* Copyright and license cleanupRenato Botelho2015-11-091-3/+3
| | | | | | - Remove personal copyright from people who assigned it to employer (ESF) - Remove $Id$ - Remove extra spaces
* EOL whitespace and header consistency for wwwPhil Davis2015-11-091-1/+0
|
* Copyright updates Batch 2 of 3Stephen Beaver2015-11-061-0/+3
|
* Delete confirmation vi fa-trash automated via pfSense.jsStephen Beaver2015-11-051-34/+54
|
* convert status_dhcpv6_leases to faheper2015-11-041-10/+4
|
* Merge branch 'master' into bootstrapRenato Botelho2015-08-261-182/+196
|
* Move main pfSense content to src/Renato Botelho2015-08-251-0/+581
OpenPOWER on IntegriCloud