Bug 1037532 - "mozversion should have documentation on how to use its API". r=wlachance

This commit is contained in:
Arnav Sharma 2014-07-16 12:56:00 +02:00
Родитель 95530384be
Коммит 3db8eb771f
1 изменённых файлов: 21 добавлений и 0 удалений

Просмотреть файл

@ -12,6 +12,27 @@ API Usage
.. automodule:: mozversion
:members: get_version
Examples
````````
Firefox::
import mozversion
version = mozversion.get_version(binary='/path/to/firefox-bin')
for (key, value) in sorted(version.items()):
if value:
print '%s: %s' % (key, value)
Firefox for Android::
version = mozversion.get_version(binary='path/to/firefox.apk')
print version['application_changeset'] # gets hg revision of build
FirefoxOS::
version = mozversion.get_version(sources='path/to/sources.xml', dm_type='adb')
print version['gaia_changeset'] # gets gaia git revision
Command Line Usage
------------------