Skip to content

Commit 866db16

Browse files
authored
Merge branch 'develop' into RDKBACCL-1223_500_error
2 parents 8a8c6b3 + dbfea06 commit 866db16

File tree

6 files changed

+48
-15
lines changed

6 files changed

+48
-15
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,28 @@ All notable changes to this project will be documented in this file. Dates are d
44

55
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
66

7+
#### [2.0.0](https://github.com/rdkcentral/webui/compare/1.4.1...2.0.0)
8+
9+
- RDKB-62411:Alert message for Invalid password login is not coming as expectedcheck.jst [`#87`](https://github.com/rdkcentral/webui/pull/87)
10+
- Merge tag '1.4.1' into develop [`4cff486`](https://github.com/rdkcentral/webui/commit/4cff486169ee202111aa8ca5575b8c454a035443)
11+
12+
#### [1.4.1](https://github.com/rdkcentral/webui/compare/1.4.0...1.4.1)
13+
14+
> 17 December 2025
15+
16+
- RDKB-62740: Disable 320MHz for 11ax mode ion 6GHz [`#83`](https://github.com/rdkcentral/webui/pull/83)
17+
- RDKBDEV-3296: Xfinity Connection status page returns error 404 Not Found [`#49`](https://github.com/rdkcentral/webui/pull/49)
18+
- RDKB-62532: Removing 400ns Guard Interval for 11ax/be for WiFi standards [`#77`](https://github.com/rdkcentral/webui/pull/77)
19+
- Add changelog for release 1.4.1 [`c4ef018`](https://github.com/rdkcentral/webui/commit/c4ef0187a50539ae1fdd2af01856e2030f85aa3b)
20+
- Merge tag '1.4.0' into develop [`b6ddf1f`](https://github.com/rdkcentral/webui/commit/b6ddf1f3ffef809004a5cd547da37452c1c8209c)
21+
722
#### [1.4.0](https://github.com/rdkcentral/webui/compare/1.3.0...1.4.0)
823

24+
> 4 December 2025
25+
926
- RDKB-61349: [SECVULN] Issuer and audience validation missing [`#65`](https://github.com/rdkcentral/webui/pull/65)
1027
- XER10-1896: Adding regex to validate client hostname [`#76`](https://github.com/rdkcentral/webui/pull/76)
28+
- Add changelog for release 1.4.0 [`cc2ec44`](https://github.com/rdkcentral/webui/commit/cc2ec44093988f46df5ffc8f23c5d65891d489e0)
1129
- Merge tag '1.3.0' into develop [`1547fb9`](https://github.com/rdkcentral/webui/commit/1547fb9941bcb1c50feb2cb83a36afa0c47eda8f)
1230

1331
#### [1.3.0](https://github.com/rdkcentral/webui/compare/1.2.1...1.3.0)

source/Styles/xb3/jst/check.jst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -360,7 +360,12 @@ else
360360
}
361361
if($flag==0){
362362
// session_destroy();
363+
$partnersId = getStr("Device.DeviceInfo.X_RDKCENTRAL-COM_Syndication.PartnerId");
364+
if (strpos($partnersId, "sky-") !== false) {
365+
sendError( '<script type="text/javascript"> alert($.i18n("Username or password is incorrect!"));history.back(); </script>');
366+
} else {
363367
sendError( '<script type="text/javascript"> alert($.i18n("Authentication failed. The default password is printed on the bottom or back of your router - use this if you haven’t already changed it."));history.back(); </script>');
368+
}
364369
}
365370
}
366371
else

source/Styles/xb3/jst/connection_status.jst

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -419,8 +419,10 @@ if(($allowEthWan=="true") || ($autoWanEnable=="true")) {
419419
echo('<span class="value" id="actethwan">Active Ethernet WAN');
420420
}else if(strtolower($selectedOperationalMode)=="docsis"){
421421
echo('<span class="value" id="actdocwan">Active Docsis WAN');
422-
}else{
422+
}else if($selectedOperationalMode == "auto"){
423423
echo('<span class="value" id="actautwan">Active Auto WAN');
424+
}else{
425+
echo('<span class="value" id="unknown">Unknown WAN');
424426
}
425427
}else{
426428
$wan_enable= getStr("Device.Ethernet.X_RDKCENTRAL-COM_WAN.Enabled");

source/Styles/xb3/jst/includes/utility.jst

Lines changed: 12 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1237,20 +1237,18 @@ function current_operationalMode()
12371237
$selectedOperationalMode=getStr("Device.X_RDKCENTRAL-COM_EthernetWAN.SelectedOperationalMode");
12381238
}
12391239
else{
1240-
if(is_docsis_supported()) {
1241-
$docsisEnable =getStr("Device.X_RDK_WanManager.Interface.1.Selection.Enable");
1242-
$ethernetEnable =getStr("Device.X_RDK_WanManager.Interface.2.Selection.Enable");
1243-
} else {
1244-
$ethernetEnable = getStr("Device.X_RDK_WanManager.Interface.1.Selection.Enable");
1245-
$docsisEnable = "false";
1246-
}
1247-
1248-
if(($ethernetEnable=="true") && ($docsisEnable=="false")){
1249-
$selectedOperationalMode="Ethernet";
1250-
}else if(($ethernetEnable=="false") && ($docsisEnable=="true")){
1251-
$selectedOperationalMode="DOCSIS";
1252-
}else if(($ethernetEnable=="true") && ($docsisEnable=="true")){
1253-
$selectedOperationalMode="Auto";
1240+
$selectedOperationalMode = getStr("Device.X_RDK_WanManager.InterfaceAvailableStatus");
1241+
if ($selectedOperationalMode == "") {
1242+
$selectedOperationalMode = "unknown";
1243+
}
1244+
else if ($selectedOperationalMode.includes("|")) {
1245+
//If more than a single WAN is configured
1246+
$selectedOperationalMode = "auto";
1247+
}
1248+
else {
1249+
// Split the string by comma and extract the first part
1250+
$parts = $selectedOperationalMode.split(",");
1251+
$selectedOperationalMode = $parts[0];
12541252
}
12551253
}
12561254
return $selectedOperationalMode;

source/Styles/xb6/jst/actionHandler/ajaxSet_wireless_network_configuration_onewifi.jst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -208,6 +208,9 @@ else
208208
if (("2" != $i) && ("20MHz" != $arConfig['channel_bandwidth'])){
209209
setStr("Device.WiFi.Radio."+$r+".ExtensionChannel", $arConfig['ext_channel'], false);
210210
}
211+
if (("400nsec" == $arConfig['guard_interval']) && isValInArray($arConfig['wireless_mode'], ["g,n,ax,be", "g,n,ax", "a,n,ac,ax,be", "a,n,ac,ax"])) {
212+
setStr("Device.WiFi.Radio."+$r+".GuardInterval", "Auto", false);
213+
}
211214
//apply once
212215
// setStr("Device.WiFi.Radio."+$r+".X_CISCO_COM_ApplySetting", "true", true);
213216
setStr("Device.WiFi.ApplyRadioSettings", "true", true);

source/Styles/xb6/jst/wireless_network_configuration_onewifi.jst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -808,6 +808,13 @@ $(document).ready(function() {
808808
$("#operation_mode1").prop("disabled", true);
809809
}
810810
}).trigger("change");
811+
$("#wireless_mode3").change(function() {
812+
if ("ax"==$("#wireless_mode3").val()) {
813+
$("#channel_bandwidth7").prop("disabled", true);
814+
} else if("ax,be"==$("#wireless_mode3").val() || "be"==$("#wireless_mode3").val()) {
815+
$("#channel_bandwidth7").prop("disabled", false);
816+
}
817+
}).trigger("change");
811818
$("#channel_number").change(function() {
812819
show_extch(document.getElementById("channel_number").value);
813820
}).trigger("change");

0 commit comments

Comments
 (0)