summaryrefslogtreecommitdiffstats
path: root/doc/installerfw.qdoc
diff options
context:
space:
mode:
Diffstat (limited to 'doc/installerfw.qdoc')
-rw-r--r--doc/installerfw.qdoc38
1 files changed, 22 insertions, 16 deletions
diff --git a/doc/installerfw.qdoc b/doc/installerfw.qdoc
index baf6f1261..9cfb94d06 100644
--- a/doc/installerfw.qdoc
+++ b/doc/installerfw.qdoc
@@ -199,10 +199,10 @@
\o Filename for a watermark used as \a QWizard::WatermarkPixmap.
\row
\o Banner
- \o Filename for a banner used as \a QWizard::BannerPixmap.
+ \o Filename for a banner used as \a QWizard::BannerPixmap (only used by ModernStyle).
\row
\o Background
- \o Filename for an image used as \a QWizard::BackgroundPixmap.
+ \o Filename for an image used as \a QWizard::BackgroundPixmap (only used by MacStyle).
\row
\o RunProgram
\o Command executed after the installer is done if the user accepts
@@ -265,6 +265,10 @@
\o List of language codes to be used for translating the user interface. To add several language
variants, specify several Translation sections that each specify the name of a language
variant. Optional. For more information, see \l{Translating Pages}.
+ \row
+ \o UrlQueryString
+ \o This string needs to be in the form "key=value" and will be appended to archive download
+ requests. This can be used to transmit information to the webserver hosting the repository.
\endtable
@@ -445,6 +449,7 @@
\row
\o Virtual
\o Set to \c true to hide the component from the installer.
+ Note that setting this on a root component does not work.
\row
\o SortingPriority
\o Priority of the component in the tree. The tree is sorted from
@@ -1007,34 +1012,35 @@
Updates.xml file in the current repository. You can add, replace, or remove
repositories.
+ \code
+ <RepositoryUpdate>
+ <Repository action="..." OPTIONS />
+ <Repository action="..." OPTIONS />
+ </RepositoryUpdate>
+ \endcode
+
\section2 Adding Repositories
- To update a repository, add the following code to Updates.xml:
+ To update a repository, add the following code to the RepositoryUpdate section:
\code
- <RepositoryUpdate>
- <Repository action="add" url="http://www.example.com/repository" name="user" password="password"
+ <Repository action="add" url="http://www.example.com/repository" name="user" password="password"
displayname="Example Repository" />
- </RepositoryUpdate>
\endcode
\section2 Removing Repositories
- To remove a repository, add the following code to Updates.xml:
+ To remove a repository, add the following code to the RepositoryUpdate section:
\code
- <RepositoryUpdate>
- <Repository action="remove" url="http://www.example.com/repository" />
- </RepositoryUpdate>
+ <Repository action="remove" url="http://www.example.com/repository" />
\endcode
\section2 Replacing repositories
- To replace one repository with another, add the following code to Updates.xml:
+ To replace one repository with another, add the following code to the RepositoryUpdate section:
\code
- <RepositoryUpdate>
- <Repository action="replace" oldurl="http://www.example.com/repository"
- newurl="http://www.example.com/newrepository" name="user" password="password"
- displayname="New Example Repository" />
- </RepositoryUpdate>
+ <Repository action="replace" oldurl="http://www.example.com/repository"
+ newurl="http://www.example.com/newrepository" name="user" password="password"
+ displayname="New Example Repository" />
\endcode
*/