gecko/tools
Mike Hommey 6ee628d425 Bug 1147283 - Replace mozpack.path with mozpath. r=mshal
Back when mozpack.path was added, it was used as:

  import mozpack.path
  mozpack.path.func()

Nowadays, the common idiom is:

  import mozpack.path as mozpath
  mozpath.func()

because it's shorter.

$ git grep mozpath\\. | wc -l
423
$ git grep mozpack.path\\. | wc -l
123

This change was done with:
$ git grep -l mozpack.path\\. | xargs sed -i 's/mozpack\.path\./mozpath./g'
$ git grep -l 'import mozpack.path$' | xargs sed -i 's/import mozpack.path$/\0 as mozpath/'
$ (pat='import mozpack.path as mozpath'; git grep -l "$pat" | xargs sed -i "1,/$pat/b;/$pat/d")
2015-03-27 08:13:16 +09:00
..
bloatview Bug 1089441 - Move bloattable.pl and bloatdiff.pl into tools/bloatview/. r=dbaron. 2014-11-13 14:02:11 -08:00
docs Bug 1115278 - Add virtualenv to Sphinx environment; r=glandium 2014-12-24 10:17:02 -08:00
jprof Bug 1082265 followup - One more comment tweak. 2014-10-15 14:50:57 -07:00
leak-gauge Bug 1080291 (part 5) - Rename tools/footprint/ as tools/leak-gauge/. r=dbaron. 2014-10-12 17:29:35 -07:00
memory Bug 1089441 - Move bloattable.pl and bloatdiff.pl into tools/bloatview/. r=dbaron. 2014-11-13 14:02:11 -08:00
mercurial Bug 1077326 - Change mercurial-setup process by adding run test for each external extension before prompting about it. r=glandium 2014-11-25 10:53:00 +01:00
profiler Bug 1146718 - Split the 'J' tag in the profiler into 'J' (JIT frames without opt info) and 'O' (with opt info). (r=djvj) 2015-03-24 18:49:16 -07:00
quitter Bug 1082450 - Fix quitter extension. r=gabor 2014-10-15 15:05:08 +02:00
rb Bug 1089441 - Update the refcount-balancer docs link. r=dbaron. 2014-11-13 14:02:21 -08:00
update-packaging Bug 1137756 - Use absolute paths in complete-patch.patch. r=gps 2015-02-27 17:49:29 +01:00
mach_commands.py Bug 1147283 - Replace mozpack.path with mozpath. r=mshal 2015-03-27 08:13:16 +09:00