jenkins-bot has submitted this change and it was merged.

Change subject: Renamed /job to /jobqueue
......................................................................


Renamed /job to /jobqueue

Change-Id: I4c8a2b42140630838867c77a70d45ba14b5d95e2
---
M includes/AutoLoader.php
R includes/jobqueue/Job.php
R includes/jobqueue/JobQueue.php
R includes/jobqueue/JobQueueDB.php
R includes/jobqueue/JobQueueFederated.php
R includes/jobqueue/JobQueueGroup.php
R includes/jobqueue/JobQueueRedis.php
R includes/jobqueue/JobSpecification.php
R includes/jobqueue/README
R includes/jobqueue/aggregator/JobQueueAggregator.php
R includes/jobqueue/aggregator/JobQueueAggregatorMemc.php
R includes/jobqueue/aggregator/JobQueueAggregatorRedis.php
R includes/jobqueue/jobs/AssembleUploadChunksJob.php
R includes/jobqueue/jobs/DoubleRedirectJob.php
R includes/jobqueue/jobs/DuplicateJob.php
R includes/jobqueue/jobs/EmaillingJob.php
R includes/jobqueue/jobs/EnotifNotifyJob.php
R includes/jobqueue/jobs/HTMLCacheUpdateJob.php
R includes/jobqueue/jobs/NullJob.php
R includes/jobqueue/jobs/PublishStashedFileJob.php
R includes/jobqueue/jobs/RefreshLinksJob.php
R includes/jobqueue/jobs/RefreshLinksJob2.php
R includes/jobqueue/jobs/UploadFromUrlJob.php
R includes/jobqueue/utils/BacklinkJobUtils.php
24 files changed, 27 insertions(+), 27 deletions(-)

Approvals:
  Siebrand: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/includes/AutoLoader.php b/includes/AutoLoader.php
index cfddb72..c0c244a 100644
--- a/includes/AutoLoader.php
+++ b/includes/AutoLoader.php
@@ -657,35 +657,35 @@
        'WebInstallerPage' => 'includes/installer/WebInstallerPage.php',
 
        # includes/job
-       'IJobSpecification' => 'includes/job/JobSpecification.php',
-       'Job' => 'includes/job/Job.php',
-       'JobQueue' => 'includes/job/JobQueue.php',
-       'JobQueueAggregator' => 
'includes/job/aggregator/JobQueueAggregator.php',
-       'JobQueueAggregatorMemc' => 
'includes/job/aggregator/JobQueueAggregatorMemc.php',
-       'JobQueueAggregatorRedis' => 
'includes/job/aggregator/JobQueueAggregatorRedis.php',
-       'JobQueueDB' => 'includes/job/JobQueueDB.php',
-       'JobQueueConnectionError' => 'includes/job/JobQueue.php',
-       'JobQueueError' => 'includes/job/JobQueue.php',
-       'JobQueueGroup' => 'includes/job/JobQueueGroup.php',
-       'JobQueueFederated' => 'includes/job/JobQueueFederated.php',
-       'JobQueueRedis' => 'includes/job/JobQueueRedis.php',
-       'JobSpecification' => 'includes/job/JobSpecification.php',
+       'IJobSpecification' => 'includes/jobqueue/JobSpecification.php',
+       'Job' => 'includes/jobqueue/Job.php',
+       'JobQueue' => 'includes/jobqueue/JobQueue.php',
+       'JobQueueAggregator' => 
'includes/jobqueue/aggregator/JobQueueAggregator.php',
+       'JobQueueAggregatorMemc' => 
'includes/jobqueue/aggregator/JobQueueAggregatorMemc.php',
+       'JobQueueAggregatorRedis' => 
'includes/jobqueue/aggregator/JobQueueAggregatorRedis.php',
+       'JobQueueDB' => 'includes/jobqueue/JobQueueDB.php',
+       'JobQueueConnectionError' => 'includes/jobqueue/JobQueue.php',
+       'JobQueueError' => 'includes/jobqueue/JobQueue.php',
+       'JobQueueGroup' => 'includes/jobqueue/JobQueueGroup.php',
+       'JobQueueFederated' => 'includes/jobqueue/JobQueueFederated.php',
+       'JobQueueRedis' => 'includes/jobqueue/JobQueueRedis.php',
+       'JobSpecification' => 'includes/jobqueue/JobSpecification.php',
 
