Bug 1346025 - Move 'python/compare-locales' documentation and mach command to 'tools/compare-locales', r=Pike

MozReview-Commit-ID: bkrH4YAD7S

--HG--
rename : python/compare-locales/docs/glossary.rst => tools/compare-locales/docs/glossary.rst
rename : python/compare-locales/docs/index.rst => tools/compare-locales/docs/index.rst
rename : python/compare-locales/mach_commands.py => tools/compare-locales/mach_commands.py
extra : rebase_source : f1e86ef137a4f7765c5f4917121707bea900646c
This commit is contained in:
Andrew Halberstadt 2017-06-06 10:00:51 -04:00
parent 87a9dfd869
commit 5af47c56e4
6 changed files with 8 additions and 17 deletions

View File

@ -43,7 +43,6 @@ MACH_MODULES = [
'python/mach_commands.py',
'python/mach/mach/commands/commandinfo.py',
'python/mach/mach/commands/settings.py',
'python/compare-locales/mach_commands.py',
'python/mozboot/mozboot/mach_commands.py',
'python/mozbuild/mozbuild/mach_commands.py',
'python/mozbuild/mozbuild/backend/mach_commands.py',
@ -60,6 +59,7 @@ MACH_MODULES = [
'testing/talos/mach_commands.py',
'testing/web-platform/mach_commands.py',
'testing/xpcshell/mach_commands.py',
'tools/compare-locales/mach_commands.py',
'tools/docs/mach_commands.py',
'tools/lint/mach_commands.py',
'tools/mach_commands.py',

View File

@ -1,16 +0,0 @@
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
# vim: set filetype=python:
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
with Files('compare_locales/**'):
BUG_COMPONENT = ('Localization Infrastructure and Tools', 'compare-locales')
with Files('docs/**'):
BUG_COMPONENT = ('Mozilla Localizations', 'Documentation')
# SPHINX_PYTHON_PACKAGE_DIRS += [
# 'compare_locales',
# ]
SPHINX_TREES['.'] = 'docs'

View File

@ -7,6 +7,12 @@
with Files("**"):
BUG_COMPONENT = ("Core", "General")
with Files("compare-locales/docs/**"):
BUG_COMPONENT = ('Mozilla Localizations', 'Documentation')
with Files("compare-locales/mach_commands.py"):
BUG_COMPONENT = ("Localization Infrastructure and Tools", "compare-locales")
with Files("coverity/**"):
BUG_COMPONENT = ("Core", "Rewriting and Analysis")
@ -38,3 +44,4 @@ with Files("update-packaging/**"):
BUG_COMPONENT = ("Release Engineering", "Other")
SPHINX_TREES['lint'] = 'lint/docs'
SPHINX_TREES['compare-locales'] = 'compare-locales/docs'