Klipper/How to search in phone books using Klipper: Difference between revisions

From KDE UserBase Wiki
m (typo)
(15 intermediate revisions by 5 users not shown)
Line 1: Line 1:
== German draft ==
<languages />
<translate>
<!--T:1-->
'''Klipper''' can do a search for a highlighted phone no. in telephone books.
You can also highlight a phone number in a arbitrary application, e.g. on a web site.


Mit Klipper kann man durch markieren einer Telefonnummer eine Suche in einem Telefonbuch durchführen.
<!--T:2-->
Das Markieren kann in einem beliebigen Programm erfolgen z.B. auf einer Internetseite
[[Image:klipper-tut-2.png|center|thumb|400px|Select search action]]


[[Image:klipper-tut-2.png|thumb|400px|Auswahl der Suchmöglichkeiten]]
== How is it done?== <!--T:3-->


'''Wie das geht?'''
<!--T:4-->
'''Klipper''' offers "actions" for it.


Dafür bietet Klipper "Aktionen"
<!--T:5-->
As precondition '''Klipper''' needs to be active and must be visible as a tray icon in the panel.


Voraussetzung ist, das Klipper aktive ist und als Symbol in der Systemleiste vorhanden ist.
<!--T:6-->
Call up the <menuchoice>Settings</menuchoice> dialog and add action:


Im Einrichtungs-Dialog unter Aktionen muss eine Aktion hinzugefügt werden:
<!--T:7-->
Regular expression for action:
{{Input|1=^[\s]*[0+][\d]{2,2}[-/\d\s]{4,16}[\s]*}}


Regulärer Ausdruck für Aktion:
<!--T:8-->
<pre>
Now you need to add two commands for added action:
^[\s]*[0+][\d]{2,2}[-/\d\s]{4,16}[\s]*
</pre>


<!--T:9-->
Command 1 (all on one line):
{{Input|1=<nowiki>kfmclient openURL "http://www.dastelefonbuch.de/?pid=OpenSearch&cmd=search&kw=%s&le=de"</nowiki>}}


Der Aktion sind zwei Befehle hinzuzufügen:
<!--T:10-->
Description for command 1: {{Input|1=Phonebook search, Konqueror}}


Befehl 1 (alles in einer Zeile):
<!--T:11-->
<pre>
Command 2 (all on one line):
kfmclient openURL "http://www.dastelefonbuch.de/?pid=OpenSearch&cmd=search&kw=%s&le=de"
{{Input|1=<nowiki>ps x|grep -q '[f]irefox' && firefox -remote openURL\("http://www.dastelefonbuch.de/?pid=OpenSearch&cmd=search&kw=%s&le=de", new-window\) || firefox "http://www.dastelefonbuch.de/?pid=OpenSearch&cmd=search&kw=%s&le=de"</nowiki>}}
</pre>


Beschreibung von Befehl 1: Telefonbuchsuche Konqueror
<!--T:12-->
Description for command 2: {{Input|1=Phonebook search, Firefox}}


Befehl 2 (alles in einer Zeile):
<!--T:13-->
<pre>
After that it should look like this:
ps x|grep -q '[f]irefox' && firefox -remote openURL\("http://www.dastelefonbuch.de/?pid=OpenSearch&cmd=search&kw=%s&le=de", new-window\) || firefox "http://www.dastelefonbuch.de/?pid=OpenSearch&cmd=search&kw=%s&le=de"
</pre>


Beschreibung von Befehl 2: Telefonbuchsuche Firefox
<!--T:14-->
[[Image:klipper-tut-1.png|center|thumb|400px|Klipper actions]]


Das ganze sollte wie folgt aussehen:
<!--T:15-->
After highlighting a phone number on a web site a small window appears and you will be prompted to select an action. See screenshot at beginning of page.


[[Image:klipper-tut-1.png|thumb|400px|Aktionen von klipper]]
<!--T:16-->
 
[[Category:Tutorials]]
Wenn nun eine Nr. auf einer Internetseite markiert wird, dann erscheint ein kleines Fenster und man wird gefragt, was nun passieren soll. Siehe Screenshot am Anfang der Seite.
[[Category:Utilities]]
[[Category:System]]
[[Category:Advanced Users]]
</translate>

Revision as of 17:52, 7 April 2011

Klipper can do a search for a highlighted phone no. in telephone books. You can also highlight a phone number in a arbitrary application, e.g. on a web site.

Select search action

How is it done?

Klipper offers "actions" for it.

As precondition Klipper needs to be active and must be visible as a tray icon in the panel.

Call up the Settings dialog and add action:

Regular expression for action:

^[\s]*[0+][\d]{2,2}[-/\d\s]{4,16}[\s]*

Now you need to add two commands for added action:

Command 1 (all on one line):

kfmclient openURL "http://www.dastelefonbuch.de/?pid=OpenSearch&cmd=search&kw=%s&le=de"

Description for command 1:

Phonebook search, Konqueror

Command 2 (all on one line):

ps x|grep -q '[f]irefox' && firefox -remote openURL\("http://www.dastelefonbuch.de/?pid=OpenSearch&cmd=search&kw=%s&le=de", new-window\) || firefox "http://www.dastelefonbuch.de/?pid=OpenSearch&cmd=search&kw=%s&le=de"

Description for command 2:

Phonebook search, Firefox

After that it should look like this:

Klipper actions

After highlighting a phone number on a web site a small window appears and you will be prompted to select an action. See screenshot at beginning of page.