-       # includes/job/jobs
-       'DoubleRedirectJob' => 'includes/job/jobs/DoubleRedirectJob.php',
-       'DuplicateJob' => 'includes/job/jobs/DuplicateJob.php',
-       'EmaillingJob' => 'includes/job/jobs/EmaillingJob.php',
-       'EnotifNotifyJob' => 'includes/job/jobs/EnotifNotifyJob.php',
-       'HTMLCacheUpdateJob' => 'includes/job/jobs/HTMLCacheUpdateJob.php',
-       'NullJob' => 'includes/job/jobs/NullJob.php',
-       'RefreshLinksJob' => 'includes/job/jobs/RefreshLinksJob.php',
-       'RefreshLinksJob2' => 'includes/job/jobs/RefreshLinksJob2.php',
-       'UploadFromUrlJob' => 'includes/job/jobs/UploadFromUrlJob.php',
-       'AssembleUploadChunksJob' => 
'includes/job/jobs/AssembleUploadChunksJob.php',
-       'PublishStashedFileJob' => 
'includes/job/jobs/PublishStashedFileJob.php',
+       # includes/jobqueue/jobs
+       'DoubleRedirectJob' => 'includes/jobqueue/jobs/DoubleRedirectJob.php',
+       'DuplicateJob' => 'includes/jobqueue/jobs/DuplicateJob.php',
+       'EmaillingJob' => 'includes/jobqueue/jobs/EmaillingJob.php',
+       'EnotifNotifyJob' => 'includes/jobqueue/jobs/EnotifNotifyJob.php',
+       'HTMLCacheUpdateJob' => 'includes/jobqueue/jobs/HTMLCacheUpdateJob.php',
+       'NullJob' => 'includes/jobqueue/jobs/NullJob.php',
+       'RefreshLinksJob' => 'includes/jobqueue/jobs/RefreshLinksJob.php',
+       'RefreshLinksJob2' => 'includes/jobqueue/jobs/RefreshLinksJob2.php',
+       'UploadFromUrlJob' => 'includes/jobqueue/jobs/UploadFromUrlJob.php',
+       'AssembleUploadChunksJob' => 
'includes/jobqueue/jobs/AssembleUploadChunksJob.php',
+       'PublishStashedFileJob' => 
'includes/jobqueue/jobs/PublishStashedFileJob.php',
 
-       # includes/job/utils
-       'BacklinkJobUtils' => 'includes/job/utils/BacklinkJobUtils.php',
+       # includes/jobqueue/utils
+       'BacklinkJobUtils' => 'includes/jobqueue/utils/BacklinkJobUtils.php',
 
        # includes/json
        'FormatJson' => 'includes/json/FormatJson.php',
