1 <?cs # THIS CREATES THE COMPAT CONFIG DOCS FROM compatconfig.xml ?>
2 <?cs include:"macros.cs" ?>
3 <?cs include:"macros_override.cs" ?>
4 
5 <?cs include:"doctype.cs" ?>
6 <html<?cs if:devsite ?> devsite<?cs /if ?>>
7 <?cs include:"head_tag.cs" ?>
8 <?cs include:"body_tag.cs" ?>
9 <div itemscope itemtype="http://developers.google.com/ReferenceObject">
10 <?cs include:"header.cs" ?>
11 <?cs # Includes api-info-block DIV at top of page. Standard Devsite uses right nav. ?>
12 <?cs if:dac ?><?cs include:"page_info.cs" ?><?cs /if ?>
13 <?cs # This DIV spans the entire document to provide scope for some scripts ?>
14 <div id="jd-content" >
15 
16 <?cs each:change=change ?>
17   <h3 class="api-name" id="<?cs var:change.name ?>"><?cs var:change.name ?></h3>
18   <div>Value: <?cs var:change.id ?></div>
19   <div>
20   <?cs if:change.loggingOnly ?>
21         Used for logging only.
22   <?cs else ?>
23         <?cs if:change.disabled ?>
24             Disabled for all apps.
25         <?cs else ?>
26             Enabled for
27             <?cs if:change.enableSinceTargetSdk ?>
28                 apps with a <code>targetSdkVersion</code> of greater than or equal to
29                 <?cs var:change.enableSinceTargetSdk ?>.
30             <?cs else ?>
31                 all apps.
32             <?cs /if ?>
33         <?cs /if ?>
34   <?cs /if ?>
35   </div>
36 
37   <?cs call:description(change) ?>
38 <?cs /each ?>
39 
40 </div>
41 <?cs if:!devsite ?>
42 <?cs include:"footer.cs" ?>
43 <?cs include:"trailer.cs" ?>
44 <?cs /if ?>
45 </div><!-- end devsite ReferenceObject -->
46 </body>
47 </html>
48