[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]

[tor-commits] [Git][tpo/applications/tor-browser][tor-browser-128.1.0esr-14.0-1] 2 commits: fixup! Bug 31286: Implementation of bridge, proxy, and firewall settings in...



Title: GitLab

Pier Angelo Vendrame pushed to branch tor-browser-128.1.0esr-14.0-1 at The Tor Project / Applications / Tor Browser

Commits:

  • f6fd10b0
    by Henry Wilkes at 2024-08-07T13:54:06+01:00
    fixup! Bug 31286: Implementation of bridge, proxy, and firewall settings in about:preferences#connection
    
    Bug 42662: Revert changes to main.inc.xhtml and main.js that remove the
    firefox connection settings.
    
  • 9a85d775
    by Henry Wilkes at 2024-08-07T13:59:40+01:00
    fixup! Bug 31286: Implementation of bridge, proxy, and firewall settings in about:preferences#connection
    
    Bug 42662: Use data-hidden-from-search to hide the firefox network
    settings.
    

2 changed files:

Changes:

  • browser/components/preferences/main.inc.xhtml
    ... ... @@ -797,4 +797,54 @@
    797 797
         />
    
    798 798
       </hbox>
    
    799 799
     </groupbox>
    
    800
    +
    
    801
    +<hbox id="networkProxyCategory"
    
    802
    +      class="subcategory"
    
    803
    +      hidden="true"
    
    804
    +      data-hidden-from-search="true"
    
    805
    +      data-category="paneGeneral">
    
    806
    +  <html:h1 data-l10n-id="network-settings-title"/>
    
    807
    +</hbox>
    
    808
    +
    
    809
    +<!-- Network Settings-->
    
    810
    +<groupbox id="connectionGroup" data-category="paneGeneral" data-hidden-from-search="true" hidden="true">
    
    811
    +  <label class="search-header" hidden="true"><html:h2 data-l10n-id="network-settings-title"/></label>
    
    812
    +
    
    813
    +  <hbox align="center"
    
    814
    +      data-subcategory="netsettings">
    
    815
    +    <description flex="1" control="connectionSettings">
    
    816
    +      <html:span id="connectionSettingsDescription"/>
    
    817
    +      <html:a is="moz-support-link"
    
    818
    +            data-l10n-id="network-proxy-connection-learn-more"
    
    819
    +            support-page="prefs-connection-settings"
    
    820
    +      />
    
    821
    +    </description>
    
    822
    +    <separator orient="vertical"/>
    
    823
    +    <button id="connectionSettings"
    
    824
    +            is="highlightable-button"
    
    825
    +            class="accessory-button"
    
    826
    +            data-l10n-id="network-proxy-connection-settings"
    
    827
    +            search-l10n-ids="
    
    828
    +              connection-window2.title,
    
    829
    +              connection-proxy-option-no.label,
    
    830
    +              connection-proxy-option-auto.label,
    
    831
    +              connection-proxy-option-system.label,
    
    832
    +              connection-proxy-option-wpad.label,
    
    833
    +              connection-proxy-option-manual.label,
    
    834
    +              connection-proxy-http,
    
    835
    +              connection-proxy-https,
    
    836
    +              connection-proxy-http-port,
    
    837
    +              connection-proxy-socks,
    
    838
    +              connection-proxy-socks4,
    
    839
    +              connection-proxy-socks5,
    
    840
    +              connection-proxy-noproxy,
    
    841
    +              connection-proxy-noproxy-desc,
    
    842
    +              connection-proxy-https-sharing.label,
    
    843
    +              connection-proxy-autotype.label,
    
    844
    +              connection-proxy-reload.label,
    
    845
    +              connection-proxy-autologin-checkbox.label,
    
    846
    +              connection-proxy-socks-remote-dns.label,
    
    847
    +          " />
    
    848
    +  </hbox>
    
    849
    +</groupbox>
    
    800 850
     </html:template>

  • browser/components/preferences/main.js
    ... ... @@ -313,6 +313,8 @@ var gMainPane = {
    313 313
         });
    
    314 314
         this.updatePerformanceSettingsBox({ duringChangeEvent: false });
    
    315 315
         this.displayUseSystemLocale();
    
    316
    +    this.updateProxySettingsUI();
    
    317
    +    initializeProxyUI(gMainPane);
    
    316 318
     
    
    317 319
         if (Services.prefs.getBoolPref("intl.multilingual.enabled")) {
    
    318 320
           gMainPane.initPrimaryBrowserLanguageUI();
    
    ... ... @@ -515,6 +517,11 @@ var gMainPane = {
    515 517
           "change",
    
    516 518
           gMainPane.updateHardwareAcceleration.bind(gMainPane)
    
    517 519
         );
    
    520
    +    setEventListener(
    
    521
    +      "connectionSettings",
    
    522
    +      "command",
    
    523
    +      gMainPane.showConnections
    
    524
    +    );
    
    518 525
         setEventListener(
    
    519 526
           "browserContainersCheckbox",
    
    520 527
           "command",
    

  • _______________________________________________
    tor-commits mailing list
    tor-commits@xxxxxxxxxxxxxxxxxxxx
    https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits