gecko/services
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
..
cloudsync NO BUG - Fix reStructuredText warnings 2015-03-01 22:51:32 -08:00
common Bug 1147283 - Replace mozpack.path with mozpath. r=mshal 2015-03-27 08:13:16 +09:00
crypto Backout Bug 1132771 for spidermonkey build bustage on CLOSED TREE 2015-03-02 17:13:05 +05:30
datareporting Bug 1070709 - Collapse test-only moz.build files under services/ into ancestor moz.build files. r=mshal 2015-02-10 18:47:24 +02:00
docs NO BUG - Fix reStructuredText warnings 2015-03-01 22:51:32 -08:00
fxaccounts Bug 1139657 - Expose a method on FxAccounts for retrieving profile information. r=markh 2015-03-26 01:33:38 -07:00
healthreport Bug 1135543 - Part 4: Define DailyCrashesMeasurement6 containing main-crash-oom; r=bsmedberg 2015-03-14 18:59:21 +13:00
metrics Bug 1070709 - Collapse test-only moz.build files under services/ into ancestor moz.build files. r=mshal 2015-02-10 18:47:24 +02:00
mobileid Backout Bug 1114935 for causing bug 1144567. 2015-03-18 11:48:52 -07:00
sync Bug 1147270 - extract Sync's device name logic so it can be used by reading list. r=rnewman 2015-03-25 16:28:19 +11:00
moz.build Bug 993584 - Initial landing for CloudSync. r=rnewman 2014-09-04 21:44:00 +02:00