diff --git a/includes/job/Job.php b/includes/jobqueue/Job.php
similarity index 100%
rename from includes/job/Job.php
rename to includes/jobqueue/Job.php
diff --git a/includes/job/JobQueue.php b/includes/jobqueue/JobQueue.php
similarity index 100%
rename from includes/job/JobQueue.php
rename to includes/jobqueue/JobQueue.php
diff --git a/includes/job/JobQueueDB.php b/includes/jobqueue/JobQueueDB.php
similarity index 100%
rename from includes/job/JobQueueDB.php
rename to includes/jobqueue/JobQueueDB.php
diff --git a/includes/job/JobQueueFederated.php 
b/includes/jobqueue/JobQueueFederated.php
similarity index 100%
rename from includes/job/JobQueueFederated.php
rename to includes/jobqueue/JobQueueFederated.php
diff --git a/includes/job/JobQueueGroup.php 
b/includes/jobqueue/JobQueueGroup.php
similarity index 100%
rename from includes/job/JobQueueGroup.php
rename to includes/jobqueue/JobQueueGroup.php
diff --git a/includes/job/JobQueueRedis.php 
b/includes/jobqueue/JobQueueRedis.php
similarity index 100%
rename from includes/job/JobQueueRedis.php
rename to includes/jobqueue/JobQueueRedis.php
diff --git a/includes/job/JobSpecification.php 
b/includes/jobqueue/JobSpecification.php
similarity index 100%
rename from includes/job/JobSpecification.php
rename to includes/jobqueue/JobSpecification.php
diff --git a/includes/job/README b/includes/jobqueue/README
similarity index 100%
rename from includes/job/README
rename to includes/jobqueue/README
diff --git a/includes/job/aggregator/JobQueueAggregator.php 
b/includes/jobqueue/aggregator/JobQueueAggregator.php
similarity index 100%
rename from includes/job/aggregator/JobQueueAggregator.php
rename to includes/jobqueue/aggregator/JobQueueAggregator.php
diff --git a/includes/job/aggregator/JobQueueAggregatorMemc.php 
b/includes/jobqueue/aggregator/JobQueueAggregatorMemc.php
similarity index 100%
rename from includes/job/aggregator/JobQueueAggregatorMemc.php
rename to includes/jobqueue/aggregator/JobQueueAggregatorMemc.php
diff --git a/includes/job/aggregator/JobQueueAggregatorRedis.php 
b/includes/jobqueue/aggregator/JobQueueAggregatorRedis.php
similarity index 100%
rename from includes/job/aggregator/JobQueueAggregatorRedis.php
rename to includes/jobqueue/aggregator/JobQueueAggregatorRedis.php
diff --git a/includes/job/jobs/AssembleUploadChunksJob.php 
b/includes/jobqueue/jobs/AssembleUploadChunksJob.php
similarity index 100%
rename from includes/job/jobs/AssembleUploadChunksJob.php
rename to includes/jobqueue/jobs/AssembleUploadChunksJob.php
diff --git a/includes/job/jobs/DoubleRedirectJob.php 
b/includes/jobqueue/jobs/DoubleRedirectJob.php
similarity index 100%
rename from includes/job/jobs/DoubleRedirectJob.php
rename to includes/jobqueue/jobs/DoubleRedirectJob.php
diff --git a/includes/job/jobs/DuplicateJob.php 
b/includes/jobqueue/jobs/DuplicateJob.php
similarity index 100%
rename from includes/job/jobs/DuplicateJob.php
rename to includes/jobqueue/jobs/DuplicateJob.php
diff --git a/includes/job/jobs/EmaillingJob.php 
b/includes/jobqueue/jobs/EmaillingJob.php
similarity index 100%
rename from includes/job/jobs/EmaillingJob.php
rename to includes/jobqueue/jobs/EmaillingJob.php
diff --git a/includes/job/jobs/EnotifNotifyJob.php 
b/includes/jobqueue/jobs/EnotifNotifyJob.php
similarity index 100%
rename from includes/job/jobs/EnotifNotifyJob.php
rename to includes/jobqueue/jobs/EnotifNotifyJob.php
diff --git a/includes/job/jobs/HTMLCacheUpdateJob.php 
b/includes/jobqueue/jobs/HTMLCacheUpdateJob.php
similarity index 100%
rename from includes/job/jobs/HTMLCacheUpdateJob.php
rename to includes/jobqueue/jobs/HTMLCacheUpdateJob.php
diff --git a/includes/job/jobs/NullJob.php b/includes/jobqueue/jobs/NullJob.php
similarity index 100%
rename from includes/job/jobs/NullJob.php
rename to includes/jobqueue/jobs/NullJob.php
diff --git a/includes/job/jobs/PublishStashedFileJob.php 
b/includes/jobqueue/jobs/PublishStashedFileJob.php
similarity index 100%
rename from includes/job/jobs/PublishStashedFileJob.php
rename to includes/jobqueue/jobs/PublishStashedFileJob.php
diff --git a/includes/job/jobs/RefreshLinksJob.php 
b/includes/jobqueue/jobs/RefreshLinksJob.php
similarity index 100%
rename from includes/job/jobs/RefreshLinksJob.php
rename to includes/jobqueue/jobs/RefreshLinksJob.php
diff --git a/includes/job/jobs/RefreshLinksJob2.php 
b/includes/jobqueue/jobs/RefreshLinksJob2.php
similarity index 100%
rename from includes/job/jobs/RefreshLinksJob2.php
rename to includes/jobqueue/jobs/RefreshLinksJob2.php
diff --git a/includes/job/jobs/UploadFromUrlJob.php 
b/includes/jobqueue/jobs/UploadFromUrlJob.php
similarity index 100%
rename from includes/job/jobs/UploadFromUrlJob.php
rename to includes/jobqueue/jobs/UploadFromUrlJob.php
diff --git a/includes/job/utils/BacklinkJobUtils.php 
b/includes/jobqueue/utils/BacklinkJobUtils.php
similarity index 100%
rename from includes/job/utils/BacklinkJobUtils.php
rename to includes/jobqueue/utils/BacklinkJobUtils.php

-- 
To view, visit https://gerrit.wikimedia.org/r/118755
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: I4c8a2b42140630838867c77a70d45ba14b5d95e2
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/core
Gerrit-Branch: master
Gerrit-Owner: Aaron Schulz <[email protected]>
Gerrit-Reviewer: Siebrand <[email protected]>
Gerrit-Reviewer: jenkins-bot <>

_______________________________________________
MediaWiki-commits mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits

Reply via email to