Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/misc
diff options
context:
space:
mode:
authorvipsoft <vipsoft@59fd770c-687e-43c8-a1e3-f5a4ff64c105>2009-09-23 01:43:27 +0400
committervipsoft <vipsoft@59fd770c-687e-43c8-a1e3-f5a4ff64c105>2009-09-23 01:43:27 +0400
commit8fec126b871c3d1fa0ac3288bf987934a4ce5dde (patch)
tree582ae3414fd01221da7fbceb23b86286d400bfe7 /misc
parent3900e991b5fd5196a21c7a45b663eed8e1f5de9b (diff)
fixes #642 - package Piwik for Web Application Gallery
Diffstat (limited to 'misc')
-rw-r--r--misc/WebAppGallery/Manifest.xml18
-rw-r--r--misc/WebAppGallery/parameters.xml50
2 files changed, 68 insertions, 0 deletions
diff --git a/misc/WebAppGallery/Manifest.xml b/misc/WebAppGallery/Manifest.xml
new file mode 100644
index 0000000000..2e0b2e8490
--- /dev/null
+++ b/misc/WebAppGallery/Manifest.xml
@@ -0,0 +1,18 @@
+<MSDeploy.iisApp>
+ <iisApp path="piwik" />
+ <setAcl
+ path="piwik"
+ setAclUser="anonymousAuthenticationUser"
+ setAclAccess="ReadAndExecute,ListDirectory"
+ />
+ <setAcl
+ path="piwik/config"
+ setAclUser="anonymousAuthenticationUser"
+ setAclAccess="Modify"
+ />
+ <setAcl
+ path="piwik/tmp"
+ setAclUser="anonymousAuthenticationUser"
+ setAclAccess="Modify"
+ />
+</MSDeploy.iisApp>
diff --git a/misc/WebAppGallery/parameters.xml b/misc/WebAppGallery/parameters.xml
new file mode 100644
index 0000000000..41f5246b90
--- /dev/null
+++ b/misc/WebAppGallery/parameters.xml
@@ -0,0 +1,50 @@
+<parameters>
+ <parameter
+ name="Application Path"
+ description="Full site path where you would like to install your application (for example, Default Web Site/piwik)."
+ defaultValue="Default Web Site/piwik"
+ tags="iisapp"
+ >
+ <parameterEntry
+ type="ProviderPath"
+ scope="iisapp"
+ match="piwik"
+ />
+ </parameter>
+ <parameter
+ name="SetAclParameterTree"
+ description="Sets the ACL on the Installation tree"
+ defaultValue="{Application Path}"
+ tags="Hidden"
+ >
+ <parameterEntry
+ type="ProviderPath"
+ scope="setAcl"
+ match="piwik"
+ />
+ </parameter>
+ <parameter
+ name="SetAclParameterConfig"
+ description="Sets the ACL on the configuration folder"
+ defaultValue="{Application Path}/config"
+ tags="Hidden"
+ >
+ <parameterEntry
+ type="ProviderPath"
+ scope="setAcl"
+ match="piwik/config"
+ />
+ </parameter>
+ <parameter
+ name="SetAclParameterTmp"
+ description="Sets the ACL on the tmp folder"
+ defaultValue="{Application Path}/tmp"
+ tags="Hidden"
+ >
+ <parameterEntry
+ type="ProviderPath"
+ scope="setAcl"
+ match="piwik/tmp"
+ />
+ </parameter>
+</parameters>