~ubuntu-branches/ubuntu/lucid/kmess/lucid

« back to all changes in this revision

Viewing changes to src/kmessdebug.h

  • Committer: Bazaar Package Importer
  • Author(s): Mark Purcell
  • Date: 2009-12-05 21:19:26 UTC
  • mfrom: (1.1.7 upstream) (0.1.8 sid)
  • Revision ID: james.westby@ubuntu.com-20091205211926-r26u8j38kysf6o2p
Tags: 2.0.2-1
* New upstream release 
  - Fixes friendly names (LP: #485640)
* Update Homepage: http://kmess.org
* Add Build-Depends: libphonon-dev | libqt4-phonon-dev (ubuntu friendly)
* kmess.1 fix lintian:hyphen-used-as-minus-sign

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
 
28
28
#if ( KMESS_DEBUG == 1 )
29
29
 
30
 
 
31
 
  /**
32
 
   * Local mode switch
33
 
   *
34
 
   * This switching option must be used with the KMess Test Server application.
35
 
   * The test server is a standalone Qt-only GUI application (meaning it can be
36
 
   * also used to test other projects and even WLM itself, with some fiddling)
37
 
   * which emulates locally all the functions of MSN's servers, to allow fast
38
 
   * verification of the user interface, quick testing of the protocol code
39
 
   * behavior, and effective testing in extreme conditions (for example, huge
40
 
   * contact lists, or sudden network loss).
41
 
   * The test server code is available in the KMess SVN:
42
 
   *
43
 
   * svn checkout https://kmess.svn.sourceforge.net/svnroot/kmess/trunk/kmesstestserver
44
 
   *
45
 
   * It is directly executable with (on *nixes):
46
 
   * <filename>{kmesstestserver build folder}/kmesstestserver</filename>
47
 
   * and takes no command line arguments (it's a GUI app, after all).
48
 
   *
49
 
   * Set this define to 1 to switch KMess to the local connection mode:
50
 
   * it will connect to the Test Server addresses, which are all on the local
51
 
   * host.
52
 
   * Set it to 0 for normal operation.
53
 
   */
54
 
  #define KMESS_ENABLE_LOCAL_MODE       0
55
 
 
56
 
 
57
30
  #define KMESSTEST
58
31
  #define KMESS_NETWORK_WINDOW
59
32
 
134
107
  #define KMESSDEBUG_APPDIRECTORYSERVICE
135
108
  #define KMESSDEBUG_PASSPORTLOGINSERVICE
136
109
//   #define KMESSDEBUG_XMLFUNCTIONS
 
110
  #define KMESSDEBUG_ROAMINGSERVICE
137
111
 
138
112
 
139
113
  #define KMESSDEBUG_PASSIVEPOPUP
142
116
  #define KMESSDEBUG_CHATNOTIFICATION
143
117
  #define KMESSDEBUG_NEWEMAILNOTIFICATION
144
118
 
145
 
#else
146
 
  // silences a compile time warning if enable-debug-output = 0 in configure
147
 
  #define KMESS_ENABLE_LOCAL_MODE       0
148
119
#endif
149
120
 
150
121