1- <Page class =" page" loaded =" pageLoaded"
2- xmlns =" http://schemas.nativescript.org/tns.xsd" >
1+ <Page class =" page" loaded =" pageLoaded" xmlns =" http://schemas.nativescript.org/tns.xsd" >
32 <Page .actionBar>
43 <ActionBar title =" HTTPS Playground" class =" action-bar" ></ActionBar >
54 </Page .actionBar>
65 <GridLayout class =" p-20" rows =" auto,auto,auto,*" >
7- <Label class =" h2 text-center" color =" {{ enabled ? 'green' : 'red' }}" text =" {{ enabled ? 'Httpbin SSL Pinning Enabled' : 'SSL Pinning Disabled' }}" />
6+ <Label class =" h2 text-center" color =" {{ enabled ? 'green' : 'red' }}" text =" {{ enabled ? 'Httpbin SSL Pinning Enabled' : 'SSL Pinning Disabled' }}" />
87 <GridLayout row =" 1" rows =" auto" columns =" *,auto" >
9- <Label fontSize =" 13" text =" Here's a spinner to show the main thread is not blocked by network IO" textWrap =" true" class =" m-20" />
10- <ActivityIndicator col =" 1" busy =" true" />
8+ <Label fontSize =" 13" text =" Here's a spinner to show the main thread is not blocked by network IO" textWrap =" true" class =" m-20" />
9+ <ActivityIndicator col =" 1" busy =" true" />
1110 </GridLayout >
1211 <GridLayout row =" 2" rows =" auto" columns =" *,auto" visibility =" {{ currentRequest ? 'visible' : 'collapsed'}}" >
13- <Progress minValue =" 0" maxValue =" 100" value =" {{ progress}}" />
14- <Button col =" 1" text =" cancel" tap =" cancelCurrentRequest" />
12+ <Progress minValue =" 0" maxValue =" 100" value =" {{ progress}}" />
13+ <Button col =" 1" text =" cancel" tap =" cancelCurrentRequest" />
1514 </GridLayout >
1615 <ScrollView row =" 3" >
1716 <StackLayout >
18- <Button text =" GET Bigfile" tap =" getBigFile" class =" t-20 btn btn-primary btn-active" />
19- <Button text =" GET 404" tap =" get404" class =" t-20 btn btn-primary btn-active" />
20- <Button text =" GET Mockbin" tap =" getMockbin" class =" t-20 btn btn-primary btn-active" />
21- <Button text =" GET Httpbin" tap =" getHttpbin" class =" t-20 btn btn-primary btn-active" />
22- <Button text =" GET Httpbin (large response)" tap =" getHttpbinLargeResponse" class =" t-20 btn btn-primary btn-active" />
23- <Button text =" POST Httpbin " tap =" postHttpbin" class =" t-20 btn btn-primary btn-active" />
24- <Button text =" POST Httpbin UTF-8" tap =" postHttpbinWithUTF8" class =" t-20 btn btn-primary btn-active" />
25- <Button text =" Httpbin Pinning ON" tap =" enableSSLPinning" class =" t-20 btn btn-primary btn-active" />
26- <Button text =" Httpbin Pinning ON, expired cert" tap =" enableSSLPinningExpired" class =" t-20 btn btn-primary btn-active" />
27- <Button text =" Httpbin Pinning OFF" tap =" disableSSLPinning" class =" t-20 btn btn-primary btn-active" />
17+ <Button text =" GET Bigfile" tap =" getBigFile" class =" t-20 btn btn-primary btn-active" />
18+ <Button text =" GET 404" tap =" get404" class =" t-20 btn btn-primary btn-active" />
19+ <Button text =" GET Mockbin" tap =" getMockbin" class =" t-20 btn btn-primary btn-active" />
20+ <Button text =" GET Httpbin" tap =" getHttpbin" class =" t-20 btn btn-primary btn-active" />
21+ <Button text =" GET Httpbin (large response)" tap =" getHttpbinLargeResponse" class =" t-20 btn btn-primary btn-active" />
22+ <Button text =" POST Httpbin " tap =" postHttpbin" class =" t-20 btn btn-primary btn-active" />
23+ <Button text =" POST Httpbin UTF-8" tap =" postHttpbinWithUTF8" class =" t-20 btn btn-primary btn-active" />
24+ <Button text =" Httpbin Pinning ON" tap =" enableSSLPinning" class =" t-20 btn btn-primary btn-active" />
25+ <Button text =" Httpbin Pinning ON, expired cert" tap =" enableSSLPinningExpired" class =" t-20 btn btn-primary btn-active" />
26+ <Button text =" Httpbin Pinning OFF" tap =" disableSSLPinning" class =" t-20 btn btn-primary btn-active" />
2827 </StackLayout >
2928 </ScrollView >
3029 </GridLayout >
31- </Page >
30+ </Page >
0 commit comments