summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorLeena Miettinen <riitta-leena.miettinen@nokia.com>2012-03-19 13:24:39 +0100
committerLeena Miettinen <riitta-leena.miettinen@nokia.com>2012-03-19 14:12:56 +0100
commit590c602208967f69d0b74451575b29ebda5b2ca3 (patch)
tree469753e6bbf3b81a8632c6c49fb17d0b41b6b399 /doc
parent1b504dfcb248621d72842bf7d4b1c097b1cbf4df (diff)
Doc: quote example files
Add description of AdminTargetDir Change-Id: I0829f8fbc5bef9a47cf7f7cb2db78583e42c786f Reviewed-by: Niels Weber <niels.2.weber@nokia.com>
Diffstat (limited to 'doc')
-rw-r--r--doc/installerfw.qdoc56
1 files changed, 6 insertions, 50 deletions
diff --git a/doc/installerfw.qdoc b/doc/installerfw.qdoc
index 50928b8b9..5c69d1d5c 100644
--- a/doc/installerfw.qdoc
+++ b/doc/installerfw.qdoc
@@ -140,31 +140,7 @@
The configuration file has the following syntax:
- \code
-<?xml version="1.0"?>
-<Installer>
- <Name>Some Application</Name>
- <Version>1.0.0</Version>
- <Title>Some Application Setup</Title>
- <Publisher>Your Company</Publisher>
- <ProductUrl>http://www.your-fantastic-company.com</ProductUrl>
- <Logo>logo.png</Logo>
- <Watermark>watermark.png</Watermark>
- <RunProgram></RunProgram>
- <RunProgramDescription></RunProgramDescription>
- <StartMenuDir>Some Application Entry Dir</StartMenuDir>
- <AllowNonAsciiCharacters>true</AllowNonAsciiCharacters>
- <Icon>installericon</Icon>
-
- <!-- @homeDir@ and @rootDir@ are some of the supported vars -->
- <TargetDir>@homeDir@/testinstall</TargetDir>
- <RemoteRepositories>
- <Repository>
- <Url>http://www.your-repo-location/packages/</Url>
- </Repository>
- </RemoteRepositories>
-</Installer>
- \endcode
+ \quotefile examples/config.xml
\section2 Summary of Configuration Settings
@@ -224,6 +200,10 @@
\o TargetDir
\o Default target directory for installation.
\row
+ \o AdminTargetDir
+ \o Default target directory for installation with administrator
+ rights.
+ \row
\o RemoteRepositories
\o List of remote repositories. You can add several \c Repository
sections that each specify the \c Url to access the repository.
@@ -370,31 +350,7 @@
The package.xml file is the main source of information about a component.
The following is an example of a package file:
- \code
- <?xml version="1.0"?>
- <Package>
- <DisplayName>QtGui</DisplayName>
- <Description>Qt gui libraries</Description>
- <Version>1.2.3</Version>
- <ReleaseDate>2009-04-23</ReleaseDate>
- <Name>com.vendor.root.component2</Name>
- <Dependencies>com.vendor.root.component1</Dependencies>
- <Virtual>false</Virtual>
- <Licenses>
- <License name="License Agreement" file="license.txt" />
- </Licenses>
- <Script>installscript.qs</Script>
- <UserInterfaces>
- <UserInterface>specialpage.ui</UserInterface>
- <UserInterface>errorpage.ui</UserInterface>
- </UserInterfaces>
- <Translations>
- <Translation>sv_se.qm</Translation>
- <Translation>de_de.qm</Translation>
- </Translations>
- <DownloadableArchives>component2.7z, component2a.7z</DownloadableArchives>
- </Package>
- \endcode
+ \quotefile examples/package.xml
\section2 Summary of Package Information File Settings