diff -r ffa851df0825 -r 2fb8b9db1c86 symbian-qemu-0.9.1-12/python-2.6.1/Misc/TextMate/Python-Dev.tmbundle/Commands/Open Docs.tmCommand --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/symbian-qemu-0.9.1-12/python-2.6.1/Misc/TextMate/Python-Dev.tmbundle/Commands/Open Docs.tmCommand Fri Jul 31 15:01:17 2009 +0100 @@ -0,0 +1,32 @@ + + + + + beforeRunningCommand + nop + command + # Search order: +# - Current project. +# - TM_PYTHONDEV_DOCS. +# - Online docs in development. + +html_index=$TM_PROJECT_DIRECTORY/Doc/build/html/index.html +if [[ -f $html_index ]]; then + open $html_index +elif [[ $TM_PYTHONDEV_DOCS ]]; then + open $TM_PYTHONDEV_DOCS +else + open http://docs.python.org/dev/ +fi + input + none + keyEquivalent + @H + name + Open Docs + output + discard + uuid + BF336FFF-E14D-4BF1-A156-71CF768AC034 + +