summaryrefslogtreecommitdiffstats
path: root/perl-install/share
Commit message (Expand)AuthorAgeFilesLines
* updated Italian and Turkish filesPablo Saratxaga2000-10-261-166/+166
* fortune-mod gets 10/0/10 on request from egilGuillaume Cottenceau2000-10-241-1/+1
* linuxconf-gui got -1/-1/-1 while gnome-linuxconf has 74/0/74Guillaume Cottenceau2000-10-221-1/+1
* ntp to -1/-1/-1Guillaume Cottenceau2000-10-201-1/+1
* 100%, Troels Liebe Bentsen.tlb2000-10-191-378/+558
* put all packages requiring kde1-compat to 0 except kisdn-freeGuillaume Cottenceau2000-10-191-10/+10
* aumix now gets a high weight (79) because it's required to save the mixerGuillaume Cottenceau2000-10-191-1/+1
* updated Norwegian filePablo Saratxaga2000-10-181-18/+15
* Added AZeri filePablo Saratxaga2000-10-181-0/+6992
* updated Latvian filePablo Saratxaga2000-10-171-412/+810
* sympa is -1 except for serverPascal Rigaux2000-10-161-1/+1
* updated pot filePablo Saratxaga2000-10-1642-11282/+14416
* updated Bulgarian filePablo Saratxaga2000-10-141-176/+224
* added viavoicemenuGuillaume Cottenceau2000-10-131-0/+1
* *** empty log message ***Guillaume Cottenceau2000-10-131-2/+2
* *** empty log message ***Guillaume Cottenceau2000-10-111-1/+1
* updated Norwegian filePablo Saratxaga2000-10-101-2/+1
* updateddamien2000-10-091-2067/+4468
* updateddamien2000-10-091-1944/+4801
* updated pot filePablo Saratxaga2000-10-0937-70214/+146057
* upodatedPablo Saratxaga2000-10-092-3992/+10134
* *** empty log message ***Guillaume Cottenceau2000-10-092-2/+53
* *** empty log message ***Francois Pons2000-10-091-1931/+3858
* *** empty log message ***Francois Pons2000-10-091-58/+58
* *** empty log message ***Guillaume Cottenceau2000-10-091-19/+19
* updated German and Brazilian filesPablo Saratxaga2000-10-091-1915/+3959
* no_commentPascal Rigaux2000-10-094-4/+4
* changed label toconnect to internetdamien2000-10-091-320/+302
* *** empty log message ***Francois Pons2000-10-091-0/+1
* *** empty log message ***Guillaume Cottenceau2000-10-091-1/+1
* no_commentPascal Rigaux2000-10-081-3/+11
* no_commentPascal Rigaux2000-10-071-70/+70
* Updated Greek and Norwegian filesPablo Saratxaga2000-10-071-85/+222
* *** empty log message ***Guillaume Cottenceau2000-10-061-3/+3
* updated pot filePablo Saratxaga2000-10-062-970/+1017
* updated pot filePablo Saratxaga2000-10-061-283/+321
* euh..Guillaume Cottenceau2000-10-061-2/+3
* *** empty log message ***Guillaume Cottenceau2000-10-061-2/+3
* no_commentPascal Rigaux2000-10-062-4/+7
* *** empty log message ***Francois Pons2000-10-061-1/+1
* *** empty log message ***Guillaume Cottenceau2000-10-061-1/+1
* *** empty log message ***Francois Pons2000-10-061-247/+240
* no_commentPascal Rigaux2000-10-053-47/+49
* updated po filesPablo Saratxaga2000-10-052-737/+1345
* *** empty log message ***Guillaume Cottenceau2000-10-051-46/+46
* *** empty log message ***Guillaume Cottenceau2000-10-052-198/+181
* updated pot filePablo Saratxaga2000-10-051-270/+484
* *** empty log message ***Francois Pons2000-10-051-1/+1
* *** empty log message ***Francois Pons2000-10-051-14/+18
* *** empty log message ***Guillaume Cottenceau2000-10-051-8/+9
pt">{ my ($isdn, $_netc, $name) = @_; $name eq N("Unlisted - edit manually") and return; foreach (catMaybeCompressed($file)) { chop; my ($name_, $phone, $real, $dns1, $dns2) = split '=>'; if ($name eq $name_) { @$isdn{qw(user_name phone_out DOMAINNAME2 dnsServer3 dnsServer2)} = ((split(/\|/, $name_))[2], $phone, $real, $dns1, $dns2); } } } sub read_providers_backend { map { /(.*?)=>/ } catMaybeCompressed($file) } sub isdn_detect_backend() { my @isdn; require detect_devices; each_index { my $c = $_; my $isdn = { map { $_ => $c->{$_} } qw(description vendor id driver card_type type) }; $isdn->{intf_id} = $::i; $isdn->{$_} = sprintf("%0x", $isdn->{$_}) foreach 'vendor', 'id'; $isdn->{card_type} = $c->{bus} eq 'USB' ? 'usb' : 'pci'; ($isdn->{type}) = $isdn->{options} =~ /type=(\d+)/; $isdn->{description} =~ s/.*\|//; # $c->{options} !~ /id=HiSax/ && $isdn->{driver} eq "hisax" and $c->{options} .= " id=HiSax"; if ($c->{options} !~ /protocol=/ && $isdn->{protocol} =~ /\d/) { modules::set_options($c->{driver}, $c->{options} . " protocol=" . $isdn->{protocol}); } $c->{options} =~ /protocol=(\d)/ and $isdn->{protocol} = $1; push @isdn, $isdn; } modules::probe_category('network/isdn'); \@isdn; } sub isdn_get_cards_by_type { my ($isdn_type) = @_; grep { $_->{card} eq $isdn_type } @isdndata; } sub isdn_get_cards() { my %buses = ( isa => N("ISA / PCMCIA") . "/" . N("I don't know"), pci => N("PCI"), usb => N("USB"), ); # pmcia alias (we should really split up pcmcia from isa in isdn db): $buses{pcmcia} = $buses{isa}; map { $buses{$_->{card}} . "|" . $_->{description} => $_ } @isdndata; } 1;