Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: tests/AppManifest.xml.expect

Issue 29368690: [buildtools] Issue 4578 - Make uap3:AppExtension.Id configurable for Microsoft Edge builds (Closed)
Patch Set: Created Dec. 16, 2016, 10:22 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« packagerEdge.py ('K') | « templates/edge/AppxManifest.xml.tmpl ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <?xml version="1.0" encoding="utf-8"?> 1 <?xml version="1.0" encoding="utf-8"?>
2 2
3 <Package 3 <Package
4 xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10" 4 xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10"
5 xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10" 5 xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10"
6 xmlns:uap3="http://schemas.microsoft.com/appx/manifest/uap/windows10/3" 6 xmlns:uap3="http://schemas.microsoft.com/appx/manifest/uap/windows10/3"
7 IgnorableNamespaces="uap3"> 7 IgnorableNamespaces="uap3">
8 8
9 <Identity 9 <Identity
10 Name="EyeoGmbH.AdblockPlus" 10 Name="EyeoGmbH.AdblockPlus"
(...skipping 23 matching lines...) Expand all
34 AppListEntry="none" 34 AppListEntry="none"
35 DisplayName="Adblock Plus" 35 DisplayName="Adblock Plus"
36 Square150x150Logo="Assets\logo_150.png" 36 Square150x150Logo="Assets\logo_150.png"
37 Square44x44Logo="Assets\logo_44.png" 37 Square44x44Logo="Assets\logo_44.png"
38 Description="Adblock Plus is the most popular ad blocker ever, and also supports websites by not blocking unobstrusive ads by default (configurable)." 38 Description="Adblock Plus is the most popular ad blocker ever, and also supports websites by not blocking unobstrusive ads by default (configurable)."
39 BackgroundColor="red"> 39 BackgroundColor="red">
40 </uap:VisualElements> 40 </uap:VisualElements>
41 <Extensions> 41 <Extensions>
42 <uap3:Extension Category="windows.appExtension"> 42 <uap3:Extension Category="windows.appExtension">
43 <uap3:AppExtension Name="com.microsoft.edge.extension" 43 <uap3:AppExtension Name="com.microsoft.edge.extension"
44 Id="EdgeExtension" 44 Id="1.0"
Sebastian Noack 2016/12/16 11:20:11 I wonder whether we should extend the tests to cre
Sebastian Noack 2016/12/19 15:30:20 As discussed offline, the tests would be much less
Sebastian Noack 2016/12/19 17:19:52 Fine with me. I just got the impression, when we t
wspee 2016/12/21 14:15:51 The xml file is generated by rendering a template.
Sebastian Noack 2016/12/21 15:54:15 lxml can be installed using pip, and so also via t
45 PublicFolder="Extension" 45 PublicFolder="Extension"
46 DisplayName="Adblock Plus"> 46 DisplayName="Adblock Plus">
47 <uap3:Properties> 47 <uap3:Properties>
48 <Capabilities> 48 <Capabilities>
49 <Capability Name="websiteContent"/> 49 <Capability Name="websiteContent"/>
50 <Capability Name="browserStorage"/> 50 <Capability Name="browserStorage"/>
51 <Capability Name="websiteInfo"/> 51 <Capability Name="websiteInfo"/>
52 <Capability Name="browserWebRequest"/> 52 <Capability Name="browserWebRequest"/>
53 </Capabilities> 53 </Capabilities>
54 </uap3:Properties> 54 </uap3:Properties>
55 </uap3:AppExtension> 55 </uap3:AppExtension>
56 </uap3:Extension> 56 </uap3:Extension>
57 </Extensions> 57 </Extensions>
58 </Application> 58 </Application>
59 </Applications> 59 </Applications>
60 60
61 </Package> 61 </Package>
OLDNEW
« packagerEdge.py ('K') | « templates/edge/AppxManifest.xml.tmpl ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld