<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"
xmlns:android="http://schemas.android.com/apk/res/android"
>
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes" />
<xsl:strip-space elements="*"/>
<xsl:template match="/" >
<!-- the package name and the version of the application extracted from the appinfo tag in the AM -->
<xsl:apply-templates />
</xsl:template>
<xsl:template match="application/appinfo">
<xsl:text>
</xsl:text>
<manifest>
<xsl:attribute name="package">
<xsl:value-of select="concat('edu.icpmd.',namespace)"/>
</xsl:attribute>
<xsl:attribute name="android:versionCode">
<xsl:value-of select="versioncode"/>
</xsl:attribute>
<xsl:attribute name="android:versionName">
<xsl:value-of select="versionname"/>
</xsl:attribute>
<xsl:text>
</xsl:text>
<uses-sdk>
<xsl:attribute name="android:minSdkVersion">
<xsl:text>14</xsl:text>
</xsl:attribute>
<xsl:attribute name="android:targetSdkVersion">
<xsl:text>17</xsl:text>
</xsl:attribute>
</uses-sdk>
<!-- the permissions list extracted from the permissions tag in the AM and the permissions database -->
<xsl:text>
</xsl:text>
<xsl:for-each select="permissions/permission">
<xsl:if test=".='ID_CAP_NETWORKING'">
<uses-permission >
<xsl:attribute name="android:name" >
<xsl:text>android.permission.INTERNET</xsl:text>
</xsl:attribute>
</uses-permission>
</xsl:if>
<xsl:if test=".='ID_CAP_ISV_CAMERA'">
<uses-permission >
<xsl:attribute name="android:name" >
<xsl:text>android.permission.Camera</xsl:text>
</xsl:attribute>
</uses-permission>
</xsl:if>
</xsl:for-each>
<!-- the icon and label of the application extracted from the appinfo tag in the AM -->
<xsl:text>
</xsl:text>
<application >
<xsl:attribute name="android:icon" >
<xsl:value-of select="translate(concat('@drawable/',substring-before(substring-after(icon,'\'),'.')), 'ABCDEFGHIJKLMNOPQRSTUVWXYZ', 'abcdefghijklmnopqrstuvwxyz')"/>
</xsl:attribute>
<xsl:attribute name="android:label" >
<xsl:value-of select="title"/>
</xsl:attribute>
<!-- the default activity name is extracted from the appinfo tag in the AM -->
<xsl:text>
</xsl:text>
<activity >
<xsl:attribute name="android:name" >
<xsl:value-of select="concat(concat('edu.icpmd.',namespace),concat('.',substring-before(pages/defaultpage,'.')))"/>
</xsl:attribute>
<xsl:attribute name="android:label" >
<xsl:value-of select="title"/>
</xsl:attribute>
<xsl:text>
</xsl:text>
<intent-filter>
<xsl:text>
</xsl:text>
<action>
<xsl:attribute name="android:name" >
<xsl:text>android.intent.action.MAIN</xsl:text>
</xsl:attribute>
</action>
<xsl:text>
</xsl:text>
<category >
<xsl:attribute name="android:name" >
<xsl:text>android.intent.category.LAUNCHER</xsl:text>
</xsl:attribute>
</category>
<xsl:text>
</xsl:text>
</intent-filter>
<xsl:text>
</xsl:text>
</activity>
<xsl:text>
</xsl:text>
</application>
<xsl:text>
</xsl:text>
</manifest>
</xsl:template>
</xsl:stylesheet>
ليست هناك تعليقات:
إرسال تعليق