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

From KDE UserBase Wiki
No edit summary
No edit summary
Line 1: Line 1:
{{Template:I18n/Language Navigation Bar|Tutorials/How to search in phone books using klipper}}
{{Template:I18n/Language Navigation Bar|Tutorials/How to search in phone books using Klipper}}
== German draft ==


Mit Klipper kann man durch markieren einer Telefonnummer eine Suche in einem Telefonbuch durchführen.
Klipper can do a search for a higlighted phone no. in telephon books.
Das Markieren kann in einem beliebigen Programm erfolgen z.B. auf einer Internetseite
You can highlight a phone no. in a arbitrary app e.g. on a web site.


[[Image:klipper-tut-2.png|thumb|400px|Auswahl der Suchmöglichkeiten]]
[[Image:klipper-tut-2.png|thumb|400px|Select search action]]


'''Wie das geht?'''
'''How to do that?'''


Dafür bietet Klipper "Aktionen"
Klipper offers "actions" for it.


Voraussetzung ist, das Klipper aktive ist und als Symbol in der Systemleiste vorhanden ist.
As precondition Klipper needs to be active and must be visible as a try icon in control bar.


Im Einrichtungs-Dialog unter Aktionen muss eine Aktion hinzugefügt werden:
Call up settings dialog and a action:


Regulärer Ausdruck für Aktion:
Regular expression for action:
<pre>
<pre>
^[\s]*[0+][\d]{2,2}[-/\d\s]{4,16}[\s]*
^[\s]*[0+][\d]{2,2}[-/\d\s]{4,16}[\s]*
Line 21: Line 20:




Der Aktion sind zwei Befehle hinzuzufügen:
Now you need to add two commands for added action:


Befehl 1 (alles in einer Zeile):
Command 1 (all on one line):
<pre>
<pre>
kfmclient openURL "http://www.dastelefonbuch.de/?pid=OpenSearch&cmd=search&kw=%s&le=de"
kfmclient openURL "http://www.dastelefonbuch.de/?pid=OpenSearch&cmd=search&kw=%s&le=de"
</pre>
</pre>


Beschreibung von Befehl 1: Telefonbuchsuche Konqueror
Description for command 1: Phonebook seach Konqueror


Befehl 2 (alles in einer Zeile):  
Command 2 (all on one line):
<pre>
<pre>
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"
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>
</pre>


Beschreibung von Befehl 2: Telefonbuchsuche Firefox
Description for command 2: Phonebook seach Firefox


Das ganze sollte wie folgt aussehen:
After that it should look like this:


[[Image:klipper-tut-1.png|thumb|400px|Aktionen von klipper]]
[[Image:klipper-tut-1.png|thumb|400px|Klipper actions]]


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.
After highlighting a phone no. on a web site a small window appears und you will be prompted to select an action. See screenshot at beginning of page.

Revision as of 11:41, 29 October 2008

Template:I18n/Language Navigation Bar

Klipper can do a search for a higlighted phone no. in telephon books. You can highlight a phone no. in a arbitrary app e.g. on a web site.

Select search action

How to do that?

Klipper offers "actions" for it.

As precondition Klipper needs to be active and must be visible as a try icon in control bar.

Call up settings dialog and a 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 seach 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 seach Firefox

After that it should look like this:

Klipper actions

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