#!/bin/sh
-#$Id: snom.pl,v 1.33 2006-05-22 12:05:10 michael Exp $
+#$Id: snom.pl,v 1.34 2006-05-22 12:11:55 michael Exp $
# http://developer.gnome.org/doc/API/2.2/gtk/gtk-migrating-GtkComboBox.html
if ($response->is_error) {
die("Can't retrieve line information: ", $ua->response->status_line);
}
-
- print $response->content()."\n";
+
+ my @lines=split("\n", $response->content());
+ foreach (@lines) {
+ chomp;
+ #<option value="1" selected>51@stargate.gernoth.loc</option>
+ #<option value="2">89@asterix.ear-projekt.de</option>
+ #<option value="3">41@grumpy.gernoth.loc</option>
+ if (m/^\<option value=\"(.+)\"( selected)?\>([^<]*)\<\/option\>$/) {
+ if(defined($2)) {
+ print "*".$1." ".$3."\n";
+ } else {
+ print $1." ".$3."\n";
+ }
+ }
+ }
$g_identity->append_text("\@line1");
$g_identity->set_active(0);
}