1 CDD GENERATION README 2 ======================= 3 Or, how I stopped hating the cdd and learned to love html-to-pdf conversions. 4 5 6 OVERVIEW 7 ================== 8 TL:DR This document describes how to create a CDD PDF from the CDD HTML file. You need to generate a cover file and a body file, then use a PDF editor to insert the cover page into the body.pdf. 9 10 The Android Compatibilty Definition Document (CDD) is maintained as an html file but distributed as a .pdf. The partner team updates the CDD for every new major Android release and the APE doc team posts the new .pdf to source.android.com in http://source.android.com/compatibility/. 11 12 To create the pdf from the html file, use wkhtmltopdf (http://wkhtmltopdf.org/) plus a little bit of PDF editing. You can do the conversion on a Mac or Linux (or even Windows); you just need to download the wkhtmltopdf pkg for your system. However, you must perform the editing in a professional PDF editor; for Mac and Windows this is Adobe Acrobat Pro; for Linux this is PDF Studio 10 (none of the free Linux PDF apps can do the swap successfully and still maintain the PDF bookmarks and links). 13 14 15 1. INSTALL WKHTMLTOPDF 16 ======================= 17 Go to http://wkhtmltopdf.org/ and download the app for your system OS. It's command line only. 18 19 20 2. GENERATE COVER PDF 21 ======================= 22 23 Syntax: 24 25 wkhtmltopdf [page-size] [page-margins] cover path-to-html path-to-pdf 26 27 page-size 28 Set to letter. 29 Ex. -s letter 30 31 page-margins 32 set to 0in (cover goes all the way to page edges) 33 Ex. -B 0in -T 0in -L 0in -R 0in 34 35 path-to-html 36 The full path to the cover html file. You will need to update the cover text to specify the release name , number, and date. You might also need to swap the image out for the image associated with the release (store images in compatibility/images). 37 Ex: docs/source.android.com/src/compatibility/5.1/android-cdd-cover_5_1.html 38 39 path-to-pdf 40 The full path to where you want the output pdf file to reside. If the pdf file is NOT open (in Preview or some other app), running the command will silently overwrite the existing .pdf. 41 Ex. docs/source.android.com/src/compatibility/5.1/android-cdd-cover.pdf 42 43 Example cover command run from top-level project: 44 wkhtmltopdf -s letter -B 0in -T 0in -L 0in -R 0in cover docs/source.android.com/src/compatibility/5.1/android-cdd-cover_5_1.html docs/source.android.com/src/compatibility/5.1/android-cdd-cover.pdf 45 46 Example cover command run from 5.1 release folder: 47 wkhtmltopdf -s letter -B 0in -T 0in -L 0in -R 0in cover android-cdd-cover_5_1.html /android-cdd-cover.pdf 48 49 50 3. GENERATE BODY PDF 51 ==================== 52 Syntax: 53 54 wkthmltopdf [page-margins] page path-to-html path-to-footer path-to-pdf 55 56 page-margins 57 set to 1in on top and bottom, .75in on left and right. 58 Ex. -B 1in -T 1in -L .75in -R .75in 59 60 path-to-html 61 The full path to the body html file. This is the main cdd.html, which will change with each release. 62 Ex. docs/source.android.com/src/compatibility/5.1/android-5.1-cdd.html 63 64 path-to-footer 65 The full path to the footer html file. This is a simple html file that contains the android logo and some javascript to calculate the page number and count. The footer should NOT change from release to release. 66 Ex. --footer-html docs/source.android.com/src/compatibility/5.1/android-cdd-footer.html 67 68 path-to-pdf 69 The full path to where you want the output pdf file to reside. If the pdf file is NOT open (in Preview or some other app), running the command will silently overwrite the existing .pdf. 70 Ex. docs/source.android.com/src/compatibility/5.1/android-cdd-body.pdf 71 72 Example body command run from top-level project: 73 wkhtmltopdf -B 1in -T 1in -L .75in -R .75in page docs/source.android.com/src/compatibility/5.1/android-5.1-cdd.html --footer-html docs/source.android.com/src/compatibility/5.1/android-cdd-footer.html docs/source.android.com/src/compatibility/5.1/android-cdd-body.pdf 74 75 Example body command run from 5.1 release folder: 76 wkhtmltopdf -B 1in -T 1in -L .75in -R .75in page android-5.1-cdd.html --footer-html android-cdd-footer.html android-cdd-body.pdf 77 78 4. CREATE CDD PDF 79 ================== 80 A. Open the body.pdf: 81 On a Mac or Windows, use Adobe Acrobat Pro (you *cannot* use Acrobat Reader for this task). 82 On Ubuntu, use PDF Studio 10 (other free pdf programs *cannot* handle the merge + bookmarks). 83 B. Replace page 1 of the body.pdf with page 1 of the cover.pdf. For example, if you are using Adobe Acrobat Pro: 84 1. Open the body.pdf in Adobe Acrobat Pro. 85 2. Select Tools > Pages > Replace. 86 2. Open the cover.pdf file. 87 3. Replace page 1 of the body.pdf with page 1 of the cover.pdf. 88 C. Save the new file as the android-cdd_x_x.pdf (where X_X is the number of the release, such as 5.1). 89 90 QUESTIONS? 91 ================== 92 - For details on wkhtmltopdf, see http://wkhtmltopdf.org/usage/wkhtmltopdf.txt. 93 - CDD html, css, and pdf files are in docs/source.android.com/src/compatibility/release. 94 - CDD images are in docs/source.android.com/src/compatibility/images.