Displaying 1 result from an estimated 1 matches for "encodednumb".
Did you mean:
encodednumber
2007 Jan 08
0
snom 190 (etc.?) dialscript for * debugging and kaddressbook
...#############################
*1)* Dialing from the KDE 3.5.5 address book works with a script that
gets triggered from the kaddressbook (Settings - Script Hooks - Phone)
with my command
snom_dial_number %N
The script snom_dial_number itself goes like this:
-------------------------
#!/bin/sh
ENCODEDNUMBER=$(echo "$@" | sed 's/\+/00/g' | sed 's/\///g' | sed \
's/-//g' | sed 's/\#/\%23/g' |sed 's/ //g' | sed 's/0043/0/g')
konqueror -geometry 700x30+350-810 \
http://172.16.0.2/command.htm?DIAL=$ENCODEDNUMBER&DIAL
#EOF
--------------------...