-
Task
-
Resolution: Fixed
-
Minor
-
Powered by SuggestiMate
User of jenkins for 2 years now. Our company uses it very extensively and it servers our purposes very well.
However, I can't help but cringe every time someone refers to a node as a slave. I understand the computer science nature of these terms but I deeply desire to see this kind of language removed from our field of work.
(screens attached)
Thank you for all your hard work to make this great product, how about we make sure it's more acceptable to a wider audience!
- is duplicated by
-
JENKINS-29522 Rename master/slave to manager/worker
-
- Closed
-
- is related to
-
JENKINS-31095 2.0: Jenkins terminology sweep
-
- Open
-
-
JENKINS-35449 Review and document all remaining uses of the term "slave" in core
-
- Open
-
-
JENKINS-35448 File issues against plugins in jenkinsci github org that use the term "slave" for agents
-
- Open
-
- links to
[JENKINS-27268] "dumb" slave?
Due to Jenkins' extensive plugin API and the desire to keep backwards compatibility, we'd need to keep existing internal class names, and those use Master/Slave. If anything were done here it would be UI only.
AbstractCloudSlave
ClassLoaderStatisticsSlaveInfo
CloudSlaveRetentionStrategy
DefaultJnlpSlaveReceiver
DumbSlave
DumbSlave.DescriptorImpl
EncryptedSlaveAgentJnlpFile
EnvVarsSlaveInfo
Hudson.MasterComputer
Jenkins.MasterComputer
Jenkins.MasterRestartNotifyier
JnlpSlaveAgentProtocol
JnlpSlaveAgentProtocol.Handler
JnlpSlaveAgentProtocol2
JnlpSlaveAgentProtocol2.Handler2
JnlpSlaveHandshake
JnlpSlaveRestarterInstaller
MasterBuildConfiguration
MasterKillSwitchConfiguration
MasterKillSwitchWarning
MasterToSlaveCallable
MasterToSlaveFileCallable
OnMaster
PretendSlave
PretendSlave.DescriptorImpl
Slave
Slave.JnlpJar
Slave.SlaveDescriptor
SlaveComputer
SlaveRestarter
SlaveSystemInfo
SlaveToMasterCallable
SlaveToMasterFileCallable
SystemPropertySlaveInfo
TcpSlaveAgentListener
TcpSlaveAgentListener.ConnectionFromCurrentPeer
ThreadDumpSlaveInfo
UnixSlaveRestarter
WinswSlaveRestarter
This also means that any changes to terminology are less likely due to the additional confusion caused for the hundreds of developers of plugins when e.g. "Worker Nodes" on the UI don't use the same name internally.
Indeed, internal classes are altogether another story, but even just changing occurrences of "dumb slave" would make for a great start.
Yeah, I know from the linked thread.
I put this issue on the agenda of the governance meeting next week:
kohsuke didn't show up to the meeting, so this got postponed to April 1.
We discussed this issue in the governance meeting yesterday.
http://meetings.jenkins-ci.org/jenkins/2015/jenkins.2015-04-01-18.02.log.html starting at around 18:29 until 18:55.
VERY much appreciate the transparency of process here.
It sounds like some of you genuinely care that this language is highly offensive outside of this tech bubble we're in, but the sad reality is redit/hn flame-throwing tends to be the biggest motivation for making these kind of changes and saving face.
As for next steps, what I've gathered from the meeting is SUBJ terminology will likely be addressed. That's good, but satisfactory would be a change in terminology similar to Django. However, the idea of making that kind of change sounded unfavorable in the meeting logs, so can you clarify exactly what changes will and will not be made regarding this issue?
Thanks!
I also wanted to give kudos for having the transcript of the meeting publicly available. I've never seen such a successful job of a meeting being run over IRC!
It was unclear to me what the outcome of the meeting was, but it seemed to be that no action would be taken with respect to renaming 'master' and 'slave'. I have a few thoughts that I'm hoping can sway the outcome otherwise:
- While many people might recognize 'master'/'slave' as longstanding (if unfortunate) technical terminology and accept it without qualms, there are definitely people who will be affected by the ugly history behind those words and will be put off the Jenkins project as a result. I think it's worthwhile to make an effort to accomodate those people, and thus not only grow the Jenkins userbase but also send a message to the public that Jenkins is a project that aims to accomodate a wide range of users.
- Changing the UI, while leaving the internal names alone, would give 90+% of the benefit for <10% of the cost. I think this would make a great first step.
- I think you could rename the internal names while keeping backwards compatibility for all plugins via an empy subclass, like so (psuedocode):
class WorkerFoo() { <all the code that used to be for SlaveFoo> }; class SlaveFoo(subclass WorkerFoo) { // Deprecated; use WorkerFoo for all new code };
You could even add deprecation-warning log messages in the SlaveFoo constructor, to encourage plugin authors to rename the class for their next upgrade. (Or add deprecation warnings sometime in the future.)
- As a bit of background for those who may not be tuned into some of the language sensitivies here: 'slave' is an objectionable term no matter what, and renaming 'slave' to something else would be a necessary part of this process. Renaming 'master' is a more subtle issue. Basically, 'master' by itself does not necessarily have bad associations, but the more you see 'master' paired with another anthropocentric word, the worse its associations get. So 'master/slave' is really bad, 'master/worker' is borderline, 'master/agent' would be ok to most people I'm guessing, and 'master/subprocess' or some such would be unobjectionable. (Just in case renaming 'slave' turns out to be a lot easier than renaming both 'slave' and 'master'.)
We will do the rename. It'll likely be limited to the UI. Basically, we're doing what Kohsuke says.
You could even add deprecation-warning log messages in the SlaveFoo constructor
Annoying users who can do nothing to get rid of the warning isn't something we're likely to do. We had that with the pointless stapler-class deprecation warnings for a few dozen versions and it was incredibly annoying.
Kubernetes uses master/minion. I'd be surprised if Google established naming that's objectionable in the US. Does that mean that average users are less sensitive than indicated by csilvers?
master/minion is kinda cute. "Minion" is an anthropocentric word in that it's used to describe a type or role of a person, but it's not really a serious one (that is, one that people use non-ironically). So that pairing has a kind of fairy-tale association, rather than a real-world association, which makes it more palatable.
Of course, these days master/minion would make one think of http://www.minionsmovie.com/minions.html
Any chance this could be broken down into what the action items are? I'd be interested in picking up a task or two and putting in a PR if that helps! I'm sure I could get a few others to help out too and make this an easier transition.
Thanks for bringing this up and discussing it. It's important and I'm glad action is being taken!
This is currently scheduled for the 2.0 release next year as part of the more general terminology cleanup JENKINS-21095. It's just nicer that way with the required coordinated doc changes etc.
Learn more: https://wiki.jenkins-ci.org/display/JENKINS/Jenkins+2.0
Taking it.
I'll send a PR with the renaming proposal so we can discuss on it.
For reference, the PR being reviewed: https://github.com/jenkinsci/jenkins/pull/2007
I like the "agent" terminology (as I wrote on GitHub), and it's also what a number of other CI servers seem to use.
Microsoft Team Foundation Server supposedly uses (or used to?) controller/agent — I think "controller" or "manager" would be a reasonable replacement, if we wanted to also replace "master".
Code changed in jenkins
User: Antonio Muñiz
Path:
core/src/main/resources/hudson/PluginManager/_api.jelly
core/src/main/resources/hudson/lifecycle/Messages.properties
core/src/main/resources/hudson/model/AbstractItem/noWorkspace.jelly
core/src/main/resources/hudson/model/Computer/_script.jelly
core/src/main/resources/hudson/model/Computer/custom-jnlp.jelly
core/src/main/resources/hudson/model/Computer/delete.jelly
core/src/main/resources/hudson/model/Computer/sidepanel.jelly
core/src/main/resources/hudson/model/Job/buildTimeTrend.jelly
core/src/main/resources/hudson/model/Job/buildTimeTrend_da.properties
core/src/main/resources/hudson/model/Job/buildTimeTrend_de.properties
core/src/main/resources/hudson/model/Job/buildTimeTrend_es.properties
core/src/main/resources/hudson/model/Job/buildTimeTrend_fr.properties
core/src/main/resources/hudson/model/Job/buildTimeTrend_hu.properties
core/src/main/resources/hudson/model/Job/buildTimeTrend_ja.properties
core/src/main/resources/hudson/model/Job/buildTimeTrend_ko.properties
core/src/main/resources/hudson/model/Job/buildTimeTrend_lv.properties
core/src/main/resources/hudson/model/Job/buildTimeTrend_nl.properties
core/src/main/resources/hudson/model/Job/buildTimeTrend_pt_BR.properties
core/src/main/resources/hudson/model/Job/buildTimeTrend_ru.properties
core/src/main/resources/hudson/model/Job/buildTimeTrend_sk.properties
core/src/main/resources/hudson/model/Job/buildTimeTrend_sv_SE.properties
core/src/main/resources/hudson/model/Job/buildTimeTrend_tr.properties
core/src/main/resources/hudson/model/Job/buildTimeTrend_uk.properties
core/src/main/resources/hudson/model/Job/buildTimeTrend_zh_TW.properties
core/src/main/resources/hudson/model/LoadStatistics/main.properties
core/src/main/resources/hudson/model/Messages.properties
core/src/main/resources/hudson/model/Slave/help-launcher.jelly
core/src/main/resources/hudson/model/Slave/help-launcher_da.properties
core/src/main/resources/hudson/model/Slave/help-launcher_de.properties
core/src/main/resources/hudson/model/Slave/help-launcher_es.properties
core/src/main/resources/hudson/model/Slave/help-launcher_fr.properties
core/src/main/resources/hudson/model/Slave/help-launcher_ja.properties
core/src/main/resources/hudson/model/Slave/help-launcher_pt_BR.properties
core/src/main/resources/hudson/model/Slave/help-launcher_tr.properties
core/src/main/resources/hudson/model/Slave/help-launcher_zh_TW.properties
core/src/main/resources/hudson/node_monitors/MonitorMarkedNodeOffline/message.properties
core/src/main/resources/hudson/slaves/CommandLauncher/help.properties
core/src/main/resources/hudson/slaves/ComputerLauncher/main.jelly
core/src/main/resources/hudson/slaves/ComputerLauncher/main_bg.properties
core/src/main/resources/hudson/slaves/ComputerLauncher/main_da.properties
core/src/main/resources/hudson/slaves/ComputerLauncher/main_de.properties
core/src/main/resources/hudson/slaves/ComputerLauncher/main_es.properties
core/src/main/resources/hudson/slaves/ComputerLauncher/main_fr.properties
core/src/main/resources/hudson/slaves/ComputerLauncher/main_ja.properties
core/src/main/resources/hudson/slaves/ComputerLauncher/main_pt_BR.properties
core/src/main/resources/hudson/slaves/ComputerLauncher/main_ru.properties
core/src/main/resources/hudson/slaves/ComputerLauncher/main_sv_SE.properties
core/src/main/resources/hudson/slaves/ComputerLauncher/main_zh_TW.properties
core/src/main/resources/hudson/slaves/DumbSlave/newInstanceDetail.properties
core/src/main/resources/hudson/slaves/JNLPLauncher/help.properties
core/src/main/resources/hudson/slaves/JNLPLauncher/main.jelly
core/src/main/resources/hudson/slaves/JNLPLauncher/main_da.properties
core/src/main/resources/hudson/slaves/JNLPLauncher/main_de.properties
core/src/main/resources/hudson/slaves/JNLPLauncher/main_es.properties
core/src/main/resources/hudson/slaves/JNLPLauncher/main_fr.properties
core/src/main/resources/hudson/slaves/JNLPLauncher/main_ja.properties
core/src/main/resources/hudson/slaves/JNLPLauncher/main_pt_BR.properties
core/src/main/resources/hudson/slaves/JNLPLauncher/main_ru.properties
core/src/main/resources/hudson/slaves/JNLPLauncher/main_zh_TW.properties
core/src/main/resources/hudson/slaves/Messages.properties
core/src/main/resources/hudson/slaves/SlaveComputer/already-launched.jelly
core/src/main/resources/hudson/slaves/SlaveComputer/slave-agent.jnlp.jelly
core/src/main/resources/hudson/slaves/SlaveComputer/systemInfo.jelly
core/src/main/resources/hudson/slaves/SlaveComputer/systemInfo_ja.properties
core/src/main/resources/hudson/slaves/SlaveComputer/systemInfo_pt_BR.properties
core/src/main/resources/hudson/tools/Messages.properties
core/src/main/resources/jenkins/model/CoreEnvironmentContributor/buildEnv.properties
core/src/main/resources/jenkins/model/Jenkins/configureExecutors.jelly
core/src/main/resources/jenkins/model/Jenkins/systemInfo.properties
core/src/main/resources/jenkins/security/s2m/AdminCallableMonitor/message.properties
core/src/main/resources/jenkins/security/s2m/AdminWhitelistRule/index.jelly
core/src/main/resources/jenkins/security/s2m/AdminWhitelistRule/index_ja.properties
core/src/main/resources/jenkins/security/s2m/AdminWhitelistRule/index_pt_BR.properties
core/src/main/resources/jenkins/security/s2m/MasterKillSwitchWarning/message.properties
core/src/main/resources/lib/form/slave-mode.jelly
core/src/main/resources/lib/hudson/scriptConsole.jelly
http://jenkins-ci.org/commit/jenkins/262cd1fa46fa579dd627550d102500fec1b03da9
Log:
JENKINS-27268 Use agent instead of slave in UI labels
Code changed in jenkins
User: Antonio Muñiz
Path:
test/src/test/java/hudson/cli/CreateNodeCommandTest.java
test/src/test/java/hudson/cli/DeleteNodeCommandTest.java
test/src/test/java/hudson/cli/GetNodeCommandTest.java
test/src/test/java/hudson/cli/OnlineNodeCommandTest.java
test/src/test/java/hudson/cli/UpdateNodeCommandTest.java
test/src/test/java/hudson/model/ComputerTest.java
http://jenkins-ci.org/commit/jenkins/317d788eff4726dffd73b88caf12bd2295cc5951
Log:
JENKINS-27268 Fix tests after renaming
Code changed in jenkins
User: Antonio Muñiz
Path:
core/src/main/java/hudson/model/AbstractProject.java
http://jenkins-ci.org/commit/jenkins/ac0a4076bfad052a6ca177b1c2421a31cfd1ca03
Log:
Merge branch 'master' into JENKINS-27268
Conflicts:
core/src/main/java/hudson/model/AbstractProject.java
Code changed in jenkins
User: Antonio Muñiz
Path:
core/src/main/resources/hudson/TcpSlaveAgentListener/index.jelly
core/src/main/resources/hudson/lifecycle/Messages_da.properties
core/src/main/resources/hudson/lifecycle/Messages_de.properties
core/src/main/resources/hudson/lifecycle/Messages_pt_BR.properties
core/src/main/resources/hudson/lifecycle/Messages_zh_TW.properties
core/src/main/resources/hudson/model/AbstractBuild/index_pt_BR.properties
core/src/main/resources/hudson/model/AbstractItem/noWorkspace_da.properties
core/src/main/resources/hudson/model/AbstractItem/noWorkspace_de.properties
core/src/main/resources/hudson/model/AbstractItem/noWorkspace_es.properties
core/src/main/resources/hudson/model/AbstractItem/noWorkspace_fr.properties
core/src/main/resources/hudson/model/AbstractItem/noWorkspace_ja.properties
core/src/main/resources/hudson/model/AbstractItem/noWorkspace_nl.properties
core/src/main/resources/hudson/model/AbstractItem/noWorkspace_pt_BR.properties
core/src/main/resources/hudson/model/AbstractItem/noWorkspace_ru.properties
core/src/main/resources/hudson/model/AbstractItem/noWorkspace_tr.properties
core/src/main/resources/hudson/model/AbstractItem/noWorkspace_zh_TW.properties
core/src/main/resources/hudson/model/Computer/_script_da.properties
core/src/main/resources/hudson/model/Computer/_script_de.properties
core/src/main/resources/hudson/model/Computer/_script_es.properties
core/src/main/resources/hudson/model/Computer/_script_fr.properties
core/src/main/resources/hudson/model/Computer/_script_ja.properties
core/src/main/resources/hudson/model/Computer/_script_pt_BR.properties
core/src/main/resources/hudson/model/Computer/_script_ru.properties
core/src/main/resources/hudson/model/Computer/_script_sv_SE.properties
core/src/main/resources/hudson/model/Computer/_script_tr.properties
core/src/main/resources/hudson/model/Computer/_script_zh_TW.properties
core/src/main/resources/hudson/model/Computer/delete_da.properties
core/src/main/resources/hudson/model/Computer/delete_de.properties
core/src/main/resources/hudson/model/Computer/delete_es.properties
core/src/main/resources/hudson/model/Computer/delete_fr.properties
core/src/main/resources/hudson/model/Computer/delete_ja.properties
core/src/main/resources/hudson/model/Computer/delete_pt_BR.properties
core/src/main/resources/hudson/model/Computer/delete_ru.properties
core/src/main/resources/hudson/model/Computer/delete_zh_TW.properties
core/src/main/resources/hudson/model/Computer/sidepanel_bg.properties
core/src/main/resources/hudson/model/Computer/sidepanel_cs.properties
core/src/main/resources/hudson/model/Computer/sidepanel_da.properties
core/src/main/resources/hudson/model/Computer/sidepanel_de.properties
core/src/main/resources/hudson/model/Computer/sidepanel_eo.properties
core/src/main/resources/hudson/model/Computer/sidepanel_es.properties
core/src/main/resources/hudson/model/Computer/sidepanel_fi.properties
core/src/main/resources/hudson/model/Computer/sidepanel_fr.properties
core/src/main/resources/hudson/model/Computer/sidepanel_he.properties
core/src/main/resources/hudson/model/Computer/sidepanel_it.properties
core/src/main/resources/hudson/model/Computer/sidepanel_ja.properties
core/src/main/resources/hudson/model/Computer/sidepanel_ko.properties
core/src/main/resources/hudson/model/Computer/sidepanel_lt.properties
core/src/main/resources/hudson/model/Computer/sidepanel_lv.properties
core/src/main/resources/hudson/model/Computer/sidepanel_nb_NO.properties
core/src/main/resources/hudson/model/Computer/sidepanel_nl.properties
core/src/main/resources/hudson/model/Computer/sidepanel_pl.properties
core/src/main/resources/hudson/model/Computer/sidepanel_pt_BR.properties
core/src/main/resources/hudson/model/Computer/sidepanel_pt_PT.properties
core/src/main/resources/hudson/model/Computer/sidepanel_ru.properties
core/src/main/resources/hudson/model/Computer/sidepanel_sk.properties
core/src/main/resources/hudson/model/Computer/sidepanel_sv_SE.properties
core/src/main/resources/hudson/model/Computer/sidepanel_tr.properties
core/src/main/resources/hudson/model/Computer/sidepanel_uk.properties
core/src/main/resources/hudson/model/Computer/sidepanel_zh_CN.properties
core/src/main/resources/hudson/model/Computer/sidepanel_zh_TW.properties
core/src/main/resources/hudson/model/Messages_de.properties
core/src/main/resources/hudson/model/Messages_it.properties
core/src/main/resources/hudson/model/Messages_pt_BR.properties
core/src/main/resources/hudson/node_monitors/Messages_de.properties
core/src/main/resources/hudson/node_monitors/MonitorMarkedNodeOffline/message_pt_BR.properties
core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index.groovy
core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_da.properties
core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_de.properties
core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_es.properties
core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_fi.properties
core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_fr.properties
core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_hu.properties
core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_ja.properties
core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_nl.properties
core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_pt_BR.properties
core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_ru.properties
core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_tr.properties
core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_zh_CN.properties
core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_zh_TW.properties
core/src/main/resources/hudson/slaves/ComputerLauncher/main_da.properties
core/src/main/resources/hudson/slaves/ComputerLauncher/main_de.properties
core/src/main/resources/hudson/slaves/ComputerLauncher/main_ja.properties
core/src/main/resources/hudson/slaves/ComputerLauncher/main_pt_BR.properties
core/src/main/resources/hudson/slaves/ComputerLauncher/main_zh_TW.properties
core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_ru.properties
core/src/main/resources/hudson/slaves/JNLPLauncher/main.properties
core/src/main/resources/hudson/slaves/JNLPLauncher/main_da.properties
core/src/main/resources/hudson/slaves/JNLPLauncher/main_de.properties
core/src/main/resources/hudson/slaves/JNLPLauncher/main_fr.properties
core/src/main/resources/hudson/slaves/JNLPLauncher/main_ja.properties
core/src/main/resources/hudson/slaves/JNLPLauncher/main_ru.properties
core/src/main/resources/hudson/slaves/JNLPLauncher/main_zh_TW.properties
core/src/main/resources/hudson/slaves/Messages_de.properties
core/src/main/resources/hudson/slaves/Messages_pt_BR.properties
core/src/main/resources/hudson/slaves/SimpleScheduledRetentionStrategy/config_de.properties
core/src/main/resources/hudson/slaves/SlaveComputer/disconnect_de.properties
core/src/main/resources/jenkins/security/s2m/AdminCallableMonitor/message_pt_BR.properties
core/src/main/resources/jenkins/security/s2m/MasterKillSwitchWarning/message_pt_BR.properties
core/src/main/resources/lib/hudson/project/config-assignedLabel.jelly
http://jenkins-ci.org/commit/jenkins/64eef0e8b618a11eef980a8bee345f3608f922f6
Log:
Merge branch 'JENKINS-27268' of github.com:amuniz/jenkins into JENKINS-27268
Code changed in jenkins
User: Antonio Muñiz
Path:
core/src/main/resources/hudson/model/AbstractItem/help-slaveAffinity_de.html
core/src/main/resources/hudson/model/AbstractItem/help-slaveAffinity_de.html.lang,slave_rename
core/src/main/resources/hudson/model/AbstractItem/help-slaveAffinity_pt_BR.html
core/src/main/resources/hudson/model/AbstractItem/help-slaveAffinity_tr.html
core/src/main/resources/hudson/model/AbstractItem/help-slaveAffinity_zh_TW.html
core/src/main/resources/hudson/model/AbstractProject/help-label_zh_TW.html
core/src/main/resources/hudson/model/Node/help-labelString_de.html
core/src/main/resources/hudson/model/Node/help-labelString_pt_BR.html
core/src/main/resources/hudson/model/Node/help-labelString_tr.html
core/src/main/resources/hudson/model/Node/help-labelString_zh_TW.html
core/src/main/resources/hudson/model/Node/help-name_de.html
core/src/main/resources/hudson/model/Node/help-name_pt_BR.html
core/src/main/resources/hudson/model/Node/help-name_tr.html
core/src/main/resources/hudson/model/Node/help-name_zh_TW.html
core/src/main/resources/hudson/model/Node/help-numExecutors_de.html
core/src/main/resources/hudson/model/Node/help-numExecutors_pt_BR.html
core/src/main/resources/hudson/model/Node/help-numExecutors_tr.html
core/src/main/resources/hudson/model/Node/help-numExecutors_zh_TW.html
core/src/main/resources/hudson/model/Slave/help-remoteFS_de.html
core/src/main/resources/hudson/model/Slave/help-remoteFS_pt_BR.html
core/src/main/resources/hudson/model/Slave/help-remoteFS_tr.html
core/src/main/resources/hudson/model/Slave/help-remoteFS_zh_TW.html
core/src/main/resources/hudson/model/UsageStatistics/help-usageStatisticsCollected_de.html
core/src/main/resources/hudson/model/UsageStatistics/help-usageStatisticsCollected_zh_TW.html
core/src/main/resources/hudson/node_monitors/AbstractDiskSpaceMonitor/help-freeSpaceThreshold_de.html
core/src/main/resources/hudson/node_monitors/AbstractDiskSpaceMonitor/help-freeSpaceThreshold_zh_TW.html
core/src/main/resources/hudson/node_monitors/ArchitectureMonitor/help_de.html
core/src/main/resources/hudson/node_monitors/ArchitectureMonitor/help_zh_TW.html
core/src/main/resources/hudson/node_monitors/ClockMonitor/help_de.html
core/src/main/resources/hudson/node_monitors/DiskSpaceMonitor/help_de.html
core/src/main/resources/hudson/node_monitors/DiskSpaceMonitor/help_zh_TW.html
core/src/main/resources/hudson/node_monitors/ResponseTimeMonitor/help_de.html
core/src/main/resources/hudson/node_monitors/ResponseTimeMonitor/help_zh_TW.html
core/src/main/resources/hudson/node_monitors/SwapSpaceMonitor/help.html
core/src/main/resources/hudson/node_monitors/SwapSpaceMonitor/help_de.html
core/src/main/resources/hudson/node_monitors/SwapSpaceMonitor/help_zh_TW.html
core/src/main/resources/hudson/node_monitors/TemporarySpaceMonitor/help_de.html
core/src/main/resources/hudson/node_monitors/TemporarySpaceMonitor/help_zh_TW.html
core/src/main/resources/hudson/security/GlobalSecurityConfiguration/help-slaveAgentPort_de.html
core/src/main/resources/hudson/security/GlobalSecurityConfiguration/help-slaveAgentPort_pt_BR.html
core/src/main/resources/hudson/security/GlobalSecurityConfiguration/help-slaveAgentPort_tr.html
core/src/main/resources/hudson/security/GlobalSecurityConfiguration/help-slaveAgentPort_zh_TW.html
core/src/main/resources/hudson/slaves/AbstractCloudImpl/help-instanceCapStr_zh_TW.html
core/src/main/resources/hudson/slaves/CommandLauncher/help-command_de.html
core/src/main/resources/hudson/slaves/CommandLauncher/help-command_pt_BR.html
core/src/main/resources/hudson/slaves/CommandLauncher/help-command_tr.html
core/src/main/resources/hudson/slaves/CommandLauncher/help-command_zh_TW.html
core/src/main/resources/hudson/slaves/JNLPLauncher/help-vmargs_de.html
core/src/main/resources/hudson/slaves/JNLPLauncher/help-vmargs_zh_TW.html
core/src/main/resources/hudson/tools/AbstractCommandInstaller/help-command_de.html
core/src/main/resources/hudson/tools/AbstractCommandInstaller/help-command_zh_TW.html
core/src/main/resources/hudson/tools/InstallSourceProperty/help_de.html
core/src/main/resources/hudson/tools/InstallSourceProperty/help_zh_TW.html
core/src/main/resources/hudson/tools/ZipExtractionInstaller/help-url_de.html
core/src/main/resources/hudson/tools/ZipExtractionInstaller/help-url_zh_TW.html
core/src/main/resources/jenkins/model/Jenkins/help-rawWorkspaceDir_zh_TW.html
rename
http://jenkins-ci.org/commit/jenkins/981db8b586603163c872dda495d4ca6312f45531
Log:
JENKINS-27268 Remove HTML files containing slave
Code changed in jenkins
User: Kohsuke Kawaguchi
Path:
core/src/main/java/hudson/EnvVars.java
core/src/main/java/hudson/FilePath.java
core/src/main/java/hudson/FileSystemProvisioner.java
core/src/main/java/hudson/FileSystemProvisionerDescriptor.java
core/src/main/java/hudson/Functions.java
core/src/main/java/hudson/Launcher.java
core/src/main/java/hudson/ProxyConfiguration.java
core/src/main/java/hudson/TcpSlaveAgentListener.java
core/src/main/java/hudson/cli/OnlineNodeCommand.java
core/src/main/java/hudson/console/ConsoleLogFilter.java
core/src/main/java/hudson/logging/LogRecorder.java
core/src/main/java/hudson/model/AbstractBuild.java
core/src/main/java/hudson/model/AbstractProject.java
core/src/main/java/hudson/model/Computer.java
core/src/main/java/hudson/model/ComputerSet.java
core/src/main/java/hudson/model/Hudson.java
core/src/main/java/hudson/model/Label.java
core/src/main/java/hudson/model/LoadStatistics.java
core/src/main/java/hudson/model/Node.java
core/src/main/java/hudson/model/OverallLoadStatistics.java
core/src/main/java/hudson/model/Queue.java
core/src/main/java/hudson/model/Result.java
core/src/main/java/hudson/model/Run.java
core/src/main/java/hudson/model/Slave.java
core/src/main/java/hudson/model/TaskListener.java
core/src/main/java/hudson/model/WorkspaceBrowser.java
core/src/main/java/hudson/model/WorkspaceCleanupThread.java
core/src/main/java/hudson/node_monitors/AbstractAsyncNodeMonitorDescriptor.java
core/src/main/java/hudson/node_monitors/ArchitectureMonitor.java
core/src/main/java/hudson/node_monitors/NodeMonitor.java
core/src/main/java/hudson/node_monitors/NodeMonitorUpdater.java
core/src/main/java/hudson/node_monitors/ResponseTimeMonitor.java
core/src/main/java/hudson/node_monitors/package.html
core/src/main/java/hudson/os/solaris/ZFSProvisioner.java
core/src/main/java/hudson/scm/SCM.java
core/src/main/java/hudson/slaves/AbstractCloudComputer.java
core/src/main/java/hudson/slaves/AbstractCloudSlave.java
core/src/main/java/hudson/slaves/ChannelPinger.java
core/src/main/java/hudson/slaves/Cloud.java
core/src/main/java/hudson/slaves/CloudSlaveRetentionStrategy.java
core/src/main/java/hudson/slaves/CommandLauncher.java
core/src/main/java/hudson/slaves/ComputerLauncher.java
core/src/main/java/hudson/slaves/ComputerListener.java
core/src/main/java/hudson/slaves/ComputerRetentionWork.java
core/src/main/java/hudson/slaves/ConnectionActivityMonitor.java
core/src/main/java/hudson/slaves/EnvironmentVariablesNodeProperty.java
core/src/main/java/hudson/slaves/JNLPLauncher.java
core/src/main/java/hudson/slaves/NodeProperty.java
core/src/main/java/hudson/slaves/NodeProvisioner.java
core/src/main/java/hudson/slaves/RetentionStrategy.java
core/src/main/java/hudson/slaves/SimpleScheduledRetentionStrategy.java
core/src/main/java/hudson/slaves/SlaveComputer.java
core/src/main/java/hudson/slaves/package.html
core/src/main/java/hudson/tools/ToolInstallation.java
core/src/main/java/hudson/tools/ToolInstaller.java
core/src/main/java/hudson/util/ClockDifference.java
core/src/main/java/hudson/util/ProcessKiller.java
core/src/main/java/hudson/util/RemotingDiagnostics.java
core/src/main/java/jenkins/SlaveToMasterFileCallable.java
core/src/main/java/jenkins/SoloFilePathFilter.java
core/src/main/java/jenkins/model/ArtifactManagerFactory.java
core/src/main/java/jenkins/model/Jenkins.java
core/src/main/java/jenkins/security/ChannelConfigurator.java
core/src/main/java/jenkins/security/MasterToSlaveCallable.java
core/src/main/java/jenkins/security/Roles.java
core/src/main/java/jenkins/security/SlaveToMasterCallable.java
core/src/main/java/jenkins/security/s2m/AdminCallableMonitor.java
core/src/main/java/jenkins/security/s2m/CallableDirectionChecker.java
core/src/main/java/jenkins/security/s2m/DefaultFilePathFilter.java
core/src/main/java/jenkins/security/s2m/package-info.java
core/src/main/java/jenkins/slaves/DefaultJnlpSlaveReceiver.java
core/src/main/java/jenkins/slaves/EncryptedSlaveAgentJnlpFile.java
core/src/main/java/jenkins/slaves/JnlpAgentReceiver.java
core/src/main/java/jenkins/slaves/JnlpSlaveAgentProtocol.java
core/src/main/java/jenkins/slaves/JnlpSlaveAgentProtocol2.java
core/src/main/java/jenkins/slaves/JnlpSlaveHandshake.java
core/src/main/java/jenkins/slaves/WorkspaceLocator.java
core/src/main/java/jenkins/slaves/restarter/JnlpSlaveRestarterInstaller.java
core/src/main/java/jenkins/slaves/restarter/SlaveRestarter.java
core/src/main/java/jenkins/util/io/OnMaster.java
core/src/main/resources/hudson/PluginManager/_api.jelly
core/src/main/resources/hudson/TcpSlaveAgentListener/index.jelly
core/src/main/resources/hudson/lifecycle/Messages.properties
core/src/main/resources/hudson/lifecycle/Messages_bg.properties
core/src/main/resources/hudson/lifecycle/Messages_da.properties
core/src/main/resources/hudson/lifecycle/Messages_de.properties
core/src/main/resources/hudson/lifecycle/Messages_es.properties
core/src/main/resources/hudson/lifecycle/Messages_ja.properties
core/src/main/resources/hudson/lifecycle/Messages_pt_BR.properties
core/src/main/resources/hudson/lifecycle/Messages_zh_TW.properties
core/src/main/resources/hudson/model/AbstractBuild/index_pt_BR.properties
core/src/main/resources/hudson/model/AbstractItem/help-slaveAffinity.html
core/src/main/resources/hudson/model/AbstractItem/help-slaveAffinity_de.html
core/src/main/resources/hudson/model/AbstractItem/help-slaveAffinity_de.html.lang,slave_rename
core/src/main/resources/hudson/model/AbstractItem/help-slaveAffinity_pt_BR.html
core/src/main/resources/hudson/model/AbstractItem/help-slaveAffinity_tr.html
core/src/main/resources/hudson/model/AbstractItem/help-slaveAffinity_zh_TW.html
core/src/main/resources/hudson/model/AbstractItem/noWorkspace.jelly
core/src/main/resources/hudson/model/AbstractItem/noWorkspace_da.properties
core/src/main/resources/hudson/model/AbstractItem/noWorkspace_de.properties
core/src/main/resources/hudson/model/AbstractItem/noWorkspace_es.properties
core/src/main/resources/hudson/model/AbstractItem/noWorkspace_fr.properties
core/src/main/resources/hudson/model/AbstractItem/noWorkspace_ja.properties
core/src/main/resources/hudson/model/AbstractItem/noWorkspace_nl.properties
core/src/main/resources/hudson/model/AbstractItem/noWorkspace_pt_BR.properties
core/src/main/resources/hudson/model/AbstractItem/noWorkspace_ru.properties
core/src/main/resources/hudson/model/AbstractItem/noWorkspace_tr.properties
core/src/main/resources/hudson/model/AbstractItem/noWorkspace_zh_TW.properties
core/src/main/resources/hudson/model/AbstractProject/help-label.html
core/src/main/resources/hudson/model/AbstractProject/help-label_zh_TW.html
core/src/main/resources/hudson/model/Computer/_script.jelly
core/src/main/resources/hudson/model/Computer/_script_da.properties
core/src/main/resources/hudson/model/Computer/_script_de.properties
core/src/main/resources/hudson/model/Computer/_script_es.properties
core/src/main/resources/hudson/model/Computer/_script_fr.properties
core/src/main/resources/hudson/model/Computer/_script_ja.properties
core/src/main/resources/hudson/model/Computer/_script_pt_BR.properties
core/src/main/resources/hudson/model/Computer/_script_ru.properties
core/src/main/resources/hudson/model/Computer/_script_sv_SE.properties
core/src/main/resources/hudson/model/Computer/_script_tr.properties
core/src/main/resources/hudson/model/Computer/_script_zh_TW.properties
core/src/main/resources/hudson/model/Computer/custom-jnlp.jelly
core/src/main/resources/hudson/model/Computer/delete.jelly
core/src/main/resources/hudson/model/Computer/delete_da.properties
core/src/main/resources/hudson/model/Computer/delete_de.properties
core/src/main/resources/hudson/model/Computer/delete_es.properties
core/src/main/resources/hudson/model/Computer/delete_fr.properties
core/src/main/resources/hudson/model/Computer/delete_ja.properties
core/src/main/resources/hudson/model/Computer/delete_pt_BR.properties
core/src/main/resources/hudson/model/Computer/delete_ru.properties
core/src/main/resources/hudson/model/Computer/delete_zh_TW.properties
core/src/main/resources/hudson/model/Computer/sidepanel.jelly
core/src/main/resources/hudson/model/Computer/sidepanel_bg.properties
core/src/main/resources/hudson/model/Computer/sidepanel_cs.properties
core/src/main/resources/hudson/model/Computer/sidepanel_da.properties
core/src/main/resources/hudson/model/Computer/sidepanel_de.properties
core/src/main/resources/hudson/model/Computer/sidepanel_eo.properties
core/src/main/resources/hudson/model/Computer/sidepanel_es.properties
core/src/main/resources/hudson/model/Computer/sidepanel_fi.properties
core/src/main/resources/hudson/model/Computer/sidepanel_fr.properties
core/src/main/resources/hudson/model/Computer/sidepanel_he.properties
core/src/main/resources/hudson/model/Computer/sidepanel_it.properties
core/src/main/resources/hudson/model/Computer/sidepanel_ja.properties
core/src/main/resources/hudson/model/Computer/sidepanel_ko.properties
core/src/main/resources/hudson/model/Computer/sidepanel_lt.properties
core/src/main/resources/hudson/model/Computer/sidepanel_lv.properties
core/src/main/resources/hudson/model/Computer/sidepanel_nb_NO.properties
core/src/main/resources/hudson/model/Computer/sidepanel_nl.properties
core/src/main/resources/hudson/model/Computer/sidepanel_pl.properties
core/src/main/resources/hudson/model/Computer/sidepanel_pt_BR.properties
core/src/main/resources/hudson/model/Computer/sidepanel_pt_PT.properties
core/src/main/resources/hudson/model/Computer/sidepanel_ru.properties
core/src/main/resources/hudson/model/Computer/sidepanel_sk.properties
core/src/main/resources/hudson/model/Computer/sidepanel_sv_SE.properties
core/src/main/resources/hudson/model/Computer/sidepanel_tr.properties
core/src/main/resources/hudson/model/Computer/sidepanel_uk.properties
core/src/main/resources/hudson/model/Computer/sidepanel_zh_CN.properties
core/src/main/resources/hudson/model/Computer/sidepanel_zh_TW.properties
core/src/main/resources/hudson/model/ComputerSet/new.jelly
core/src/main/resources/hudson/model/Job/buildTimeTrend.jelly
core/src/main/resources/hudson/model/Job/buildTimeTrend_da.properties
core/src/main/resources/hudson/model/Job/buildTimeTrend_de.properties
core/src/main/resources/hudson/model/Job/buildTimeTrend_es.properties
core/src/main/resources/hudson/model/Job/buildTimeTrend_fr.properties
core/src/main/resources/hudson/model/Job/buildTimeTrend_hu.properties
core/src/main/resources/hudson/model/Job/buildTimeTrend_ja.properties
core/src/main/resources/hudson/model/Job/buildTimeTrend_ko.properties
core/src/main/resources/hudson/model/Job/buildTimeTrend_lv.properties
core/src/main/resources/hudson/model/Job/buildTimeTrend_nl.properties
core/src/main/resources/hudson/model/Job/buildTimeTrend_pt_BR.properties
core/src/main/resources/hudson/model/Job/buildTimeTrend_ru.properties
core/src/main/resources/hudson/model/Job/buildTimeTrend_sk.properties
core/src/main/resources/hudson/model/Job/buildTimeTrend_sv_SE.properties
core/src/main/resources/hudson/model/Job/buildTimeTrend_tr.properties
core/src/main/resources/hudson/model/Job/buildTimeTrend_uk.properties
core/src/main/resources/hudson/model/Job/buildTimeTrend_zh_TW.properties
core/src/main/resources/hudson/model/LoadStatistics/main.properties
core/src/main/resources/hudson/model/Messages.properties
core/src/main/resources/hudson/model/Messages_bg.properties
core/src/main/resources/hudson/model/Messages_da.properties
core/src/main/resources/hudson/model/Messages_de.properties
core/src/main/resources/hudson/model/Messages_fr.properties
core/src/main/resources/hudson/model/Messages_it.properties
core/src/main/resources/hudson/model/Messages_ja.properties
core/src/main/resources/hudson/model/Messages_nl.properties
core/src/main/resources/hudson/model/Messages_pt_BR.properties
core/src/main/resources/hudson/model/Messages_ru.properties
core/src/main/resources/hudson/model/Messages_tr.properties
core/src/main/resources/hudson/model/Messages_zh_CN.properties
core/src/main/resources/hudson/model/Messages_zh_TW.properties
core/src/main/resources/hudson/model/Node/help-labelString.html
core/src/main/resources/hudson/model/Node/help-labelString_de.html
core/src/main/resources/hudson/model/Node/help-labelString_pt_BR.html
core/src/main/resources/hudson/model/Node/help-labelString_tr.html
core/src/main/resources/hudson/model/Node/help-labelString_zh_TW.html
core/src/main/resources/hudson/model/Node/help-name.html
core/src/main/resources/hudson/model/Node/help-name_de.html
core/src/main/resources/hudson/model/Node/help-name_pt_BR.html
core/src/main/resources/hudson/model/Node/help-name_tr.html
core/src/main/resources/hudson/model/Node/help-name_zh_TW.html
core/src/main/resources/hudson/model/Node/help-numExecutors.html
core/src/main/resources/hudson/model/Node/help-numExecutors_de.html
core/src/main/resources/hudson/model/Node/help-numExecutors_pt_BR.html
core/src/main/resources/hudson/model/Node/help-numExecutors_tr.html
core/src/main/resources/hudson/model/Node/help-numExecutors_zh_TW.html
core/src/main/resources/hudson/model/Slave/help-launcher.jelly
core/src/main/resources/hudson/model/Slave/help-launcher_da.properties
core/src/main/resources/hudson/model/Slave/help-launcher_de.properties
core/src/main/resources/hudson/model/Slave/help-launcher_es.properties
core/src/main/resources/hudson/model/Slave/help-launcher_fr.properties
core/src/main/resources/hudson/model/Slave/help-launcher_ja.properties
core/src/main/resources/hudson/model/Slave/help-launcher_pt_BR.properties
core/src/main/resources/hudson/model/Slave/help-launcher_tr.properties
core/src/main/resources/hudson/model/Slave/help-launcher_zh_TW.properties
core/src/main/resources/hudson/model/Slave/help-remoteFS.html
core/src/main/resources/hudson/model/Slave/help-remoteFS_de.html
core/src/main/resources/hudson/model/Slave/help-remoteFS_pt_BR.html
core/src/main/resources/hudson/model/Slave/help-remoteFS_tr.html
core/src/main/resources/hudson/model/Slave/help-remoteFS_zh_TW.html
core/src/main/resources/hudson/model/UsageStatistics/help-usageStatisticsCollected.html
core/src/main/resources/hudson/model/UsageStatistics/help-usageStatisticsCollected_de.html
core/src/main/resources/hudson/model/UsageStatistics/help-usageStatisticsCollected_zh_TW.html
core/src/main/resources/hudson/node_monitors/AbstractDiskSpaceMonitor/help-freeSpaceThreshold.html
core/src/main/resources/hudson/node_monitors/AbstractDiskSpaceMonitor/help-freeSpaceThreshold_de.html
core/src/main/resources/hudson/node_monitors/AbstractDiskSpaceMonitor/help-freeSpaceThreshold_zh_TW.html
core/src/main/resources/hudson/node_monitors/ArchitectureMonitor/help.html
core/src/main/resources/hudson/node_monitors/ArchitectureMonitor/help_de.html
core/src/main/resources/hudson/node_monitors/ArchitectureMonitor/help_zh_TW.html
core/src/main/resources/hudson/node_monitors/ClockMonitor/help_de.html
core/src/main/resources/hudson/node_monitors/DiskSpaceMonitor/help.html
core/src/main/resources/hudson/node_monitors/DiskSpaceMonitor/help_de.html
core/src/main/resources/hudson/node_monitors/DiskSpaceMonitor/help_zh_TW.html
core/src/main/resources/hudson/node_monitors/Messages_de.properties
core/src/main/resources/hudson/node_monitors/MonitorMarkedNodeOffline/message.properties
core/src/main/resources/hudson/node_monitors/MonitorMarkedNodeOffline/message_cs.properties
core/src/main/resources/hudson/node_monitors/MonitorMarkedNodeOffline/message_da.properties
core/src/main/resources/hudson/node_monitors/MonitorMarkedNodeOffline/message_de.properties
core/src/main/resources/hudson/node_monitors/MonitorMarkedNodeOffline/message_es.properties
core/src/main/resources/hudson/node_monitors/MonitorMarkedNodeOffline/message_fr.properties
core/src/main/resources/hudson/node_monitors/MonitorMarkedNodeOffline/message_ja.properties
core/src/main/resources/hudson/node_monitors/MonitorMarkedNodeOffline/message_pt.properties
core/src/main/resources/hudson/node_monitors/MonitorMarkedNodeOffline/message_pt_BR.properties
core/src/main/resources/hudson/node_monitors/MonitorMarkedNodeOffline/message_sv_SE.properties
core/src/main/resources/hudson/node_monitors/MonitorMarkedNodeOffline/message_zh_CN.properties
core/src/main/resources/hudson/node_monitors/MonitorMarkedNodeOffline/message_zh_TW.properties
core/src/main/resources/hudson/node_monitors/ResponseTimeMonitor/help.html
core/src/main/resources/hudson/node_monitors/ResponseTimeMonitor/help_de.html
core/src/main/resources/hudson/node_monitors/ResponseTimeMonitor/help_zh_TW.html
core/src/main/resources/hudson/node_monitors/SwapSpaceMonitor/help.html
core/src/main/resources/hudson/node_monitors/SwapSpaceMonitor/help_de.html
core/src/main/resources/hudson/node_monitors/SwapSpaceMonitor/help_zh_TW.html
core/src/main/resources/hudson/node_monitors/TemporarySpaceMonitor/help.html
core/src/main/resources/hudson/node_monitors/TemporarySpaceMonitor/help_de.html
core/src/main/resources/hudson/node_monitors/TemporarySpaceMonitor/help_zh_TW.html
core/src/main/resources/hudson/security/GlobalSecurityConfiguration/help-slaveAgentPort.html
core/src/main/resources/hudson/security/GlobalSecurityConfiguration/help-slaveAgentPort_de.html
core/src/main/resources/hudson/security/GlobalSecurityConfiguration/help-slaveAgentPort_pt_BR.html
core/src/main/resources/hudson/security/GlobalSecurityConfiguration/help-slaveAgentPort_tr.html
core/src/main/resources/hudson/security/GlobalSecurityConfiguration/help-slaveAgentPort_zh_TW.html
core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index.groovy
core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_da.properties
core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_de.properties
core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_es.properties
core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_fi.properties
core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_fr.properties
core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_hu.properties
core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_ja.properties
core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_nl.properties
core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_pt_BR.properties
core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_ru.properties
core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_tr.properties
core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_zh_CN.properties
core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_zh_TW.properties
core/src/main/resources/hudson/slaves/AbstractCloudImpl/help-instanceCapStr.html
core/src/main/resources/hudson/slaves/AbstractCloudImpl/help-instanceCapStr_zh_TW.html
core/src/main/resources/hudson/slaves/CommandLauncher/help-command.html
core/src/main/resources/hudson/slaves/CommandLauncher/help-command_de.html
core/src/main/resources/hudson/slaves/CommandLauncher/help-command_pt_BR.html
core/src/main/resources/hudson/slaves/CommandLauncher/help-command_tr.html
core/src/main/resources/hudson/slaves/CommandLauncher/help-command_zh_TW.html
core/src/main/resources/hudson/slaves/CommandLauncher/help.properties
core/src/main/resources/hudson/slaves/CommandLauncher/help_da.properties
core/src/main/resources/hudson/slaves/CommandLauncher/help_de.properties
core/src/main/resources/hudson/slaves/CommandLauncher/help_fr.properties
core/src/main/resources/hudson/slaves/CommandLauncher/help_ja.properties
core/src/main/resources/hudson/slaves/CommandLauncher/help_pt_BR.properties
core/src/main/resources/hudson/slaves/CommandLauncher/help_zh_TW.properties
core/src/main/resources/hudson/slaves/ComputerLauncher/main.jelly
core/src/main/resources/hudson/slaves/ComputerLauncher/main_bg.properties
core/src/main/resources/hudson/slaves/ComputerLauncher/main_da.properties
core/src/main/resources/hudson/slaves/ComputerLauncher/main_de.properties
core/src/main/resources/hudson/slaves/ComputerLauncher/main_es.properties
core/src/main/resources/hudson/slaves/ComputerLauncher/main_fr.properties
core/src/main/resources/hudson/slaves/ComputerLauncher/main_ja.properties
core/src/main/resources/hudson/slaves/ComputerLauncher/main_pt_BR.properties
core/src/main/resources/hudson/slaves/ComputerLauncher/main_ru.properties
core/src/main/resources/hudson/slaves/ComputerLauncher/main_sv_SE.properties
core/src/main/resources/hudson/slaves/ComputerLauncher/main_zh_TW.properties
core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_ru.properties
core/src/main/resources/hudson/slaves/DumbSlave/newInstanceDetail.properties
core/src/main/resources/hudson/slaves/DumbSlave/newInstanceDetail_da.properties
core/src/main/resources/hudson/slaves/DumbSlave/newInstanceDetail_de.properties
core/src/main/resources/hudson/slaves/DumbSlave/newInstanceDetail_es.properties
core/src/main/resources/hudson/slaves/DumbSlave/newInstanceDetail_fr.properties
core/src/main/resources/hudson/slaves/DumbSlave/newInstanceDetail_ja.properties
core/src/main/resources/hudson/slaves/DumbSlave/newInstanceDetail_pt_BR.properties
core/src/main/resources/hudson/slaves/DumbSlave/newInstanceDetail_sv_SE.properties
core/src/main/resources/hudson/slaves/DumbSlave/newInstanceDetail_zh_TW.properties
core/src/main/resources/hudson/slaves/JNLPLauncher/help-vmargs.html
core/src/main/resources/hudson/slaves/JNLPLauncher/help-vmargs_de.html
core/src/main/resources/hudson/slaves/JNLPLauncher/help-vmargs_zh_TW.html
core/src/main/resources/hudson/slaves/JNLPLauncher/help.properties
core/src/main/resources/hudson/slaves/JNLPLauncher/help_da.properties
core/src/main/resources/hudson/slaves/JNLPLauncher/help_de.properties
core/src/main/resources/hudson/slaves/JNLPLauncher/help_es.properties
core/src/main/resources/hudson/slaves/JNLPLauncher/help_fr.properties
core/src/main/resources/hudson/slaves/JNLPLauncher/help_ja.properties
core/src/main/resources/hudson/slaves/JNLPLauncher/help_pt_BR.properties
core/src/main/resources/hudson/slaves/JNLPLauncher/help_zh_TW.properties
core/src/main/resources/hudson/slaves/JNLPLauncher/main.jelly
core/src/main/resources/hudson/slaves/JNLPLauncher/main.properties
core/src/main/resources/hudson/slaves/JNLPLauncher/main_da.properties
core/src/main/resources/hudson/slaves/JNLPLauncher/main_de.properties
core/src/main/resources/hudson/slaves/JNLPLauncher/main_es.properties
core/src/main/resources/hudson/slaves/JNLPLauncher/main_fr.properties
core/src/main/resources/hudson/slaves/JNLPLauncher/main_ja.properties
core/src/main/resources/hudson/slaves/JNLPLauncher/main_pt_BR.properties
core/src/main/resources/hudson/slaves/JNLPLauncher/main_ru.properties
core/src/main/resources/hudson/slaves/JNLPLauncher/main_zh_TW.properties
core/src/main/resources/hudson/slaves/Messages.properties
core/src/main/resources/hudson/slaves/Messages_bg.properties
core/src/main/resources/hudson/slaves/Messages_da.properties
core/src/main/resources/hudson/slaves/Messages_de.properties
core/src/main/resources/hudson/slaves/Messages_es.properties
core/src/main/resources/hudson/slaves/Messages_fr.properties
core/src/main/resources/hudson/slaves/Messages_ja.properties
core/src/main/resources/hudson/slaves/Messages_pt_BR.properties
core/src/main/resources/hudson/slaves/Messages_tr.properties
core/src/main/resources/hudson/slaves/Messages_zh_TW.properties
core/src/main/resources/hudson/slaves/SimpleScheduledRetentionStrategy/config_de.properties
core/src/main/resources/hudson/slaves/SlaveComputer/already-launched.jelly
core/src/main/resources/hudson/slaves/SlaveComputer/disconnect_de.properties
core/src/main/resources/hudson/slaves/SlaveComputer/slave-agent.jnlp.jelly
core/src/main/resources/hudson/slaves/SlaveComputer/systemInfo.jelly
core/src/main/resources/hudson/slaves/SlaveComputer/systemInfo_ja.properties
core/src/main/resources/hudson/slaves/SlaveComputer/systemInfo_pt_BR.properties
core/src/main/resources/hudson/tools/AbstractCommandInstaller/help-command.html
core/src/main/resources/hudson/tools/AbstractCommandInstaller/help-command_de.html
core/src/main/resources/hudson/tools/AbstractCommandInstaller/help-command_zh_TW.html
core/src/main/resources/hudson/tools/InstallSourceProperty/help.html
core/src/main/resources/hudson/tools/InstallSourceProperty/help_de.html
core/src/main/resources/hudson/tools/InstallSourceProperty/help_zh_TW.html
core/src/main/resources/hudson/tools/Messages.properties
core/src/main/resources/hudson/tools/Messages_bg.properties
core/src/main/resources/hudson/tools/Messages_ja.properties
core/src/main/resources/hudson/tools/Messages_pt_BR.properties
core/src/main/resources/hudson/tools/ZipExtractionInstaller/help-url.html
core/src/main/resources/hudson/tools/ZipExtractionInstaller/help-url_de.html
core/src/main/resources/hudson/tools/ZipExtractionInstaller/help-url_zh_TW.html
core/src/main/resources/jenkins/model/CoreEnvironmentContributor/buildEnv.properties
core/src/main/resources/jenkins/model/CoreEnvironmentContributor/buildEnv_de.properties
core/src/main/resources/jenkins/model/CoreEnvironmentContributor/buildEnv_fr.properties
core/src/main/resources/jenkins/model/CoreEnvironmentContributor/buildEnv_ja.properties
core/src/main/resources/jenkins/model/CoreEnvironmentContributor/buildEnv_nl.properties
core/src/main/resources/jenkins/model/CoreEnvironmentContributor/buildEnv_tr.properties
core/src/main/resources/jenkins/model/CoreEnvironmentContributor/buildEnv_zh_TW.properties
core/src/main/resources/jenkins/model/Jenkins/configureExecutors.jelly
core/src/main/resources/jenkins/model/Jenkins/help-rawWorkspaceDir.html
core/src/main/resources/jenkins/model/Jenkins/help-rawWorkspaceDir_zh_TW.html
core/src/main/resources/jenkins/model/Jenkins/systemInfo.properties
core/src/main/resources/jenkins/model/Jenkins/systemInfo_de.properties
core/src/main/resources/jenkins/model/Jenkins/systemInfo_ja.properties
core/src/main/resources/jenkins/model/Jenkins/systemInfo_pt_BR.properties
core/src/main/resources/jenkins/model/Jenkins/systemInfo_zh_TW.properties
core/src/main/resources/jenkins/security/s2m/AdminCallableMonitor/message.properties
core/src/main/resources/jenkins/security/s2m/AdminCallableMonitor/message_pt_BR.properties
core/src/main/resources/jenkins/security/s2m/AdminWhitelistRule/index.jelly
core/src/main/resources/jenkins/security/s2m/AdminWhitelistRule/index_ja.properties
core/src/main/resources/jenkins/security/s2m/AdminWhitelistRule/index_pt_BR.properties
core/src/main/resources/jenkins/security/s2m/MasterKillSwitchWarning/message.properties
core/src/main/resources/jenkins/security/s2m/MasterKillSwitchWarning/message_pt_BR.properties
core/src/main/resources/lib/form/slave-mode.jelly
core/src/main/resources/lib/hudson/project/config-assignedLabel.jelly
core/src/main/resources/lib/hudson/scriptConsole.jelly
rename
test/src/test/java/hudson/cli/CreateNodeCommandTest.java
test/src/test/java/hudson/cli/DeleteNodeCommandTest.java
test/src/test/java/hudson/cli/GetNodeCommandTest.java
test/src/test/java/hudson/cli/HelpCommandTest.java
test/src/test/java/hudson/cli/OnlineNodeCommandTest.java
test/src/test/java/hudson/cli/UpdateNodeCommandTest.java
test/src/test/java/hudson/model/ComputerTest.java
test/src/test/java/hudson/model/ExecutorTest.java
http://jenkins-ci.org/commit/jenkins/84b3a200a5674e7729378acdf0ba8df83f79d020
Log:
Merge pull request #2007 from amuniz/JENKINS-27268
JENKINS-27268 Use agent instead of slave in UI labels, javadoc and logs
Compare: https://github.com/jenkinsci/jenkins/compare/be2787ad5e31...84b3a200a567
Code changed in jenkins
User: Kohsuke Kawaguchi
Path:
core/src/main/java/hudson/EnvVars.java
core/src/main/java/hudson/FilePath.java
core/src/main/java/hudson/FileSystemProvisioner.java
core/src/main/java/hudson/FileSystemProvisionerDescriptor.java
core/src/main/java/hudson/Functions.java
core/src/main/java/hudson/Launcher.java
core/src/main/java/hudson/ProxyConfiguration.java
core/src/main/java/hudson/TcpSlaveAgentListener.java
core/src/main/java/hudson/cli/OnlineNodeCommand.java
core/src/main/java/hudson/console/ConsoleLogFilter.java
core/src/main/java/hudson/logging/LogRecorder.java
core/src/main/java/hudson/model/AbstractBuild.java
core/src/main/java/hudson/model/AbstractProject.java
core/src/main/java/hudson/model/Computer.java
core/src/main/java/hudson/model/ComputerSet.java
core/src/main/java/hudson/model/Hudson.java
core/src/main/java/hudson/model/Label.java
core/src/main/java/hudson/model/LoadStatistics.java
core/src/main/java/hudson/model/Node.java
core/src/main/java/hudson/model/OverallLoadStatistics.java
core/src/main/java/hudson/model/Queue.java
core/src/main/java/hudson/model/Result.java
core/src/main/java/hudson/model/Run.java
core/src/main/java/hudson/model/Slave.java
core/src/main/java/hudson/model/TaskListener.java
core/src/main/java/hudson/model/WorkspaceBrowser.java
core/src/main/java/hudson/model/WorkspaceCleanupThread.java
core/src/main/java/hudson/node_monitors/AbstractAsyncNodeMonitorDescriptor.java
core/src/main/java/hudson/node_monitors/ArchitectureMonitor.java
core/src/main/java/hudson/node_monitors/NodeMonitor.java
core/src/main/java/hudson/node_monitors/NodeMonitorUpdater.java
core/src/main/java/hudson/node_monitors/ResponseTimeMonitor.java
core/src/main/java/hudson/node_monitors/package.html
core/src/main/java/hudson/os/solaris/ZFSProvisioner.java
core/src/main/java/hudson/scm/SCM.java
core/src/main/java/hudson/slaves/AbstractCloudComputer.java
core/src/main/java/hudson/slaves/AbstractCloudSlave.java
core/src/main/java/hudson/slaves/ChannelPinger.java
core/src/main/java/hudson/slaves/Cloud.java
core/src/main/java/hudson/slaves/CloudSlaveRetentionStrategy.java
core/src/main/java/hudson/slaves/CommandLauncher.java
core/src/main/java/hudson/slaves/ComputerLauncher.java
core/src/main/java/hudson/slaves/ComputerListener.java
core/src/main/java/hudson/slaves/ComputerRetentionWork.java
core/src/main/java/hudson/slaves/ConnectionActivityMonitor.java
core/src/main/java/hudson/slaves/EnvironmentVariablesNodeProperty.java
core/src/main/java/hudson/slaves/JNLPLauncher.java
core/src/main/java/hudson/slaves/NodeProperty.java
core/src/main/java/hudson/slaves/NodeProvisioner.java
core/src/main/java/hudson/slaves/RetentionStrategy.java
core/src/main/java/hudson/slaves/SimpleScheduledRetentionStrategy.java
core/src/main/java/hudson/slaves/SlaveComputer.java
core/src/main/java/hudson/slaves/package.html
core/src/main/java/hudson/tools/ToolInstallation.java
core/src/main/java/hudson/tools/ToolInstaller.java
core/src/main/java/hudson/util/ClockDifference.java
core/src/main/java/hudson/util/ProcessKiller.java
core/src/main/java/hudson/util/RemotingDiagnostics.java
core/src/main/java/jenkins/SlaveToMasterFileCallable.java
core/src/main/java/jenkins/SoloFilePathFilter.java
core/src/main/java/jenkins/model/ArtifactManagerFactory.java
core/src/main/java/jenkins/model/Jenkins.java
core/src/main/java/jenkins/security/ChannelConfigurator.java
core/src/main/java/jenkins/security/MasterToSlaveCallable.java
core/src/main/java/jenkins/security/Roles.java
core/src/main/java/jenkins/security/SlaveToMasterCallable.java
core/src/main/java/jenkins/security/s2m/AdminCallableMonitor.java
core/src/main/java/jenkins/security/s2m/CallableDirectionChecker.java
core/src/main/java/jenkins/security/s2m/DefaultFilePathFilter.java
core/src/main/java/jenkins/security/s2m/package-info.java
core/src/main/java/jenkins/slaves/DefaultJnlpSlaveReceiver.java
core/src/main/java/jenkins/slaves/EncryptedSlaveAgentJnlpFile.java
core/src/main/java/jenkins/slaves/JnlpAgentReceiver.java
core/src/main/java/jenkins/slaves/JnlpSlaveAgentProtocol.java
core/src/main/java/jenkins/slaves/JnlpSlaveAgentProtocol2.java
core/src/main/java/jenkins/slaves/JnlpSlaveHandshake.java
core/src/main/java/jenkins/slaves/WorkspaceLocator.java
core/src/main/java/jenkins/slaves/restarter/JnlpSlaveRestarterInstaller.java
core/src/main/java/jenkins/slaves/restarter/SlaveRestarter.java
core/src/main/java/jenkins/util/io/OnMaster.java
core/src/main/resources/hudson/PluginManager/_api.jelly
core/src/main/resources/hudson/TcpSlaveAgentListener/index.jelly
core/src/main/resources/hudson/lifecycle/Messages.properties
core/src/main/resources/hudson/lifecycle/Messages_bg.properties
core/src/main/resources/hudson/lifecycle/Messages_da.properties
core/src/main/resources/hudson/lifecycle/Messages_de.properties
core/src/main/resources/hudson/lifecycle/Messages_es.properties
core/src/main/resources/hudson/lifecycle/Messages_ja.properties
core/src/main/resources/hudson/lifecycle/Messages_pt_BR.properties
core/src/main/resources/hudson/lifecycle/Messages_zh_TW.properties
core/src/main/resources/hudson/model/AbstractBuild/index_pt_BR.properties
core/src/main/resources/hudson/model/AbstractItem/help-slaveAffinity.html
core/src/main/resources/hudson/model/AbstractItem/help-slaveAffinity_de.html
core/src/main/resources/hudson/model/AbstractItem/help-slaveAffinity_de.html.lang,slave_rename
core/src/main/resources/hudson/model/AbstractItem/help-slaveAffinity_pt_BR.html
core/src/main/resources/hudson/model/AbstractItem/help-slaveAffinity_tr.html
core/src/main/resources/hudson/model/AbstractItem/help-slaveAffinity_zh_TW.html
core/src/main/resources/hudson/model/AbstractItem/noWorkspace.jelly
core/src/main/resources/hudson/model/AbstractItem/noWorkspace_da.properties
core/src/main/resources/hudson/model/AbstractItem/noWorkspace_de.properties
core/src/main/resources/hudson/model/AbstractItem/noWorkspace_es.properties
core/src/main/resources/hudson/model/AbstractItem/noWorkspace_fr.properties
core/src/main/resources/hudson/model/AbstractItem/noWorkspace_ja.properties
core/src/main/resources/hudson/model/AbstractItem/noWorkspace_nl.properties
core/src/main/resources/hudson/model/AbstractItem/noWorkspace_pt_BR.properties
core/src/main/resources/hudson/model/AbstractItem/noWorkspace_ru.properties
core/src/main/resources/hudson/model/AbstractItem/noWorkspace_tr.properties
core/src/main/resources/hudson/model/AbstractItem/noWorkspace_zh_TW.properties
core/src/main/resources/hudson/model/AbstractProject/help-label.html
core/src/main/resources/hudson/model/AbstractProject/help-label_zh_TW.html
core/src/main/resources/hudson/model/Computer/_script.jelly
core/src/main/resources/hudson/model/Computer/_script_da.properties
core/src/main/resources/hudson/model/Computer/_script_de.properties
core/src/main/resources/hudson/model/Computer/_script_es.properties
core/src/main/resources/hudson/model/Computer/_script_fr.properties
core/src/main/resources/hudson/model/Computer/_script_ja.properties
core/src/main/resources/hudson/model/Computer/_script_pt_BR.properties
core/src/main/resources/hudson/model/Computer/_script_ru.properties
core/src/main/resources/hudson/model/Computer/_script_sv_SE.properties
core/src/main/resources/hudson/model/Computer/_script_tr.properties
core/src/main/resources/hudson/model/Computer/_script_zh_TW.properties
core/src/main/resources/hudson/model/Computer/custom-jnlp.jelly
core/src/main/resources/hudson/model/Computer/delete.jelly
core/src/main/resources/hudson/model/Computer/delete_da.properties
core/src/main/resources/hudson/model/Computer/delete_de.properties
core/src/main/resources/hudson/model/Computer/delete_es.properties
core/src/main/resources/hudson/model/Computer/delete_fr.properties
core/src/main/resources/hudson/model/Computer/delete_ja.properties
core/src/main/resources/hudson/model/Computer/delete_pt_BR.properties
core/src/main/resources/hudson/model/Computer/delete_ru.properties
core/src/main/resources/hudson/model/Computer/delete_zh_TW.properties
core/src/main/resources/hudson/model/Computer/sidepanel.jelly
core/src/main/resources/hudson/model/Computer/sidepanel_bg.properties
core/src/main/resources/hudson/model/Computer/sidepanel_cs.properties
core/src/main/resources/hudson/model/Computer/sidepanel_da.properties
core/src/main/resources/hudson/model/Computer/sidepanel_de.properties
core/src/main/resources/hudson/model/Computer/sidepanel_eo.properties
core/src/main/resources/hudson/model/Computer/sidepanel_es.properties
core/src/main/resources/hudson/model/Computer/sidepanel_fi.properties
core/src/main/resources/hudson/model/Computer/sidepanel_fr.properties
core/src/main/resources/hudson/model/Computer/sidepanel_he.properties
core/src/main/resources/hudson/model/Computer/sidepanel_it.properties
core/src/main/resources/hudson/model/Computer/sidepanel_ja.properties
core/src/main/resources/hudson/model/Computer/sidepanel_ko.properties
core/src/main/resources/hudson/model/Computer/sidepanel_lt.properties
core/src/main/resources/hudson/model/Computer/sidepanel_lv.properties
core/src/main/resources/hudson/model/Computer/sidepanel_nb_NO.properties
core/src/main/resources/hudson/model/Computer/sidepanel_nl.properties
core/src/main/resources/hudson/model/Computer/sidepanel_pl.properties
core/src/main/resources/hudson/model/Computer/sidepanel_pt_BR.properties
core/src/main/resources/hudson/model/Computer/sidepanel_pt_PT.properties
core/src/main/resources/hudson/model/Computer/sidepanel_ru.properties
core/src/main/resources/hudson/model/Computer/sidepanel_sk.properties
core/src/main/resources/hudson/model/Computer/sidepanel_sv_SE.properties
core/src/main/resources/hudson/model/Computer/sidepanel_tr.properties
core/src/main/resources/hudson/model/Computer/sidepanel_uk.properties
core/src/main/resources/hudson/model/Computer/sidepanel_zh_CN.properties
core/src/main/resources/hudson/model/Computer/sidepanel_zh_TW.properties
core/src/main/resources/hudson/model/ComputerSet/new.jelly
core/src/main/resources/hudson/model/Job/buildTimeTrend.jelly
core/src/main/resources/hudson/model/Job/buildTimeTrend_da.properties
core/src/main/resources/hudson/model/Job/buildTimeTrend_de.properties
core/src/main/resources/hudson/model/Job/buildTimeTrend_es.properties
core/src/main/resources/hudson/model/Job/buildTimeTrend_fr.properties
core/src/main/resources/hudson/model/Job/buildTimeTrend_hu.properties
core/src/main/resources/hudson/model/Job/buildTimeTrend_ja.properties
core/src/main/resources/hudson/model/Job/buildTimeTrend_ko.properties
core/src/main/resources/hudson/model/Job/buildTimeTrend_lv.properties
core/src/main/resources/hudson/model/Job/buildTimeTrend_nl.properties
core/src/main/resources/hudson/model/Job/buildTimeTrend_pt_BR.properties
core/src/main/resources/hudson/model/Job/buildTimeTrend_ru.properties
core/src/main/resources/hudson/model/Job/buildTimeTrend_sk.properties
core/src/main/resources/hudson/model/Job/buildTimeTrend_sv_SE.properties
core/src/main/resources/hudson/model/Job/buildTimeTrend_tr.properties
core/src/main/resources/hudson/model/Job/buildTimeTrend_uk.properties
core/src/main/resources/hudson/model/Job/buildTimeTrend_zh_TW.properties
core/src/main/resources/hudson/model/LoadStatistics/main.properties
core/src/main/resources/hudson/model/Messages.properties
core/src/main/resources/hudson/model/Messages_bg.properties
core/src/main/resources/hudson/model/Messages_da.properties
core/src/main/resources/hudson/model/Messages_de.properties
core/src/main/resources/hudson/model/Messages_fr.properties
core/src/main/resources/hudson/model/Messages_it.properties
core/src/main/resources/hudson/model/Messages_ja.properties
core/src/main/resources/hudson/model/Messages_nl.properties
core/src/main/resources/hudson/model/Messages_pt_BR.properties
core/src/main/resources/hudson/model/Messages_ru.properties
core/src/main/resources/hudson/model/Messages_tr.properties
core/src/main/resources/hudson/model/Messages_zh_CN.properties
core/src/main/resources/hudson/model/Messages_zh_TW.properties
core/src/main/resources/hudson/model/Node/help-labelString.html
core/src/main/resources/hudson/model/Node/help-labelString_de.html
core/src/main/resources/hudson/model/Node/help-labelString_pt_BR.html
core/src/main/resources/hudson/model/Node/help-labelString_tr.html
core/src/main/resources/hudson/model/Node/help-labelString_zh_TW.html
core/src/main/resources/hudson/model/Node/help-name.html
core/src/main/resources/hudson/model/Node/help-name_de.html
core/src/main/resources/hudson/model/Node/help-name_pt_BR.html
core/src/main/resources/hudson/model/Node/help-name_tr.html
core/src/main/resources/hudson/model/Node/help-name_zh_TW.html
core/src/main/resources/hudson/model/Node/help-numExecutors.html
core/src/main/resources/hudson/model/Node/help-numExecutors_de.html
core/src/main/resources/hudson/model/Node/help-numExecutors_pt_BR.html
core/src/main/resources/hudson/model/Node/help-numExecutors_tr.html
core/src/main/resources/hudson/model/Node/help-numExecutors_zh_TW.html
core/src/main/resources/hudson/model/Slave/help-launcher.jelly
core/src/main/resources/hudson/model/Slave/help-launcher_da.properties
core/src/main/resources/hudson/model/Slave/help-launcher_de.properties
core/src/main/resources/hudson/model/Slave/help-launcher_es.properties
core/src/main/resources/hudson/model/Slave/help-launcher_fr.properties
core/src/main/resources/hudson/model/Slave/help-launcher_ja.properties
core/src/main/resources/hudson/model/Slave/help-launcher_pt_BR.properties
core/src/main/resources/hudson/model/Slave/help-launcher_tr.properties
core/src/main/resources/hudson/model/Slave/help-launcher_zh_TW.properties
core/src/main/resources/hudson/model/Slave/help-remoteFS.html
core/src/main/resources/hudson/model/Slave/help-remoteFS_de.html
core/src/main/resources/hudson/model/Slave/help-remoteFS_pt_BR.html
core/src/main/resources/hudson/model/Slave/help-remoteFS_tr.html
core/src/main/resources/hudson/model/Slave/help-remoteFS_zh_TW.html
core/src/main/resources/hudson/model/UsageStatistics/help-usageStatisticsCollected.html
core/src/main/resources/hudson/model/UsageStatistics/help-usageStatisticsCollected_de.html
core/src/main/resources/hudson/model/UsageStatistics/help-usageStatisticsCollected_zh_TW.html
core/src/main/resources/hudson/node_monitors/AbstractDiskSpaceMonitor/help-freeSpaceThreshold.html
core/src/main/resources/hudson/node_monitors/AbstractDiskSpaceMonitor/help-freeSpaceThreshold_de.html
core/src/main/resources/hudson/node_monitors/AbstractDiskSpaceMonitor/help-freeSpaceThreshold_zh_TW.html
core/src/main/resources/hudson/node_monitors/ArchitectureMonitor/help.html
core/src/main/resources/hudson/node_monitors/ArchitectureMonitor/help_de.html
core/src/main/resources/hudson/node_monitors/ArchitectureMonitor/help_zh_TW.html
core/src/main/resources/hudson/node_monitors/ClockMonitor/help_de.html
core/src/main/resources/hudson/node_monitors/DiskSpaceMonitor/help.html
core/src/main/resources/hudson/node_monitors/DiskSpaceMonitor/help_de.html
core/src/main/resources/hudson/node_monitors/DiskSpaceMonitor/help_zh_TW.html
core/src/main/resources/hudson/node_monitors/Messages_de.properties
core/src/main/resources/hudson/node_monitors/MonitorMarkedNodeOffline/message.properties
core/src/main/resources/hudson/node_monitors/MonitorMarkedNodeOffline/message_cs.properties
core/src/main/resources/hudson/node_monitors/MonitorMarkedNodeOffline/message_da.properties
core/src/main/resources/hudson/node_monitors/MonitorMarkedNodeOffline/message_de.properties
core/src/main/resources/hudson/node_monitors/MonitorMarkedNodeOffline/message_es.properties
core/src/main/resources/hudson/node_monitors/MonitorMarkedNodeOffline/message_fr.properties
core/src/main/resources/hudson/node_monitors/MonitorMarkedNodeOffline/message_ja.properties
core/src/main/resources/hudson/node_monitors/MonitorMarkedNodeOffline/message_pt.properties
core/src/main/resources/hudson/node_monitors/MonitorMarkedNodeOffline/message_pt_BR.properties
core/src/main/resources/hudson/node_monitors/MonitorMarkedNodeOffline/message_sv_SE.properties
core/src/main/resources/hudson/node_monitors/MonitorMarkedNodeOffline/message_zh_CN.properties
core/src/main/resources/hudson/node_monitors/MonitorMarkedNodeOffline/message_zh_TW.properties
core/src/main/resources/hudson/node_monitors/ResponseTimeMonitor/help.html
core/src/main/resources/hudson/node_monitors/ResponseTimeMonitor/help_de.html
core/src/main/resources/hudson/node_monitors/ResponseTimeMonitor/help_zh_TW.html
core/src/main/resources/hudson/node_monitors/SwapSpaceMonitor/help.html
core/src/main/resources/hudson/node_monitors/SwapSpaceMonitor/help_de.html
core/src/main/resources/hudson/node_monitors/SwapSpaceMonitor/help_zh_TW.html
core/src/main/resources/hudson/node_monitors/TemporarySpaceMonitor/help.html
core/src/main/resources/hudson/node_monitors/TemporarySpaceMonitor/help_de.html
core/src/main/resources/hudson/node_monitors/TemporarySpaceMonitor/help_zh_TW.html
core/src/main/resources/hudson/security/GlobalSecurityConfiguration/help-slaveAgentPort.html
core/src/main/resources/hudson/security/GlobalSecurityConfiguration/help-slaveAgentPort_de.html
core/src/main/resources/hudson/security/GlobalSecurityConfiguration/help-slaveAgentPort_pt_BR.html
core/src/main/resources/hudson/security/GlobalSecurityConfiguration/help-slaveAgentPort_tr.html
core/src/main/resources/hudson/security/GlobalSecurityConfiguration/help-slaveAgentPort_zh_TW.html
core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index.groovy
core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_da.properties
core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_de.properties
core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_es.properties
core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_fi.properties
core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_fr.properties
core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_hu.properties
core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_ja.properties
core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_nl.properties
core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_pt_BR.properties
core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_ru.properties
core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_tr.properties
core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_zh_CN.properties
core/src/main/resources/hudson/security/GlobalSecurityConfiguration/index_zh_TW.properties
core/src/main/resources/hudson/slaves/AbstractCloudImpl/help-instanceCapStr.html
core/src/main/resources/hudson/slaves/AbstractCloudImpl/help-instanceCapStr_zh_TW.html
core/src/main/resources/hudson/slaves/CommandLauncher/help-command.html
core/src/main/resources/hudson/slaves/CommandLauncher/help-command_de.html
core/src/main/resources/hudson/slaves/CommandLauncher/help-command_pt_BR.html
core/src/main/resources/hudson/slaves/CommandLauncher/help-command_tr.html
core/src/main/resources/hudson/slaves/CommandLauncher/help-command_zh_TW.html
core/src/main/resources/hudson/slaves/CommandLauncher/help.properties
core/src/main/resources/hudson/slaves/CommandLauncher/help_da.properties
core/src/main/resources/hudson/slaves/CommandLauncher/help_de.properties
core/src/main/resources/hudson/slaves/CommandLauncher/help_fr.properties
core/src/main/resources/hudson/slaves/CommandLauncher/help_ja.properties
core/src/main/resources/hudson/slaves/CommandLauncher/help_pt_BR.properties
core/src/main/resources/hudson/slaves/CommandLauncher/help_zh_TW.properties
core/src/main/resources/hudson/slaves/ComputerLauncher/main.jelly
core/src/main/resources/hudson/slaves/ComputerLauncher/main_bg.properties
core/src/main/resources/hudson/slaves/ComputerLauncher/main_da.properties
core/src/main/resources/hudson/slaves/ComputerLauncher/main_de.properties
core/src/main/resources/hudson/slaves/ComputerLauncher/main_es.properties
core/src/main/resources/hudson/slaves/ComputerLauncher/main_fr.properties
core/src/main/resources/hudson/slaves/ComputerLauncher/main_ja.properties
core/src/main/resources/hudson/slaves/ComputerLauncher/main_pt_BR.properties
core/src/main/resources/hudson/slaves/ComputerLauncher/main_ru.properties
core/src/main/resources/hudson/slaves/ComputerLauncher/main_sv_SE.properties
core/src/main/resources/hudson/slaves/ComputerLauncher/main_zh_TW.properties
core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_ru.properties
core/src/main/resources/hudson/slaves/DumbSlave/newInstanceDetail.properties
core/src/main/resources/hudson/slaves/DumbSlave/newInstanceDetail_da.properties
core/src/main/resources/hudson/slaves/DumbSlave/newInstanceDetail_de.properties
core/src/main/resources/hudson/slaves/DumbSlave/newInstanceDetail_es.properties
core/src/main/resources/hudson/slaves/DumbSlave/newInstanceDetail_fr.properties
core/src/main/resources/hudson/slaves/DumbSlave/newInstanceDetail_ja.properties
core/src/main/resources/hudson/slaves/DumbSlave/newInstanceDetail_pt_BR.properties
core/src/main/resources/hudson/slaves/DumbSlave/newInstanceDetail_sv_SE.properties
core/src/main/resources/hudson/slaves/DumbSlave/newInstanceDetail_zh_TW.properties
core/src/main/resources/hudson/slaves/JNLPLauncher/help-vmargs.html
core/src/main/resources/hudson/slaves/JNLPLauncher/help-vmargs_de.html
core/src/main/resources/hudson/slaves/JNLPLauncher/help-vmargs_zh_TW.html
core/src/main/resources/hudson/slaves/JNLPLauncher/help.properties
core/src/main/resources/hudson/slaves/JNLPLauncher/help_da.properties
core/src/main/resources/hudson/slaves/JNLPLauncher/help_de.properties
core/src/main/resources/hudson/slaves/JNLPLauncher/help_es.properties
core/src/main/resources/hudson/slaves/JNLPLauncher/help_fr.properties
core/src/main/resources/hudson/slaves/JNLPLauncher/help_ja.properties
core/src/main/resources/hudson/slaves/JNLPLauncher/help_pt_BR.properties
core/src/main/resources/hudson/slaves/JNLPLauncher/help_zh_TW.properties
core/src/main/resources/hudson/slaves/JNLPLauncher/main.jelly
core/src/main/resources/hudson/slaves/JNLPLauncher/main.properties
core/src/main/resources/hudson/slaves/JNLPLauncher/main_da.properties
core/src/main/resources/hudson/slaves/JNLPLauncher/main_de.properties
core/src/main/resources/hudson/slaves/JNLPLauncher/main_es.properties
core/src/main/resources/hudson/slaves/JNLPLauncher/main_fr.properties
core/src/main/resources/hudson/slaves/JNLPLauncher/main_ja.properties
core/src/main/resources/hudson/slaves/JNLPLauncher/main_pt_BR.properties
core/src/main/resources/hudson/slaves/JNLPLauncher/main_ru.properties
core/src/main/resources/hudson/slaves/JNLPLauncher/main_zh_TW.properties
core/src/main/resources/hudson/slaves/Messages.properties
core/src/main/resources/hudson/slaves/Messages_bg.properties
core/src/main/resources/hudson/slaves/Messages_da.properties
core/src/main/resources/hudson/slaves/Messages_de.properties
core/src/main/resources/hudson/slaves/Messages_es.properties
core/src/main/resources/hudson/slaves/Messages_fr.properties
core/src/main/resources/hudson/slaves/Messages_ja.properties
core/src/main/resources/hudson/slaves/Messages_pt_BR.properties
core/src/main/resources/hudson/slaves/Messages_tr.properties
core/src/main/resources/hudson/slaves/Messages_zh_TW.properties
core/src/main/resources/hudson/slaves/SimpleScheduledRetentionStrategy/config_de.properties
core/src/main/resources/hudson/slaves/SlaveComputer/already-launched.jelly
core/src/main/resources/hudson/slaves/SlaveComputer/disconnect_de.properties
core/src/main/resources/hudson/slaves/SlaveComputer/slave-agent.jnlp.jelly
core/src/main/resources/hudson/slaves/SlaveComputer/systemInfo.jelly
core/src/main/resources/hudson/slaves/SlaveComputer/systemInfo_ja.properties
core/src/main/resources/hudson/slaves/SlaveComputer/systemInfo_pt_BR.properties
core/src/main/resources/hudson/tools/AbstractCommandInstaller/help-command.html
core/src/main/resources/hudson/tools/AbstractCommandInstaller/help-command_de.html
core/src/main/resources/hudson/tools/AbstractCommandInstaller/help-command_zh_TW.html
core/src/main/resources/hudson/tools/InstallSourceProperty/help.html
core/src/main/resources/hudson/tools/InstallSourceProperty/help_de.html
core/src/main/resources/hudson/tools/InstallSourceProperty/help_zh_TW.html
core/src/main/resources/hudson/tools/Messages.properties
core/src/main/resources/hudson/tools/Messages_bg.properties
core/src/main/resources/hudson/tools/Messages_ja.properties
core/src/main/resources/hudson/tools/Messages_pt_BR.properties
core/src/main/resources/hudson/tools/ZipExtractionInstaller/help-url.html
core/src/main/resources/hudson/tools/ZipExtractionInstaller/help-url_de.html
core/src/main/resources/hudson/tools/ZipExtractionInstaller/help-url_zh_TW.html
core/src/main/resources/jenkins/model/CoreEnvironmentContributor/buildEnv.properties
core/src/main/resources/jenkins/model/CoreEnvironmentContributor/buildEnv_de.properties
core/src/main/resources/jenkins/model/CoreEnvironmentContributor/buildEnv_fr.properties
core/src/main/resources/jenkins/model/CoreEnvironmentContributor/buildEnv_ja.properties
core/src/main/resources/jenkins/model/CoreEnvironmentContributor/buildEnv_nl.properties
core/src/main/resources/jenkins/model/CoreEnvironmentContributor/buildEnv_tr.properties
core/src/main/resources/jenkins/model/CoreEnvironmentContributor/buildEnv_zh_TW.properties
core/src/main/resources/jenkins/model/Jenkins/configureExecutors.jelly
core/src/main/resources/jenkins/model/Jenkins/help-rawWorkspaceDir.html
core/src/main/resources/jenkins/model/Jenkins/help-rawWorkspaceDir_zh_TW.html
core/src/main/resources/jenkins/model/Jenkins/systemInfo.properties
core/src/main/resources/jenkins/model/Jenkins/systemInfo_de.properties
core/src/main/resources/jenkins/model/Jenkins/systemInfo_ja.properties
core/src/main/resources/jenkins/model/Jenkins/systemInfo_pt_BR.properties
core/src/main/resources/jenkins/model/Jenkins/systemInfo_zh_TW.properties
core/src/main/resources/jenkins/security/s2m/AdminCallableMonitor/message.properties
core/src/main/resources/jenkins/security/s2m/AdminCallableMonitor/message_pt_BR.properties
core/src/main/resources/jenkins/security/s2m/AdminWhitelistRule/index.jelly
core/src/main/resources/jenkins/security/s2m/AdminWhitelistRule/index_ja.properties
core/src/main/resources/jenkins/security/s2m/AdminWhitelistRule/index_pt_BR.properties
core/src/main/resources/jenkins/security/s2m/MasterKillSwitchWarning/message.properties
core/src/main/resources/jenkins/security/s2m/MasterKillSwitchWarning/message_pt_BR.properties
core/src/main/resources/lib/form/slave-mode.jelly
core/src/main/resources/lib/hudson/project/config-assignedLabel.jelly
core/src/main/resources/lib/hudson/scriptConsole.jelly
rename
test/src/test/java/hudson/cli/CreateNodeCommandTest.java
test/src/test/java/hudson/cli/DeleteNodeCommandTest.java
test/src/test/java/hudson/cli/GetNodeCommandTest.java
test/src/test/java/hudson/cli/HelpCommandTest.java
test/src/test/java/hudson/cli/OnlineNodeCommandTest.java
test/src/test/java/hudson/cli/UpdateNodeCommandTest.java
test/src/test/java/hudson/model/ComputerTest.java
test/src/test/java/hudson/model/ExecutorTest.java
http://jenkins-ci.org/commit/jenkins/75715398f2be09b77989bd7ee2a9455e9a22f45d
Log:
Revert "Merge pull request #2007 from amuniz/JENKINS-27268"
This reverts commit 84b3a200a5674e7729378acdf0ba8df83f79d020, reversing
changes made to be2787ad5e3164a2c4417a40d4ad48465756effc.
Integrated in jenkins_main_trunk #4447
JENKINS-27268 Use agent instead of slave in UI labels (Revision 262cd1fa46fa579dd627550d102500fec1b03da9)
JENKINS-27268 Fix tests after renaming (Revision 317d788eff4726dffd73b88caf12bd2295cc5951)
JENKINS-27268 Remove HTML files containing slave (Revision 981db8b586603163c872dda495d4ca6312f45531)
Result = SUCCESS
amuniz : 262cd1fa46fa579dd627550d102500fec1b03da9
Files :
- core/src/main/resources/hudson/model/Job/buildTimeTrend_sv_SE.properties
- core/src/main/resources/hudson/model/Job/buildTimeTrend_de.properties
- core/src/main/resources/hudson/model/Job/buildTimeTrend_tr.properties
- core/src/main/resources/hudson/model/Job/buildTimeTrend_lv.properties
- core/src/main/resources/hudson/model/Job/buildTimeTrend.jelly
- core/src/main/resources/hudson/slaves/JNLPLauncher/main_es.properties
- core/src/main/resources/hudson/slaves/ComputerLauncher/main_zh_TW.properties
- core/src/main/resources/hudson/model/Job/buildTimeTrend_nl.properties
- core/src/main/resources/hudson/slaves/ComputerLauncher/main_sv_SE.properties
- core/src/main/resources/hudson/model/Computer/delete.jelly
- core/src/main/resources/hudson/slaves/ComputerLauncher/main_es.properties
- core/src/main/resources/hudson/model/Slave/help-launcher.jelly
- core/src/main/resources/jenkins/security/s2m/MasterKillSwitchWarning/message.properties
- core/src/main/resources/hudson/slaves/SlaveComputer/systemInfo.jelly
- core/src/main/resources/lib/hudson/scriptConsole.jelly
- core/src/main/resources/hudson/model/Job/buildTimeTrend_zh_TW.properties
- core/src/main/resources/hudson/slaves/JNLPLauncher/main_fr.properties
- core/src/main/resources/hudson/PluginManager/_api.jelly
- core/src/main/resources/hudson/model/LoadStatistics/main.properties
- core/src/main/resources/hudson/model/Slave/help-launcher_pt_BR.properties
- core/src/main/resources/hudson/model/AbstractItem/noWorkspace.jelly
- core/src/main/resources/hudson/slaves/SlaveComputer/systemInfo_ja.properties
- core/src/main/resources/hudson/model/Job/buildTimeTrend_es.properties
- core/src/main/resources/hudson/model/Job/buildTimeTrend_da.properties
- core/src/main/resources/hudson/model/Job/buildTimeTrend_hu.properties
- core/src/main/resources/jenkins/model/CoreEnvironmentContributor/buildEnv.properties
- core/src/main/resources/hudson/slaves/ComputerLauncher/main_de.properties
- core/src/main/resources/hudson/slaves/SlaveComputer/already-launched.jelly
- core/src/main/resources/hudson/slaves/ComputerLauncher/main_ru.properties
- core/src/main/resources/hudson/slaves/JNLPLauncher/main.jelly
- core/src/main/resources/hudson/model/Slave/help-launcher_ja.properties
- core/src/main/resources/hudson/slaves/ComputerLauncher/main_fr.properties
- core/src/main/resources/jenkins/security/s2m/AdminCallableMonitor/message.properties
- core/src/main/resources/hudson/slaves/JNLPLauncher/main_ru.properties
- core/src/main/resources/hudson/slaves/JNLPLauncher/main_da.properties
- core/src/main/resources/hudson/slaves/JNLPLauncher/main_de.properties
- core/src/main/resources/hudson/model/Messages.properties
- core/src/main/resources/hudson/slaves/ComputerLauncher/main_da.properties
- core/src/main/resources/hudson/slaves/CommandLauncher/help.properties
- core/src/main/resources/hudson/model/Slave/help-launcher_zh_TW.properties
- core/src/main/resources/hudson/model/Slave/help-launcher_fr.properties
- core/src/main/resources/hudson/slaves/SlaveComputer/systemInfo_pt_BR.properties
- core/src/main/resources/hudson/slaves/JNLPLauncher/help.properties
- core/src/main/resources/hudson/model/Slave/help-launcher_de.properties
- core/src/main/resources/hudson/model/Computer/custom-jnlp.jelly
- core/src/main/resources/hudson/model/Computer/sidepanel.jelly
- core/src/main/resources/hudson/slaves/JNLPLauncher/main_zh_TW.properties
- core/src/main/resources/hudson/slaves/SlaveComputer/slave-agent.jnlp.jelly
- core/src/main/resources/hudson/slaves/ComputerLauncher/main.jelly
- core/src/main/resources/hudson/slaves/ComputerLauncher/main_bg.properties
- core/src/main/resources/hudson/slaves/DumbSlave/newInstanceDetail.properties
- core/src/main/resources/jenkins/security/s2m/AdminWhitelistRule/index.jelly
- core/src/main/resources/hudson/model/Job/buildTimeTrend_ja.properties
- core/src/main/resources/hudson/slaves/Messages.properties
- core/src/main/resources/hudson/model/Job/buildTimeTrend_ru.properties
- core/src/main/resources/hudson/model/Job/buildTimeTrend_pt_BR.properties
- core/src/main/resources/jenkins/security/s2m/AdminWhitelistRule/index_pt_BR.properties
- core/src/main/resources/jenkins/model/Jenkins/systemInfo.properties
- core/src/main/resources/hudson/slaves/JNLPLauncher/main_ja.properties
- core/src/main/resources/hudson/model/Slave/help-launcher_tr.properties
- core/src/main/resources/lib/form/slave-mode.jelly
- core/src/main/resources/hudson/model/Job/buildTimeTrend_uk.properties
- core/src/main/resources/jenkins/model/Jenkins/configureExecutors.jelly
- core/src/main/resources/hudson/model/Slave/help-launcher_es.properties
- core/src/main/resources/hudson/model/Job/buildTimeTrend_fr.properties
- core/src/main/resources/hudson/slaves/ComputerLauncher/main_pt_BR.properties
- core/src/main/resources/hudson/tools/Messages.properties
- core/src/main/resources/hudson/node_monitors/MonitorMarkedNodeOffline/message.properties
- core/src/main/resources/hudson/model/Computer/_script.jelly
- core/src/main/resources/hudson/slaves/ComputerLauncher/main_ja.properties
- core/src/main/resources/jenkins/security/s2m/AdminWhitelistRule/index_ja.properties
- core/src/main/resources/hudson/model/Slave/help-launcher_da.properties
- core/src/main/resources/hudson/model/Job/buildTimeTrend_ko.properties
- core/src/main/resources/hudson/slaves/JNLPLauncher/main_pt_BR.properties
- core/src/main/resources/hudson/model/Job/buildTimeTrend_sk.properties
- core/src/main/resources/hudson/lifecycle/Messages.properties
amuniz : 317d788eff4726dffd73b88caf12bd2295cc5951
Files :
- test/src/test/java/hudson/model/ComputerTest.java
- test/src/test/java/hudson/cli/UpdateNodeCommandTest.java
- test/src/test/java/hudson/cli/GetNodeCommandTest.java
- test/src/test/java/hudson/cli/DeleteNodeCommandTest.java
- test/src/test/java/hudson/cli/OnlineNodeCommandTest.java
- test/src/test/java/hudson/cli/CreateNodeCommandTest.java
amuniz : 981db8b586603163c872dda495d4ca6312f45531
Files :
- core/src/main/resources/hudson/node_monitors/AbstractDiskSpaceMonitor/help-freeSpaceThreshold_de.html
- core/src/main/resources/hudson/model/AbstractItem/help-slaveAffinity_zh_TW.html
- core/src/main/resources/hudson/slaves/CommandLauncher/help-command_zh_TW.html
- core/src/main/resources/hudson/model/AbstractItem/help-slaveAffinity_tr.html
- core/src/main/resources/hudson/security/GlobalSecurityConfiguration/help-slaveAgentPort_tr.html
- core/src/main/resources/hudson/model/Node/help-name_pt_BR.html
- core/src/main/resources/hudson/slaves/CommandLauncher/help-command_pt_BR.html
- core/src/main/resources/hudson/node_monitors/SwapSpaceMonitor/help_zh_TW.html
- core/src/main/resources/hudson/slaves/CommandLauncher/help-command_tr.html
- core/src/main/resources/hudson/model/AbstractItem/help-slaveAffinity_pt_BR.html
- core/src/main/resources/hudson/node_monitors/SwapSpaceMonitor/help_de.html
- core/src/main/resources/hudson/security/GlobalSecurityConfiguration/help-slaveAgentPort_pt_BR.html
- core/src/main/resources/hudson/model/Node/help-numExecutors_tr.html
- core/src/main/resources/hudson/tools/AbstractCommandInstaller/help-command_zh_TW.html
- core/src/main/resources/hudson/model/Node/help-numExecutors_zh_TW.html
- core/src/main/resources/hudson/model/Node/help-labelString_tr.html
- core/src/main/resources/hudson/security/GlobalSecurityConfiguration/help-slaveAgentPort_de.html
- core/src/main/resources/hudson/model/Node/help-labelString_zh_TW.html
- core/src/main/resources/hudson/model/Node/help-labelString_pt_BR.html
- core/src/main/resources/hudson/tools/ZipExtractionInstaller/help-url_de.html
- core/src/main/resources/hudson/model/Slave/help-remoteFS_zh_TW.html
- core/src/main/resources/hudson/tools/AbstractCommandInstaller/help-command_de.html
- core/src/main/resources/hudson/model/Node/help-name_de.html
- core/src/main/resources/hudson/slaves/AbstractCloudImpl/help-instanceCapStr_zh_TW.html
- core/src/main/resources/hudson/model/Node/help-name_zh_TW.html
- core/src/main/resources/hudson/node_monitors/TemporarySpaceMonitor/help_zh_TW.html
- rename
- core/src/main/resources/hudson/node_monitors/TemporarySpaceMonitor/help_de.html
- core/src/main/resources/hudson/model/Slave/help-remoteFS_tr.html
- core/src/main/resources/hudson/model/Node/help-numExecutors_de.html
- core/src/main/resources/hudson/model/AbstractProject/help-label_zh_TW.html
- core/src/main/resources/hudson/model/Node/help-labelString_de.html
- core/src/main/resources/hudson/model/Node/help-name_tr.html
- core/src/main/resources/hudson/tools/InstallSourceProperty/help_zh_TW.html
- core/src/main/resources/hudson/node_monitors/ArchitectureMonitor/help_zh_TW.html
- core/src/main/resources/hudson/slaves/JNLPLauncher/help-vmargs_zh_TW.html
- core/src/main/resources/hudson/model/UsageStatistics/help-usageStatisticsCollected_de.html
- core/src/main/resources/hudson/model/UsageStatistics/help-usageStatisticsCollected_zh_TW.html
- core/src/main/resources/hudson/tools/InstallSourceProperty/help_de.html
- core/src/main/resources/hudson/node_monitors/DiskSpaceMonitor/help_zh_TW.html
- core/src/main/resources/hudson/tools/ZipExtractionInstaller/help-url_zh_TW.html
- core/src/main/resources/hudson/node_monitors/ResponseTimeMonitor/help_de.html
- core/src/main/resources/hudson/model/Node/help-numExecutors_pt_BR.html
- core/src/main/resources/hudson/model/Slave/help-remoteFS_de.html
- core/src/main/resources/hudson/slaves/JNLPLauncher/help-vmargs_de.html
- core/src/main/resources/hudson/node_monitors/SwapSpaceMonitor/help.html
- core/src/main/resources/hudson/node_monitors/DiskSpaceMonitor/help_de.html
- core/src/main/resources/hudson/model/AbstractItem/help-slaveAffinity_de.html
- core/src/main/resources/hudson/node_monitors/AbstractDiskSpaceMonitor/help-freeSpaceThreshold_zh_TW.html
- core/src/main/resources/hudson/slaves/CommandLauncher/help-command_de.html
- core/src/main/resources/hudson/model/AbstractItem/help-slaveAffinity_de.html.lang,slave_rename
- core/src/main/resources/hudson/security/GlobalSecurityConfiguration/help-slaveAgentPort_zh_TW.html
- core/src/main/resources/hudson/node_monitors/ClockMonitor/help_de.html
- core/src/main/resources/hudson/node_monitors/ArchitectureMonitor/help_de.html
- core/src/main/resources/hudson/model/Slave/help-remoteFS_pt_BR.html
- core/src/main/resources/hudson/node_monitors/ResponseTimeMonitor/help_zh_TW.html
- core/src/main/resources/jenkins/model/Jenkins/help-rawWorkspaceDir_zh_TW.html
I thought I'd mention this here, as it's somewhat related...
This wording change will be released with Jenkins 2.0, where we'll be prompting users to install a set of plugins recommended by the community.
However, a number of these plugins still use "slave" rather than "agent", so I intend to try and fix this (as far as possible) for plugins high up on the recommended plugin list. For anybody interested in helping out, see JENKINS-33369.
Has there been any progress on this issue? It seems that not much has happened in the last few years.
My company is making a concerted effort to do a terminology sweep of its own. Removing master/slave terminology from Jenkins is part of that.
This specific change was done 4 years ago (the "slave" term was replaced by "agent").
There is now an ongoing initiative to replace the term "master" (see the mailing list thread about it).
I wondered last year when someone would notice the terminology in Jenkins. It took longer than I expected.