Changes: Small directory name correction in documentation

RevBy: Juha Lintula
pull/1/head
Olli Leppanen 15 years ago
parent de403be9c7
commit 8448f04789

1
debian/changelog vendored

@ -1,6 +1,7 @@
applauncherd (0.29.7) unstable; urgency=low applauncherd (0.29.7) unstable; urgency=low
* Changes: Refactoring of testability plug-in loading * Changes: Refactoring of testability plug-in loading
* Changes: Corrected path names in documentation
-- Alexey Shilov <alexey.shilov@nokia.com> Thu, 12 May 2011 16:43:38 +0300 -- Alexey Shilov <alexey.shilov@nokia.com> Thu, 12 May 2011 16:43:38 +0300

@ -14,7 +14,7 @@ System default splash images can be obtained by giving \c default or
For instance, For instance,
\verbatim \verbatim
/usr/bin/invoker --splash=/usr/share/application_name/splash.jpg --splash-landscape=/usr/share/application_name/splash-l.jpg --type=m /usr/bin/application_name /usr/bin/invoker --splash=/usr/share/application_name/splash.jpg --splash-landscape=/usr/share/application_name/splash-l.jpg --type=d /usr/bin/application_name
\endverbatim \endverbatim
shows the splash screen with splash.jpg as its content when the device shows the splash screen with splash.jpg as its content when the device
@ -74,7 +74,7 @@ application running, the following sequence of events takes place:
There are basically two ways around the D-Bus related problem outlined There are basically two ways around the D-Bus related problem outlined
above. One is to use the single instance support of the invoker, and above. One is to use the single instance support of the invoker, and
the other one is to use a D-Bus service in the \c .desktop file. The the other one is to use a D-Bus service in the \c .desktop file. The
following examples demonstrate how to do this with the \c clock application. following examples demonstrate how to do this with the \c helloworld application.
In the first approach, there is an \c Exec line with \c invoker In the first approach, there is an \c Exec line with \c invoker
command in both the \c .desktop file and the \c .service file. Both command in both the \c .desktop file and the \c .service file. Both
@ -84,15 +84,15 @@ flag:
\code \code
[Desktop Entry] [Desktop Entry]
Type=Application Type=Application
Name=Clock Name=Helloworld
Icon=icon-l-clock Icon=icon-l-helloworld
Exec=/usr/bin/invoker --single-instance --splash /usr/share/themes/blanco/meegotouch/images/splash/meegotouch-clock-splash.jpg --type=m /usr/bin/clock Exec=/usr/bin/invoker --single-instance --splash /usr/share/helloworld/helloworld-splash.jpg --type=d /usr/bin/helloworld
\endcode \endcode
\code \code
[D-BUS Service] [D-BUS Service]
Name=com.nokia.clock Name=com.nokia.helloworld
Exec=/usr/bin/invoker --single-instance --splash /usr/share/themes/blanco/meegotouch/images/splash/meegotouch-clock-splash.jpg --type=m /usr/bin/clock Exec=/usr/bin/invoker --single-instance --splash /usr/share/helloworld/helloworld-splash.jpg --type=d /usr/bin/helloworld
\endcode \endcode
In the second approach, the \c .desktop file specifies the D-Bus In the second approach, the \c .desktop file specifies the D-Bus
@ -104,16 +104,16 @@ to be required even if it is not used.
\code \code
[Desktop Entry] [Desktop Entry]
Type=Application Type=Application
Name=Clock Name=Helloworld
Icon=icon-l-clock Icon=icon-l-helloworld
Exec=/path/not/used Exec=/path/not/used
X-Maemo-Service=com.nokia.clock X-Maemo-Service=com.nokia.helloworld
\endcode \endcode
\code \code
[D-BUS Service] [D-BUS Service]
Name=com.nokia.clock Name=com.nokia.helloworld
Exec=/usr/bin/invoker --splash /usr/share/themes/blanco/meegotouch/images/splash/meegotouch-clock-splash.jpg --type=m /usr/bin/clock Exec=/usr/bin/invoker --splash /usr/share/helloworld/helloworld-splash.jpg --type=d /usr/bin/helloworld
\endcode \endcode
*/ */

Loading…
Cancel
Save