summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
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