Bug 51026

Summary: more than *.keytab files are recognised
Product: [Applications] konsole Reporter: Volker Kuhlmann <bugz57>
Component: generalAssignee: Konsole Developer <konsole-devel>
Status: RESOLVED FIXED    
Severity: normal    
Priority: NOR    
Version: 1.1.3   
Target Milestone: ---   
Platform: openSUSE   
OS: Linux   
Latest Commit: Version Fixed In:

Description Volker Kuhlmann 2002-11-22 02:04:59 UTC
Version:           1.1.3 (using KDE 3.0.5)
Installed from:    SuSE
Compiler:          gcc version 3.2
OS:          Linux (i686) release 2.4.19-4GB

The README.Keytab says ~/.kde/share/apps/konsole/*.keytab files are read for additional keyboard mappings.
However, files *.keytab.1 or *.keytab.diff are also read.
Probably it's *kaytab* which is read. Could you make that *keytab please - then one can keep diffs and backups there too.
Comment 1 Waldo Bastian 2002-11-22 10:23:10 UTC
Subject: kdelibs/kdecore

CVS commit by waba: 

CCMAIL: 51026-done@bugs.kde.org
findAllResources("data", "konsole/*.keytab") should not return *.keytab.diff
-        if (regexp.search(fn) == -1)
+        if (!regexp.exactMatch(fn))
          continue; // No match


  M +3 -4      kstandarddirs.cpp   1.151

Comment 2 Stephan Kulow 2002-11-22 10:37:10 UTC
Subject: Re:  New: more than *.keytab files are recognised

Am Friday 22 November 2002 02:05 schrieb list0570@paradise.net.nz:
> ------- You are receiving this mail because: -------
> You are on the CC list for the bug, or are watching someone who is.
>
> http://bugs.kde.org/show_bug.cgi?id=51026
>            Summary: more than *.keytab files are recognised
>            Product: konsole
>            Version: 1.1.3
>           Platform: SuSE RPMs
>         OS/Version: Linux
>             Status: UNCONFIRMED
>           Severity: normal
>           Priority: NOR
>          Component: general
>         AssignedTo: konsole-devel@kde.org
>         ReportedBy: list0570@paradise.net.nz
>
>
> Version:           1.1.3 (using KDE 3.0.5)
> Installed from:    SuSE
> Compiler:          gcc version 3.2
> OS:          Linux (i686) release 2.4.19-4GB
>
> The README.Keytab says ~/.kde/share/apps/konsole/*.keytab files are read
> for additional keyboard mappings. However, files *.keytab.1 or
> *.keytab.diff are also read.
> Probably it's *kaytab* which is read. Could you make that *keytab please -
> then one can keep diffs and backups there too.

Hmm, the code says *.keytab. That would be a grave bug in KStandardDirs if
confirmed.

Greetings, Stephan