Jdlrobson has uploaded a new change for review.

  https://gerrit.wikimedia.org/r/120147

Change subject: Hygiene: Reorganise the repository by beta feature
......................................................................

Hygiene: Reorganise the repository by beta feature

Change-Id: Ieb989d0df7697fac817065cfddf5f3bfa6caaf63
---
M VectorBeta.php
R resources/fixedHeader/hamburger.js
R resources/fixedHeader/header.js
R resources/fixedHeader/header.less
R resources/fixedHeader/images/clock_gray.svg
R resources/fixedHeader/images/elipsis_gray.svg
R resources/fixedHeader/images/elipsis_white.svg
R resources/fixedHeader/images/hamburger.png
R resources/fixedHeader/images/hamburger.svg
R resources/fixedHeader/images/link_gray.svg
R resources/fixedHeader/images/lock_gray.svg
R resources/fixedHeader/images/magnifying_glass_gray.svg
R resources/fixedHeader/images/move_gray.svg
R resources/fixedHeader/images/page_gray.svg
R resources/fixedHeader/images/pencil_gray.svg
R resources/fixedHeader/images/pencil_locked_gray.svg
R resources/fixedHeader/images/pencil_white.svg
R resources/fixedHeader/images/print_gray.svg
R resources/fixedHeader/images/speechbubble_two_gray.svg
R resources/fixedHeader/images/star_gray.svg
R resources/fixedHeader/images/trash_gray.svg
R resources/fixedHeader/page-actions.less
R resources/fixedHeader/search-suggestions.less
R resources/mixins.less
R resources/typography/images/arrow-collapsed-ltr.png
R resources/typography/images/arrow-collapsed-ltr.svg
R resources/typography/images/arrow-collapsed-rtl.png
R resources/typography/images/arrow-collapsed-rtl.svg
R resources/typography/images/arrow-down-focus-icon.png
R resources/typography/images/arrow-down-focus-icon.svg
R resources/typography/images/arrow-down-icon.png
R resources/typography/images/arrow-down-icon.svg
R resources/typography/images/arrow-expanded.png
R resources/typography/images/arrow-expanded.svg
R resources/typography/images/bullet-icon.png
R resources/typography/images/clock_gray.png
R resources/typography/images/elipsis_gray.png
R resources/typography/images/elipsis_white.png
R resources/typography/images/external-link-ltr-icon.png
R resources/typography/images/external-link-rtl-icon.png
R resources/typography/images/link_gray.png
R resources/typography/images/lock_gray.png
R resources/typography/images/magnifying_glass_gray.png
R resources/typography/images/move.png
R resources/typography/images/move_gray.png
R resources/typography/images/page-fade.png
R resources/typography/images/page_gray.png
R resources/typography/images/pencil_gray.png
R resources/typography/images/pencil_white.png
R resources/typography/images/portal-break-ltr.png
R resources/typography/images/portal-break-rtl.png
R resources/typography/images/portal-break.png
R resources/typography/images/print_gray.png
R resources/typography/images/search-fade.png
R resources/typography/images/search-ltr.png
R resources/typography/images/search-ltr.svg
R resources/typography/images/search-rtl.png
R resources/typography/images/search-rtl.svg
R resources/typography/images/speechbubble_two_gray.png
R resources/typography/images/star_green.png
R resources/typography/images/star_green.svg
R resources/typography/images/tab-break.png
R resources/typography/images/tab-current-fade.png
R resources/typography/images/tab-normal-fade.png
R resources/typography/images/trash_gray.png
R resources/typography/images/unwatch-icon-hl.png
R resources/typography/images/unwatch-icon-hl.svg
R resources/typography/images/unwatch-icon.png
R resources/typography/images/unwatch-icon.svg
R resources/typography/images/user-icon.png
R resources/typography/images/user-icon.svg
R resources/typography/images/watch-icon-hl.png
R resources/typography/images/watch-icon-hl.svg
R resources/typography/images/watch-icon-loading.gif
R resources/typography/images/watch-icon-loading.png
R resources/typography/images/watch-icon-loading.svg
R resources/typography/images/watch-icon.png
R resources/typography/images/watch-icon.svg
R resources/typography/images/watch-icons.png
R resources/typography/screen-beta.less
R resources/typography/styles.less
R resources/typography/thumbnails.less
R resources/variables-beta.less
83 files changed, 11 insertions(+), 11 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/VectorBeta 
refs/changes/47/120147/1

