diff options
author | Ingela Anderton Andin <[email protected]> | 2014-03-21 15:22:21 +0100 |
---|---|---|
committer | Ingela Anderton Andin <[email protected]> | 2014-03-21 15:22:21 +0100 |
commit | 425a75a11ea58125b67ad56f4ed3ca65370a3e72 (patch) | |
tree | 80fa08785954c031c985557e9179a62c10de8a5d /system/doc | |
parent | 3c06b5b3cdde72453d97910889e38e91c1dd4870 (diff) | |
parent | 78ad5368f520c5fa6400d4f16909b23fe5225255 (diff) | |
download | otp-425a75a11ea58125b67ad56f4ed3ca65370a3e72.tar.gz otp-425a75a11ea58125b67ad56f4ed3ca65370a3e72.tar.bz2 otp-425a75a11ea58125b67ad56f4ed3ca65370a3e72.zip |
Merge branch 'master' of git-server:otp
Diffstat (limited to 'system/doc')
-rw-r--r-- | system/doc/system_principles/versions.xml | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/system/doc/system_principles/versions.xml b/system/doc/system_principles/versions.xml index 6bfa9d1eed..2bf0d18010 100644 --- a/system/doc/system_principles/versions.xml +++ b/system/doc/system_principles/versions.xml @@ -79,18 +79,18 @@ </section> <section><title>OTP Versions Table</title> - <p>The text file <c><OTP source root>/otp_versions.table</c> - part of the source code contains information about all OTP versions + <p>The text file <c><OTP source root>/otp_versions.table</c> that + is part of the source code contains information about all OTP versions from OTP 17.0 up to current OTP version. Each line contains information - about application versions part of a specific OTP version, and is on - the format:</p> + about application versions that are part of a specific OTP version, and + is on the format:</p> <pre> -<OtpVersion> : <ChangedAppVersions> # <UnchangedAppVersions> +<OtpVersion> : <ChangedAppVersions> # <UnchangedAppVersions> : </pre> <p><c><OtpVersion></c> is on the format <c>OTP-<VSN></c>, i.e., the same as the git tag used to identify the source. <c><ChangedAppVersions></c> and <c><UnchangedAppVersions></c> - are white space separated lists of application versions on the + are space separated lists of application versions on the format <c><application>-<vsn></c>. <c><ChangedAppVersions></c> corresponds to changed applications with new version numbers in this OTP version, and @@ -99,14 +99,15 @@ not at the same time. If <ChangedAppVersions> is empty, no changes has been made that change the build result of any application. This could for example be a pure bug fix of the build system. The order of lines - is undefined.</p> + is undefined. All white space characters in this file are either space + (character 32) or line-break (character 10).</p> <p>Using ordinary UNIX tools like <c>sed</c> and <c>grep</c> one can easily find answers to various questions like:</p> <taglist> <tag>Which OTP versions are <c>kernel-3.0</c> part of?</tag> - <item><p><c> $ grep 'kernel-3\.0' otp_versions.table</c></p></item> + <item><p><c> $ grep ' kernel-3\.0 ' otp_versions.table</c></p></item> <tag>In which OTP version was <c>kernel-3.0</c> introduced?</tag> - <item><p><c> $ sed 's/#.*//;/kernel-3\.0/!d' otp_versions.table</c></p></item> + <item><p><c> $ sed 's/#.*//;/ kernel-3\.0 /!d' otp_versions.table</c></p></item> </taglist> <p>The above commands give a bit more information than the exact answers, but adequate information when manually searching for answers to these |