summaryrefslogtreecommitdiffstats
path: root/perl-install/share/fonts.tar.bz2
Commit message (Expand)AuthorAgeFilesLines
* updated 12x13 bitmap font (replaced hebrew glyphs with a copy fromPablo Saratxaga2003-09-021-0/+0
* updated Nimbus Sans font with more cyrillic glyphsPablo Saratxaga2003-08-261-0/+0
* re-put etc/fonts/fonts.conf, pablo removed it in previous commit, it broke th...Guillaume Cottenceau2003-08-201-0/+0
* Updated Nimbus Sans L font (some wrong cyrillic glyphs fixed byPablo Saratxaga2003-08-191-0/+0
* CJK fonts can now be pcf.gz, hopefully since they will be too large for ramdi...Guillaume Cottenceau2003-02-121-0/+0
* use another default fontGuillaume Cottenceau2002-12-231-0/+0
* have a default fixed alias for a font which will always be here even in ramdiskGuillaume Cottenceau2002-12-231-0/+0
* updated fonts tarball, all old bitmap fonts have been removed,Pablo Saratxaga2002-12-201-0/+0
* Put Nimbus Sans L as default fontPablo Saratxaga2002-12-041-0/+0
* put back the default iso8859-15 fonts used by install.rcPablo Saratxaga2002-12-041-0/+0
* First try of fonts for Xft2Mystery Man 5512002-12-031-0/+0
* Added Tamil font, added "ta" to gen_locales, and changed charset= linePablo Saratxaga2002-08-211-0/+0
* add helvR12_iso15Pascal Rigaux2002-01-211-0/+0
* changes to get in line with new XFree86Pablo Saratxaga2002-01-181-0/+0
* enabling euro and utf-8 for some languages; added unicode fontPablo Saratxaga2001-08-241-0/+0
* defaultPascal Rigaux2001-06-261-0/+0
* defaultPascal Rigaux2001-06-261-0/+0
* re-add with -kbPascal Rigaux2001-06-261-0/+0
* remove for re-add with -kbPascal Rigaux2001-06-261-0/+0
* new fonts and locale filesPablo Saratxaga2001-03-141-0/+0
* use gb16fs instead of gb16stPascal Rigaux2001-03-071-0/+0
* no_commentPascal Rigaux2000-09-011-0/+0
* no_commentPascal Rigaux2000-08-301-0/+0
* changed the korean fontPablo Saratxaga2000-06-011-0/+0
* Added an 8pt font for cp1251Pablo Saratxaga2000-04-301-0/+0
* no_commentPascal Rigaux2000-03-111-0/+0
* Inserted some dummy symlinks that make the Xpmac X server to run correctly. ...Adam Lebsack2000-02-281-0/+0
* split the locales.tar.bz2 in 3 files: locales, fonts and keyboards.Pablo Saratxaga2000-01-261-0/+0
opt">($netc, "isdn", join('', "/sbin/route del default modprobe $isdn->{driver}", if_($isdn->{type}, " type=$isdn->{type}"), " /usr/sbin/isdnctrl dial ippp0 ", if_($isdn->{speed} =~ /128/, "service ibod restart ")), "/usr/sbin/isdnctrl hangup ippp0 " . if_($isdn->{speed} =~ /128/, "service ibod stop "), $netc->{isdntype}); 1; } sub read_config { my ($isdn) = @_; my %match = (I4L_USERNAME => 'login', I4L_LOCALMSN => 'phone_in', I4L_REMOTE_OUT => 'phone_out', I4L_DIALMODE => 'dialing_mode', I4L_MODULE => 'driver', I4L_TYPE => 'type', I4L_IRQ => 'irq', I4L_MEMBASE => 'mem', I4L_PORT => 'io', I4L_IO0 => 'io0', I4L_IO1 => 'io1', I4L_FIRMWARE => 'firmware'); foreach ('link/myisp', 'card/mycard') { my %conf = getVarsFromSh("$::prefix/etc/isdn/profile/$_"); foreach (keys %conf) { $isdn->{$match{$_}} = $conf{$_} if $match{$_} && $conf{$_}; } } $isdn->{passwd} = network::tools::passwd_by_login($isdn->{login}); #$isdn->{description} = ''; #$isdn->{vendor} = ''; #$isdn->{passwd2} = ''; } my $file = "$ENV{SHARE_PATH}/ldetect-lst/isdn.db"; $file = "$::prefix$file" if !-e $file; sub get_info_providers_backend { 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 detect_backend { my ($modules_conf) = @_; 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->{description} =~ s/.*\|//; # $c->{options} !~ /id=HiSax/ && $isdn->{driver} eq "hisax" and $c->{options} .= " id=HiSax"; if ($c->{options} !~ /protocol=/ && $isdn->{protocol} =~ /\d/) { $modules_conf->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 get_cards_by_type { my ($isdn_type) = @_; grep { $_->{card} eq $isdn_type } @isdndata; } sub 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;