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/kcheckpass/kcheckpass.c (-1 / +1 lines)
Lines 361-367 Link Here
361
  if ((p = getenv("KDE_PAM_ACTION")))
361
  if ((p = getenv("KDE_PAM_ACTION")))
362
    caller = p;
362
    caller = p;
363
# endif
363
# endif
364
  if ((p = getenv("KCHECKPASS_USER")))
364
  if ((p = getenv("TCHECKPASS_USER")))
365
    username = p;
365
    username = p;
366
#endif
366
#endif
(-)tdebase/drkonqi/main.cpp (-1 / +1 lines)
Lines 65-71 Link Here
65
     exit (255);
65
     exit (255);
66
66
67
  // Make sure that DrKonqi doesn't start DrKonqi when it crashes :-]
67
  // Make sure that DrKonqi doesn't start DrKonqi when it crashes :-]
68
  setenv("KDE_DEBUG", "true", 1);
68
  setenv("TDE_DEBUG", "true", 1);
69
  unsetenv("SESSION_MANAGER");
69
  unsetenv("SESSION_MANAGER");
70
70
71
  KAboutData aboutData( "drkonqi",
71
  KAboutData aboutData( "drkonqi",
(-)tdebase/kdesktop/main.cc (-1 / +1 lines)
Lines 101-107 Link Here
101
void KDesktop::slotUpAndRunning()
101
void KDesktop::slotUpAndRunning()
102
{
102
{
103
    // Activate crash recovery
103
    // Activate crash recovery
104
    if (getenv("KDE_DEBUG") == NULL)
104
    if (getenv("TDE_DEBUG") == NULL)
105
        KCrash::setEmergencySaveFunction(crashHandler); // Try to restart on crash
105
        KCrash::setEmergencySaveFunction(crashHandler); // Try to restart on crash
106
}
106
}
(-)tdebase/doc/userguide/kde-for-admins.docbook (-1 / +1 lines)
Lines 1201-1207 Link Here
1201
</listitem>
1201
</listitem>
1202
</varlistentry>
1202
</varlistentry>
1203
1203
1204
<varlistentry><term>$<envar>KDE_FORK_SLAVES</envar></term>
1204
<varlistentry><term>$<envar>TDE_FORK_SLAVES</envar></term>
1205
<listitem><para>(Since &kde; 3.2.3) Set this variable to spawn
1205
<listitem><para>(Since &kde; 3.2.3) Set this variable to spawn
1206
<acronym>KIO</acronym>-slaves directly from the application process
1206
<acronym>KIO</acronym>-slaves directly from the application process
1207
itself. By default <acronym>KIO</acronym>-slaves are spawned using
1207
itself. By default <acronym>KIO</acronym>-slaves are spawned using
(-)tdebase/kioslave/trash/testtrash.cpp (-1 / +1 lines)
Lines 80-86 Link Here
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
82
    setenv( "XDG_DATA_HOME", TQFile::encodeName( TQDir::homeDirPath() + "/.local-testtrash" ), true );
82
    setenv( "XDG_DATA_HOME", TQFile::encodeName( TQDir::homeDirPath() + "/.local-testtrash" ), true );
83
    setenv( "KDE_FORK_SLAVES", "yes", true );
83
    setenv( "TDE_FORK_SLAVES", "yes", true );
84
84
85
    KApplication::disableAutoDcopRegistration();
85
    KApplication::disableAutoDcopRegistration();
86
    KCmdLineArgs::init(argc,argv,"testtrash", 0, 0, 0, 0);
86
    KCmdLineArgs::init(argc,argv,"testtrash", 0, 0, 0, 0);
(-)tdebase/tqt3integration/utils/qt/in/qtkdeintegration_x11_1.cpp (-2 / +2 lines)
Lines 41-49 Link Here
41
41
42
static TQCString findLibrary()
42
static TQCString findLibrary()
43
    {
43
    {
44
    if( getenv( "KDE_FULL_SESSION" ) == NULL )
44
    if( getenv( "TDE_FULL_SESSION" ) == NULL )
45
        return "";
45
        return "";
46
    if( getenv( "KDE_FULL_SESSION" )[ 0 ] != 't' && getenv( "KDE_FULL_SESSION" )[ 0 ] != '1' )
46
    if( getenv( "TDE_FULL_SESSION" )[ 0 ] != 't' && getenv( "TDE_FULL_SESSION" )[ 0 ] != '1' )
47
        return "";
47
        return "";
48
    if( getenv( "TQT_NO_KDE_INTEGRATION" ) == NULL
48
    if( getenv( "TQT_NO_KDE_INTEGRATION" ) == NULL
49
        || getenv( "TQT_NO_KDE_INTEGRATION" )[ 0 ] == '0' )
49
        || getenv( "TQT_NO_KDE_INTEGRATION" )[ 0 ] == '0' )
(-)tdebase/doc/userguide/kde-for-admins.docbook (-1 / +1 lines)
Lines 1212-1218 Link Here
1212
</listitem>
1212
</listitem>
1213
</varlistentry>
1213
</varlistentry>
1214
1214
1215
<varlistentry><term>$<envar>KDE_HOME_READONLY</envar></term>
1215
<varlistentry><term>$<envar>TDE_HOME_READONLY</envar></term>
1216
<listitem><para>Set this variable to indicate that your home directory is
1216
<listitem><para>Set this variable to indicate that your home directory is
1217
mounted as read-only.</para>
1217
mounted as read-only.</para>
1218
</listitem>
1218
</listitem>
(-)tdebase/ksmserver/main.cpp (-1 / +1 lines)
Lines 70-76 Link Here
70
{
70
{
71
  TQCString msg;
71
  TQCString msg;
72
  TQCString path = getenv("HOME");
72
  TQCString path = getenv("HOME");
73
  TQCString readOnly = getenv("KDE_HOME_READONLY");
73
  TQCString readOnly = getenv("TDE_HOME_READONLY");
74
  if (path.isEmpty())
74
  if (path.isEmpty())
75
  {
75
  {
76
     msg = "$HOME not set!";
76
     msg = "$HOME not set!";
(-)tdebase/doc/userguide/kde-for-admins.docbook (-1 / +1 lines)
Lines 1225-1231 Link Here
1225
</listitem>
1225
</listitem>
1226
</varlistentry>
1226
</varlistentry>
1227
1227
1228
<varlistentry><term>$<envar>KDE_IS_PRELINKED</envar></term><listitem><para>
1228
<varlistentry><term>$<envar>TDE_IS_PRELINKED</envar></term><listitem><para>
1229
(Since &kde; 3.2) - Set this variable to indicate that you have prelinked
1229
(Since &kde; 3.2) - Set this variable to indicate that you have prelinked
1230
your &kde; binaries and libraries. This will turn off
1230
your &kde; binaries and libraries. This will turn off
1231
<command>tdeinit</command>.</para>
1231
<command>tdeinit</command>.</para>
(-)tdebase/doc/faq/webbrowse.docbook (-2 / +2 lines)
Lines 88-98 Link Here
88
support.  Adding the following to <filename>/etc/profile</filename> or any
88
support.  Adding the following to <filename>/etc/profile</filename> or any
89
other script that is sourced on login should solve this problem:
89
other script that is sourced on login should solve this problem:
90
<screen>
90
<screen>
91
export KDE_NO_IPV6=true
91
export TDE_NO_IPV6=true
92
</screen>
92
</screen>
93
for bourne compatible shells, and for C-style shells:
93
for bourne compatible shells, and for C-style shells:
94
<screen>
94
<screen>
95
setenv KDE_NO_IPV6 true
95
setenv TDE_NO_IPV6 true
96
</screen>
96
</screen>
97
</para>
97
</para>
98
</answer>
98
</answer>
(-)tdebase/doc/userguide/kde-for-admins.docbook (-1 / +1 lines)
Lines 1218-1224 Link Here
1218
</listitem>
1218
</listitem>
1219
</varlistentry>
1219
</varlistentry>
1220
1220
1221
<varlistentry><term>$<envar>KDE_NO_IPV6</envar></term><listitem><para>
1221
<varlistentry><term>$<envar>TDE_NO_IPV6</envar></term><listitem><para>
1222
(Since &kde; 3.2.3) - Set this variable to disable <acronym>IPv6</acronym>
1222
(Since &kde; 3.2.3) - Set this variable to disable <acronym>IPv6</acronym>
1223
support and <acronym>IPv6</acronym> <acronym>DNS</acronym>
1223
support and <acronym>IPv6</acronym> <acronym>DNS</acronym>
1224
lookups.</para>
1224
lookups.</para>
(-)tdebase/kcheckpass/kcheckpass.c (-1 / +1 lines)
Lines 358-364 Link Here
358
358
359
#ifdef ACCEPT_ENV
359
#ifdef ACCEPT_ENV
360
# ifdef HAVE_PAM
360
# ifdef HAVE_PAM
361
  if ((p = getenv("KDE_PAM_ACTION")))
361
  if ((p = getenv("TDE_PAM_ACTION")))
362
    caller = p;
362
    caller = p;
363
# endif
363
# endif
364
  if ((p = getenv("KCHECKPASS_USER")))
364
  if ((p = getenv("KCHECKPASS_USER")))
(-)tdebase/kioslave/DEBUG.howto (-3 / +3 lines)
Lines 18-24 Link Here
18
18
19
E.g. to start all 'http' slaves in debug mode, you type:
19
E.g. to start all 'http' slaves in debug mode, you type:
20
20
21
	KDE_SLAVE_DEBUG_WAIT=http tdeinit
21
	TDE_SLAVE_DEBUG_WAIT=http tdeinit
22
22
23
This will restart 'tdeinit' and 'klauncher'.
23
This will restart 'tdeinit' and 'klauncher'.
24
24
Lines 51-63 Link Here
51
KLauncher can be told to run certain io-slaves through valgrind. The following
51
KLauncher can be told to run certain io-slaves through valgrind. The following
52
command can be used to let klauncher run all https io-slaves via valgrind:
52
command can be used to let klauncher run all https io-slaves via valgrind:
53
53
54
	KDE_SLAVE_VALGRIND=https tdeinit
54
	TDE_SLAVE_VALGRIND=https tdeinit
55
55
56
The valgrind output will appear as the stderr output of the tdeinit process.
56
The valgrind output will appear as the stderr output of the tdeinit process.
57
The $VALGRIND_OPTS environment variable can be used to pass options to valgrind.
57
The $VALGRIND_OPTS environment variable can be used to pass options to valgrind.
58
If you want to use a different skin:
58
If you want to use a different skin:
59
59
60
	KDE_SLAVE_VALGRIND_SKIN=calltree      ( for example )
60
	TDE_SLAVE_VALGRIND_SKIN=calltree      ( for example )
61
61
62
62
63
How to get debug output
63
How to get debug output
(-)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
(-)tdebase/doc/userguide/kde-for-admins.docbook (-1 / +1 lines)
Lines 1248-1254 Link Here
1248
</listitem>
1248
</listitem>
1249
</varlistentry>
1249
</varlistentry>
1250
1250
1251
<varlistentry><term>$<envar>KDESYCOCA</envar></term><listitem><para>Allows
1251
<varlistentry><term>$<envar>TDESYCOCA</envar></term><listitem><para>Allows
1252
you to specify the path and the name of the generated &kde; system
1252
you to specify the path and the name of the generated &kde; system
1253
configuration cache file.</para>
1253
configuration cache file.</para>
1254
</listitem>
1254
</listitem>
(-)tdebase/tdesu/tdesu/tdesu.cpp (-1 / +1 lines)
Lines 302-308 Link Here
302
    
302
    
303
    if (!new_dcop)
303
    if (!new_dcop)
304
    {
304
    {
305
        TQCString ksycoca = "KDESYCOCA="+TQFile::encodeName(locateLocal("cache", "ksycoca"));
305
        TQCString ksycoca = "TDESYCOCA="+TQFile::encodeName(locateLocal("cache", "ksycoca"));
306
        env << ksycoca;
306
        env << ksycoca;
307
307
308
        options += "xf"; // X-only, dcop forwarding enabled.
308
        options += "xf"; // X-only, dcop forwarding enabled.

Return to bug 860