diff --git a/VectorBeta.php b/VectorBeta.php
index 58bf92a..525b4a0 100644
--- a/VectorBeta.php
+++ b/VectorBeta.php
@@ -49,14 +49,14 @@
 $wgResourceModules = array_merge( $wgResourceModules, array(
        'skins.vector.beta' => $wgVBResourceBoilerplate + array(
                'styles' => array(
-                       'less/styles.less',
+                       'resources/typography/styles.less',
                ),
        ),
 
        'skins.vector.header.beta' => $wgVBResourceBoilerplate + array(
                'styles' => array(
-                       'less/header.less',
-                       'less/page-actions.less',
+                       'resources/fixedHeader/header.less',
+                       'resources/fixedHeader/page-actions.less',
                ),
                // Other ensures this loads after the Vector skin styles
                'group' => 'other',
@@ -67,11 +67,11 @@
                        'jquery.throttle-debounce',
                ),
                'scripts' => array(
-                       'javascripts/header.js',
-                       'javascripts/hamburger.js',
+                       'resources/fixedheader/header.js',
+                       'resources/fixedheader/hamburger.js',
                ),
                'styles' => array(
-                       'less/search-suggestions.less',
+                       'resources/fixedheader/search-suggestions.less',
                ),
        ),
 
diff --git a/javascripts/hamburger.js b/resources/fixedHeader/hamburger.js
similarity index 100%
rename from javascripts/hamburger.js
rename to resources/fixedHeader/hamburger.js
diff --git a/javascripts/header.js b/resources/fixedHeader/header.js
similarity index 100%
rename from javascripts/header.js
rename to resources/fixedHeader/header.js
diff --git a/less/header.less b/resources/fixedHeader/header.less
similarity index 98%
rename from less/header.less
rename to resources/fixedHeader/header.less
index c2cd175..71cf535 100644
--- a/less/header.less
+++ b/resources/fixedHeader/header.less
@@ -1,5 +1,5 @@
-@import 'variables-beta';
-@import "mixins";
+@import '../variables-beta';
+@import "../mixins";
 
 // FIXME: Fail.
 #mw-notification-area {
diff --git a/less/images/clock_gray.svg 
b/resources/fixedHeader/images/clock_gray.svg
similarity index 100%
rename from less/images/clock_gray.svg
rename to resources/fixedHeader/images/clock_gray.svg
diff --git a/less/images/elipsis_gray.svg 
b/resources/fixedHeader/images/elipsis_gray.svg
similarity index 100%
rename from less/images/elipsis_gray.svg
rename to resources/fixedHeader/images/elipsis_gray.svg
diff --git a/less/images/elipsis_white.svg 
b/resources/fixedHeader/images/elipsis_white.svg
similarity index 100%
rename from less/images/elipsis_white.svg
rename to resources/fixedHeader/images/elipsis_white.svg
diff --git a/less/images/hamburger.png 
b/resources/fixedHeader/images/hamburger.png
similarity index 100%
rename from less/images/hamburger.png
rename to resources/fixedHeader/images/hamburger.png
Binary files differ
diff --git a/less/images/hamburger.svg 
b/resources/fixedHeader/images/hamburger.svg
similarity index 100%
rename from less/images/hamburger.svg
rename to resources/fixedHeader/images/hamburger.svg
diff --git a/less/images/link_gray.svg 
b/resources/fixedHeader/images/link_gray.svg
similarity index 100%
rename from less/images/link_gray.svg
rename to resources/fixedHeader/images/link_gray.svg
diff --git a/less/images/lock_gray.svg 
b/resources/fixedHeader/images/lock_gray.svg
similarity index 100%
rename from less/images/lock_gray.svg
rename to resources/fixedHeader/images/lock_gray.svg
diff --git a/less/images/magnifying_glass_gray.svg 
b/resources/fixedHeader/images/magnifying_glass_gray.svg
similarity index 100%
rename from less/images/magnifying_glass_gray.svg
rename to resources/fixedHeader/images/magnifying_glass_gray.svg
diff --git a/less/images/move_gray.svg 
b/resources/fixedHeader/images/move_gray.svg
similarity index 100%
rename from less/images/move_gray.svg
rename to resources/fixedHeader/images/move_gray.svg
diff --git a/less/images/page_gray.svg 
b/resources/fixedHeader/images/page_gray.svg
similarity index 100%
rename from less/images/page_gray.svg
rename to resources/fixedHeader/images/page_gray.svg
diff --git a/less/images/pencil_gray.svg 
b/resources/fixedHeader/images/pencil_gray.svg
similarity index 100%
rename from less/images/pencil_gray.svg
rename to resources/fixedHeader/images/pencil_gray.svg
diff --git a/less/images/pencil_locked_gray.svg 
b/resources/fixedHeader/images/pencil_locked_gray.svg
similarity index 100%
rename from less/images/pencil_locked_gray.svg
rename to resources/fixedHeader/images/pencil_locked_gray.svg
diff --git a/less/images/pencil_white.svg 
b/resources/fixedHeader/images/pencil_white.svg
similarity index 100%
rename from less/images/pencil_white.svg
rename to resources/fixedHeader/images/pencil_white.svg
diff --git a/less/images/print_gray.svg 
b/resources/fixedHeader/images/print_gray.svg
similarity index 100%
rename from less/images/print_gray.svg
rename to resources/fixedHeader/images/print_gray.svg
diff --git a/less/images/speechbubble_two_gray.svg 
b/resources/fixedHeader/images/speechbubble_two_gray.svg
similarity index 100%
rename from less/images/speechbubble_two_gray.svg
rename to resources/fixedHeader/images/speechbubble_two_gray.svg
diff --git a/less/images/star_gray.svg 
b/resources/fixedHeader/images/star_gray.svg
similarity index 100%
rename from less/images/star_gray.svg
rename to resources/fixedHeader/images/star_gray.svg
diff --git a/less/images/trash_gray.svg 
b/resources/fixedHeader/images/trash_gray.svg
similarity index 100%
rename from less/images/trash_gray.svg
rename to resources/fixedHeader/images/trash_gray.svg
diff --git a/less/page-actions.less b/resources/fixedHeader/page-actions.less
similarity index 98%
rename from less/page-actions.less
rename to resources/fixedHeader/page-actions.less
index 21aced8..81fcb99 100644
--- a/less/page-actions.less
+++ b/resources/fixedHeader/page-actions.less
@@ -1,4 +1,4 @@
-@import "mixins";
+@import "../mixins";
 
 .mw-icon {
        background-repeat: no-repeat;
diff --git a/less/search-suggestions.less 
b/resources/fixedHeader/search-suggestions.less
similarity index 96%
rename from less/search-suggestions.less
rename to resources/fixedHeader/search-suggestions.less
index 66ef621..6e921f5 100644
--- a/less/search-suggestions.less
+++ b/resources/fixedHeader/search-suggestions.less
@@ -1,4 +1,4 @@
-@import 'variables-beta';
+@import '../variables-beta';
 
 .suggestions-results,
 .suggestions,
diff --git a/less/mixins.less b/resources/mixins.less
similarity index 100%
rename from less/mixins.less
rename to resources/mixins.less
diff --git a/less/images/arrow-collapsed-ltr.png 
b/resources/typography/images/arrow-collapsed-ltr.png
similarity index 100%
rename from less/images/arrow-collapsed-ltr.png
rename to resources/typography/images/arrow-collapsed-ltr.png
Binary files differ
diff --git a/less/images/arrow-collapsed-ltr.svg 
b/resources/typography/images/arrow-collapsed-ltr.svg
similarity index 100%
rename from less/images/arrow-collapsed-ltr.svg
rename to resources/typography/images/arrow-collapsed-ltr.svg
diff --git a/less/images/arrow-collapsed-rtl.png 
b/resources/typography/images/arrow-collapsed-rtl.png
similarity index 100%
rename from less/images/arrow-collapsed-rtl.png
rename to resources/typography/images/arrow-collapsed-rtl.png
Binary files differ
diff --git a/less/images/arrow-collapsed-rtl.svg 
b/resources/typography/images/arrow-collapsed-rtl.svg
similarity index 100%
rename from less/images/arrow-collapsed-rtl.svg
rename to resources/typography/images/arrow-collapsed-rtl.svg
diff --git a/less/images/arrow-down-focus-icon.png 
b/resources/typography/images/arrow-down-focus-icon.png
similarity index 100%
rename from less/images/arrow-down-focus-icon.png
rename to resources/typography/images/arrow-down-focus-icon.png
Binary files differ
diff --git a/less/images/arrow-down-focus-icon.svg 
b/resources/typography/images/arrow-down-focus-icon.svg
similarity index 100%
rename from less/images/arrow-down-focus-icon.svg
rename to resources/typography/images/arrow-down-focus-icon.svg
diff --git a/less/images/arrow-down-icon.png 
b/resources/typography/images/arrow-down-icon.png
similarity index 100%
rename from less/images/arrow-down-icon.png
rename to resources/typography/images/arrow-down-icon.png
Binary files differ
diff --git a/less/images/arrow-down-icon.svg 
b/resources/typography/images/arrow-down-icon.svg
similarity index 100%
rename from less/images/arrow-down-icon.svg
rename to resources/typography/images/arrow-down-icon.svg
diff --git a/less/images/arrow-expanded.png 
b/resources/typography/images/arrow-expanded.png
similarity index 100%
rename from less/images/arrow-expanded.png
rename to resources/typography/images/arrow-expanded.png
Binary files differ
diff --git a/less/images/arrow-expanded.svg 
b/resources/typography/images/arrow-expanded.svg
similarity index 100%
rename from less/images/arrow-expanded.svg
rename to resources/typography/images/arrow-expanded.svg
diff --git a/less/images/bullet-icon.png 
b/resources/typography/images/bullet-icon.png
similarity index 100%
rename from less/images/bullet-icon.png
rename to resources/typography/images/bullet-icon.png
Binary files differ
diff --git a/less/images/clock_gray.png 
b/resources/typography/images/clock_gray.png
similarity index 100%
rename from less/images/clock_gray.png
rename to resources/typography/images/clock_gray.png
Binary files differ
diff --git a/less/images/elipsis_gray.png 
b/resources/typography/images/elipsis_gray.png
similarity index 100%
rename from less/images/elipsis_gray.png
rename to resources/typography/images/elipsis_gray.png
Binary files differ
diff --git a/less/images/elipsis_white.png 
b/resources/typography/images/elipsis_white.png
similarity index 100%
rename from less/images/elipsis_white.png
rename to resources/typography/images/elipsis_white.png
Binary files differ
diff --git a/less/images/external-link-ltr-icon.png 
b/resources/typography/images/external-link-ltr-icon.png
similarity index 100%
rename from less/images/external-link-ltr-icon.png
rename to resources/typography/images/external-link-ltr-icon.png
Binary files differ
diff --git a/less/images/external-link-rtl-icon.png 
b/resources/typography/images/external-link-rtl-icon.png
similarity index 100%
rename from less/images/external-link-rtl-icon.png
rename to resources/typography/images/external-link-rtl-icon.png
Binary files differ
diff --git a/less/images/link_gray.png 
b/resources/typography/images/link_gray.png
similarity index 100%
rename from less/images/link_gray.png
rename to resources/typography/images/link_gray.png
Binary files differ
diff --git a/less/images/lock_gray.png 
b/resources/typography/images/lock_gray.png
similarity index 100%
rename from less/images/lock_gray.png
rename to resources/typography/images/lock_gray.png
Binary files differ
diff --git a/less/images/magnifying_glass_gray.png 
b/resources/typography/images/magnifying_glass_gray.png
similarity index 100%
rename from less/images/magnifying_glass_gray.png
rename to resources/typography/images/magnifying_glass_gray.png
Binary files differ
diff --git a/less/images/move.png b/resources/typography/images/move.png
similarity index 100%
rename from less/images/move.png
rename to resources/typography/images/move.png
Binary files differ
diff --git a/less/images/move_gray.png 
b/resources/typography/images/move_gray.png
similarity index 100%
rename from less/images/move_gray.png
rename to resources/typography/images/move_gray.png
Binary files differ
diff --git a/less/images/page-fade.png 
b/resources/typography/images/page-fade.png
similarity index 100%
rename from less/images/page-fade.png
rename to resources/typography/images/page-fade.png
Binary files differ
diff --git a/less/images/page_gray.png 
b/resources/typography/images/page_gray.png
similarity index 100%
rename from less/images/page_gray.png
rename to resources/typography/images/page_gray.png
Binary files differ
diff --git a/less/images/pencil_gray.png 
b/resources/typography/images/pencil_gray.png
similarity index 100%
rename from less/images/pencil_gray.png
rename to resources/typography/images/pencil_gray.png
Binary files differ
diff --git a/less/images/pencil_white.png 
b/resources/typography/images/pencil_white.png
similarity index 100%
rename from less/images/pencil_white.png
rename to resources/typography/images/pencil_white.png
Binary files differ
diff --git a/less/images/portal-break-ltr.png 
b/resources/typography/images/portal-break-ltr.png
similarity index 100%
rename from less/images/portal-break-ltr.png
rename to resources/typography/images/portal-break-ltr.png
Binary files differ
diff --git a/less/images/portal-break-rtl.png 
b/resources/typography/images/portal-break-rtl.png
similarity index 100%
rename from less/images/portal-break-rtl.png
rename to resources/typography/images/portal-break-rtl.png
Binary files differ
diff --git a/less/images/portal-break.png 
b/resources/typography/images/portal-break.png
similarity index 100%
rename from less/images/portal-break.png
rename to resources/typography/images/portal-break.png
Binary files differ
diff --git a/less/images/print_gray.png 
b/resources/typography/images/print_gray.png
similarity index 100%
rename from less/images/print_gray.png
rename to resources/typography/images/print_gray.png
Binary files differ
diff --git a/less/images/search-fade.png 
b/resources/typography/images/search-fade.png
similarity index 100%
rename from less/images/search-fade.png
rename to resources/typography/images/search-fade.png
Binary files differ
diff --git a/less/images/search-ltr.png 
b/resources/typography/images/search-ltr.png
similarity index 100%
rename from less/images/search-ltr.png
rename to resources/typography/images/search-ltr.png
Binary files differ
diff --git a/less/images/search-ltr.svg 
b/resources/typography/images/search-ltr.svg
similarity index 100%
rename from less/images/search-ltr.svg
rename to resources/typography/images/search-ltr.svg
diff --git a/less/images/search-rtl.png 
b/resources/typography/images/search-rtl.png
similarity index 100%
rename from less/images/search-rtl.png
rename to resources/typography/images/search-rtl.png
Binary files differ
diff --git a/less/images/search-rtl.svg 
b/resources/typography/images/search-rtl.svg
similarity index 100%
rename from less/images/search-rtl.svg
rename to resources/typography/images/search-rtl.svg
diff --git a/less/images/speechbubble_two_gray.png 
b/resources/typography/images/speechbubble_two_gray.png
similarity index 100%
rename from less/images/speechbubble_two_gray.png
rename to resources/typography/images/speechbubble_two_gray.png
Binary files differ
diff --git a/less/images/star_green.png 
b/resources/typography/images/star_green.png
similarity index 100%
rename from less/images/star_green.png
rename to resources/typography/images/star_green.png
Binary files differ
diff --git a/less/images/star_green.svg 
b/resources/typography/images/star_green.svg
similarity index 100%
rename from less/images/star_green.svg
rename to resources/typography/images/star_green.svg
diff --git a/less/images/tab-break.png 
b/resources/typography/images/tab-break.png
similarity index 100%
rename from less/images/tab-break.png
rename to resources/typography/images/tab-break.png
Binary files differ
diff --git a/less/images/tab-current-fade.png 
b/resources/typography/images/tab-current-fade.png
similarity index 100%
rename from less/images/tab-current-fade.png
rename to resources/typography/images/tab-current-fade.png
Binary files differ
diff --git a/less/images/tab-normal-fade.png 
b/resources/typography/images/tab-normal-fade.png
similarity index 100%
rename from less/images/tab-normal-fade.png
rename to resources/typography/images/tab-normal-fade.png
Binary files differ
diff --git a/less/images/trash_gray.png 
b/resources/typography/images/trash_gray.png
similarity index 100%
rename from less/images/trash_gray.png
rename to resources/typography/images/trash_gray.png
Binary files differ
diff --git a/less/images/unwatch-icon-hl.png 
b/resources/typography/images/unwatch-icon-hl.png
similarity index 100%
rename from less/images/unwatch-icon-hl.png
rename to resources/typography/images/unwatch-icon-hl.png
Binary files differ
diff --git a/less/images/unwatch-icon-hl.svg 
b/resources/typography/images/unwatch-icon-hl.svg
similarity index 100%
rename from less/images/unwatch-icon-hl.svg
rename to resources/typography/images/unwatch-icon-hl.svg
diff --git a/less/images/unwatch-icon.png 
b/resources/typography/images/unwatch-icon.png
similarity index 100%
rename from less/images/unwatch-icon.png
rename to resources/typography/images/unwatch-icon.png
Binary files differ
diff --git a/less/images/unwatch-icon.svg 
b/resources/typography/images/unwatch-icon.svg
similarity index 100%
rename from less/images/unwatch-icon.svg
rename to resources/typography/images/unwatch-icon.svg
diff --git a/less/images/user-icon.png 
b/resources/typography/images/user-icon.png
similarity index 100%
rename from less/images/user-icon.png
rename to resources/typography/images/user-icon.png
Binary files differ
diff --git a/less/images/user-icon.svg 
b/resources/typography/images/user-icon.svg
similarity index 100%
rename from less/images/user-icon.svg
rename to resources/typography/images/user-icon.svg
diff --git a/less/images/watch-icon-hl.png 
b/resources/typography/images/watch-icon-hl.png
similarity index 100%
rename from less/images/watch-icon-hl.png
rename to resources/typography/images/watch-icon-hl.png
Binary files differ
diff --git a/less/images/watch-icon-hl.svg 
b/resources/typography/images/watch-icon-hl.svg
similarity index 100%
rename from less/images/watch-icon-hl.svg
rename to resources/typography/images/watch-icon-hl.svg
diff --git a/less/images/watch-icon-loading.gif 
b/resources/typography/images/watch-icon-loading.gif
similarity index 100%
rename from less/images/watch-icon-loading.gif
rename to resources/typography/images/watch-icon-loading.gif
Binary files differ
diff --git a/less/images/watch-icon-loading.png 
b/resources/typography/images/watch-icon-loading.png
similarity index 100%
rename from less/images/watch-icon-loading.png
rename to resources/typography/images/watch-icon-loading.png
Binary files differ
diff --git a/less/images/watch-icon-loading.svg 
b/resources/typography/images/watch-icon-loading.svg
similarity index 100%
rename from less/images/watch-icon-loading.svg
rename to resources/typography/images/watch-icon-loading.svg
diff --git a/less/images/watch-icon.png 
b/resources/typography/images/watch-icon.png
similarity index 100%
rename from less/images/watch-icon.png
rename to resources/typography/images/watch-icon.png
Binary files differ
diff --git a/less/images/watch-icon.svg 
b/resources/typography/images/watch-icon.svg
similarity index 100%
rename from less/images/watch-icon.svg
rename to resources/typography/images/watch-icon.svg
diff --git a/less/images/watch-icons.png 
b/resources/typography/images/watch-icons.png
similarity index 100%
rename from less/images/watch-icons.png
rename to resources/typography/images/watch-icons.png
Binary files differ
diff --git a/less/screen-beta.less b/resources/typography/screen-beta.less
similarity index 100%
rename from less/screen-beta.less
rename to resources/typography/screen-beta.less
diff --git a/less/styles.less b/resources/typography/styles.less
similarity index 92%
rename from less/styles.less
rename to resources/typography/styles.less
index 0d5b98a..e7eddba 100644
--- a/less/styles.less
+++ b/resources/typography/styles.less
@@ -1,6 +1,6 @@
 // Note Less will first look in local directory and if not present in core.
 @import "variables.less";
-@import "variables-beta.less";
+@import "../variables-beta.less";
 
 @media screen {
        @import "components/common.less";
diff --git a/less/thumbnails.less b/resources/typography/thumbnails.less
similarity index 100%
rename from less/thumbnails.less
rename to resources/typography/thumbnails.less
diff --git a/less/variables-beta.less b/resources/variables-beta.less
similarity index 100%
rename from less/variables-beta.less
rename to resources/variables-beta.less

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ieb989d0df7697fac817065cfddf5f3bfa6caaf63
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/VectorBeta
Gerrit-Branch: master
Gerrit-Owner: Jdlrobson <[email protected]>

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

Reply via email to