diff options
author | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
---|---|---|
committer | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
commit | bd9e6617827818fd043452c08c606f07b78014a0 (patch) | |
tree | 425bb4c3168f9c02f10150f235d2cb998dcc6108 /scripts/qtdoc | |
download | tdesdk-bd9e6617827818fd043452c08c606f07b78014a0.tar.gz tdesdk-bd9e6617827818fd043452c08c606f07b78014a0.zip |
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdesdk@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'scripts/qtdoc')
-rwxr-xr-x | scripts/qtdoc | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/scripts/qtdoc b/scripts/qtdoc new file mode 100755 index 00000000..f92345d9 --- /dev/null +++ b/scripts/qtdoc @@ -0,0 +1,19 @@ +#!/bin/sh +# Run from command line, to open a qt help page in kfm/konqueror +# No argument => main page +# Classname (case insensitive) => page for this class + +if [ $# = 1 ]; then + fname=`echo $1 | tr '[A-Z]' '[a-z]'` + if [ -f $QTDIR/doc/html/$fname.html ]; then + kdeinit_wrapper kfmclient openProfile webbrowsing file:$QTDIR/doc/html/$fname.html + else + if [ -f /usr/doc/qt2/html/$fname.html ]; then + kdeinit_wrapper kfmclient openProfile webbrowsing file:/usr/doc/qt2/html/$fname.html + else + echo "No such file $fname.html" + fi + fi +else + kfmclient openURL file:$QTDIR/doc/html/index.html +fi |