(add absoluteInstallPath to the tutorial) |
(add Uncompress details) |
||
| Line 17: | Line 17: | ||
:'''NOTE''': InstallationCommand is optional, and if included will be invoked after each item is downloaded. | :'''NOTE''': InstallationCommand is optional, and if included will be invoked after each item is downloaded. | ||
:'''NOTE''': Uncompress is optional, and if included will try to uncompress all downloads into the target folder according to the mime-type of the file. | :'''NOTE''': Uncompress is optional, and if included will try to uncompress all downloads into the target folder according to the mime-type of the file. | ||
| + | * Uncompress possible values as of r794016 are | ||
| + | * "always" - always attempt to uncompress (old values of "true" are seen as "always" | ||
| + | * "archive" - uncompress if it's an archive but copy otherwise | ||
| + | * "never" - (default) never attempt to uncompress | ||
| − | One of the following to tell where downloads should go: | + | |
| + | One of the following is required to tell where downloads should go: | ||
<code> | <code> | ||
TargetDir= | TargetDir= | ||
The page that used to be here was all KDE3 specific information, so I figured it was about time to start a new one.
First some basic terminology just to get us all on the same page. KHotNewStuff2 is the new library that implements the GHNS freedesktop.org specification for downloading and uploading user data. It will also support DXS (Desktop Exchange Service)
There are a many good examples for how to use khotnewstuff2 in the KDE-Edu module. Look at their source code for examples if needed, but it's basically a 2-part process to get download into your app.
[KNewStuff2]
ProvidersUrl=
InstallationCommand=
Uncompress=
One of the following is required to tell where downloads should go:
TargetDir=
InstallPath=
StandardResource=
AbsoluteInstallPath=
And the following values are currently read, though not used yet:
CustomName=
CachePolicy=
ChecksumPolicy=
SignaturePolicy=
Scope=
install the file using CMake install macro like this
install( FILES yourdata.knsrc DESTINATION ${CONFIG_INSTALL_DIR} )
at this point, you can test your knsrc file with khotnewstuff4 like so:
khotnewstuff4 yourdata.knsrc
it should show you a download dialog of the data available on your provider(s).