Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions core/src/main/resources/hudson/Messages_de.properties
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ PluginWrapper.PluginWrapperAdministrativeMonitor.DisplayName=Plugin-Ladefehler

ProxyConfiguration.FailedToConnectViaProxy=Konnte nicht mit {0} verbinden.
ProxyConfiguration.FailedToConnect=Konnte nicht mit {0} verbinden (code {1}).
ProxyConfiguration.NonTLSWarning=Jenkins unterstützt nur die Verwendung einer HTTP-Verbindung zum Proxy. Die Zugangsdaten könnten für andere im selben Netzwerk sichtbar sein.
ProxyConfiguration.MalformedTestUrl=Format der Test-URL ungültig
ProxyConfiguration.Success=Erfolg (code {0})
ProxyConfiguration.TestUrlRequired=Test-URL muss angegeben werden.
Expand Down
32 changes: 0 additions & 32 deletions core/src/main/resources/hudson/ProxyConfiguration/config.groovy

This file was deleted.

48 changes: 48 additions & 0 deletions core/src/main/resources/hudson/ProxyConfiguration/config.jelly
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
<!--
The MIT License
Copyright (c) 2025, Stefan Spieker
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
-->

<?jelly escape-by-default='true'?>
<j:jelly xmlns:j="jelly:core" xmlns:f="/lib/form" xmlns:l="/lib/layout">
<j:set var="readOnlyMode" value="${!app.hasPermission(app.ADMINISTER)}"/>
<f:entry title="${%Server}">
<f:textbox field="name"/>
</f:entry>
<f:entry title="${%Port}">
<f:number field="port" min="0" max="65535" step="1"/>
</f:entry>
<f:entry title="${%User name}">
<f:textbox field="userName"/>
</f:entry>
<f:entry title="${%Password}">
<f:password field="secretPassword"/>
</f:entry>
<f:entry title="${%No Proxy Host}">
<f:textarea field="noProxyHost"/>
</f:entry>

<l:isAdmin>
<f:advanced>
<f:entry title="${%Test URL}">
<f:textbox field="testUrl"/>
</f:entry>
<f:validateButton title="${%Validate Proxy}" method="validateProxy" with="testUrl,name,port,userName,secretPassword,noProxyHost"/>
</f:advanced>
</l:isAdmin>
</j:jelly>
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,6 @@ Server=Server
Port=Port
User\ name=Benutzername
Password=Passwort
Test\ URL=Test-URL
No\ Proxy\ Host=Proxy-Ausnahmen
Validate\ Proxy=Proxy-Konfiguration prüfen
Loading