By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 860
Collapse All | Expand All

(-)tdebase/doc/userguide/kde-for-admins.docbook (-1 / +1 lines)
Lines 1232-1238 Link Here
1232
</listitem>
1232
</listitem>
1233
</varlistentry>
1233
</varlistentry>
1234
1234
1235
<varlistentry><term>$<envar>KDE_UTF8_FILENAMES</envar></term><listitem><para>If
1235
<varlistentry><term>$<envar>TDE_UTF8_FILENAMES</envar></term><listitem><para>If
1236
this environment variable is set, &kde; assumes all filenames are in
1236
this environment variable is set, &kde; assumes all filenames are in
1237
<acronym>UTF-8</acronym> encoding regardless of the current C
1237
<acronym>UTF-8</acronym> encoding regardless of the current C
1238
locale.</para>
1238
locale.</para>
(-)tdebase/kioslave/trash/testtrash.cpp (-2 / +2 lines)
Lines 73-81 Link Here
73
    // However this assume your $HOME doesn't use characters from other locales...
73
    // However this assume your $HOME doesn't use characters from other locales...
74
    setenv( "LC_ALL", "en_GB.ISO-8859-1", 1 );
74
    setenv( "LC_ALL", "en_GB.ISO-8859-1", 1 );
75
#ifdef UTF8TEST
75
#ifdef UTF8TEST
76
    setenv( "KDE_UTF8_FILENAMES", "true", 1 );
76
    setenv( "TDE_UTF8_FILENAMES", "true", 1 );
77
#else
77
#else
78
    unsetenv( "KDE_UTF8_FILENAMES" );
78
    unsetenv( "TDE_UTF8_FILENAMES" );
79
#endif
79
#endif
80
80
81
    // Use another directory than the real one, just to keep things clean
81
    // Use another directory than the real one, just to keep things clean
(-)tdelibs/tdecore/klocale.cpp (-1 / +1 lines)
Lines 2074-2080 Link Here
2074
{
2074
{
2075
  // If the following environment variable is set, assume all filenames
2075
  // If the following environment variable is set, assume all filenames
2076
  // are in UTF-8 regardless of the current C locale.
2076
  // are in UTF-8 regardless of the current C locale.
2077
  d->utf8FileEncoding = getenv("KDE_UTF8_FILENAMES") != 0;
2077
  d->utf8FileEncoding = getenv("TDE_UTF8_FILENAMES") != 0;
2078
  if (d->utf8FileEncoding)
2078
  if (d->utf8FileEncoding)
2079
  {
2079
  {
2080
    TQFile::setEncodingFunction(KLocale::encodeFileNameUTF8);
2080
    TQFile::setEncodingFunction(KLocale::encodeFileNameUTF8);
(-)applications/kmymoney/doc/en/kmymoney2.1 (-1 / +1 lines)
Lines 189-195 Link Here
189
deciding upon a language, the following resources are looked up, in
189
deciding upon a language, the following resources are looked up, in
190
order: KDE_LANG, configuration file, LC_CTYPE, LC_MESSAGES, LC_ALL,
190
order: KDE_LANG, configuration file, LC_CTYPE, LC_MESSAGES, LC_ALL,
191
LANG.
191
LANG.
192
.IP KDE_UTF8_FILENAMES
192
.IP TDE_UTF8_FILENAMES
193
Assume that all filenames are in UTF-8 format regardless of the
193
Assume that all filenames are in UTF-8 format regardless of the
194
current language setting. Otherwise the filename format is defined by
194
current language setting. Otherwise the filename format is defined by
195
the language.
195
the language.

Return to bug 860