? paraview.log
? probe-notworking.patch
Index: vtkPVApplication.cxx
===================================================================
RCS file: /cvsroot/ParaView/ParaView/GUI/Client/vtkPVApplication.cxx,v
retrieving revision 1.297.2.3
diff -u -3 -p -r1.297.2.3 vtkPVApplication.cxx
--- vtkPVApplication.cxx	13 Aug 2004 13:28:10 -0000	1.297.2.3
+++ vtkPVApplication.cxx	17 Sep 2004 19:18:16 -0000
@@ -2085,60 +2085,79 @@ void vtkPVApplication::PrintSelf(ostream
   this->Superclass::PrintSelf(os,indent);
 
   os << indent << "ProcessModule: " << this->ProcessModule << endl;;
-  os << indent << "RunningParaViewScript: " 
-     << ( this->RunningParaViewScript ? "on" : " off" ) << endl;
-  os << indent << "NumberOfPipes: " << this->NumberOfPipes << endl;
-  os << indent << "UseRenderingGroup: " << (this->UseRenderingGroup?"on":"off")
-     << endl; 
-  os << indent << "UseOffscreenRendering: " << (this->UseOffscreenRendering?"on":"off")
-     << endl; 
   os << indent << "StartGUI: " << this->StartGUI << endl;
-  if (this->UseTiledDisplay)
-    { 
-    os << indent << "UseTiledDisplay: On\n";
-    os << indent << "TileDimensions: " << this->TileDimensions[0]
-       << ", " << this->TileDimensions[1] << endl;
+  if (this->StartEmpty)
+    {
+    os << indent << "ParaView was started with no default modules.\n";
+    }
+  os << indent << "Display3DWidgets: " << (this->Display3DWidgets?"on":"off") 
+     << endl;
+  os << indent << "TraceFileName: " 
+     << (this->TraceFileName ? this->TraceFileName : "(none)") << endl;
+  os << indent << "Argv0: " 
+     << (this->Argv0 ? this->Argv0 : "(none)") << endl;
+
+  os << indent << "ShowSourcesLongHelp: " 
+     << (this->ShowSourcesLongHelp?"on":"off") << endl;
+  os << indent << "SourcesBrowserAlwaysShowName: " 
+     << (this->SourcesBrowserAlwaysShowName?"on":"off") << endl;
+
+  os << indent << "CrashOnErrors: " << (this->CrashOnErrors?"on":"off") << endl;
+
+  os << indent << "SMApplication: ";
+  if (this->SMApplication)
+    {
+    os << endl;
+    this->SMApplication->PrintSelf(os, indent.GetNextIndent());
+    }
+  else
+    {
+    os << "(none)" << endl;
     }
 
-  os << indent << "UseStereoRendering: " << this->UseStereoRendering << endl;
-  os << indent << "RenderModuleName: " 
-     << (this->RenderModuleName?this->RenderModuleName:"(none)") << endl;
+  this->AboutPrintSelf(os,indent);
+}
 
+//----------------------------------------------------------------------------
+void vtkPVApplication::AboutPrintSelf(ostream& os, vtkIndent indent)
+{
   if (this->ClientMode)
     {
     os << indent << "Running as a client\n";
     os << indent << "Port: " << this->Port << endl;
-    os << indent << "RenderNodePort: " << this->RenderNodePort << endl;
     os << indent << "RenderServerPort: " << this->RenderServerPort << endl;
+    os << indent << "RenderNodePort: " << this->RenderNodePort << endl;
     os << indent << "Host: " << (this->HostName?this->HostName:"(none)") << endl;
     os << indent << "Render Host: " << (this->RenderServerHostName?this->RenderServerHostName:"(none)") << endl;
     os << indent << "Username: " 
        << (this->Username?this->Username:"(none)") << endl;
     os << indent << "AlwaysSSH: " << this->AlwaysSSH << endl;
-    os << indent << "ReverseConnection: " << this->ReverseConnection << endl;
+    os << indent << "ReverseConnection: " << (this->ReverseConnection?"on":"off") << endl;
     }
+
   if (this->ServerMode)
     {
     os << indent << "Running as a server\n";
     os << indent << "Port: " << this->Port << endl;
     os << indent << "RenderServerPort: " << this->RenderServerPort << endl;
-    os << indent << "ReverseConnection: " << this->ReverseConnection << endl;
+    os << indent << "ReverseConnection: " << (this->ReverseConnection?"on":"off") << endl;
     }
+
   if (this->RenderServerMode)
     {
     if(this->ClientMode)
       {
-      os << indent << "Running as a client connectd to a render server\n";
+      os << indent << "Running as a client connected to a render server\n";
       }
     else
       {
       os << indent << "Running as a render server\n";
-      os << indent << "RenderServerPort: " << this->RenderServerPort << endl;
       os << indent << "Port: " << this->Port << endl;
-      os << indent << "ReverseConnection: " << this->ReverseConnection << endl;
+      os << indent << "RenderServerPort: " << this->RenderServerPort << endl;
+      os << indent << "ReverseConnection: " << (this->ReverseConnection?"on":"off") << endl;
       }
-    
     }
+
   if (this->UseSoftwareRendering)
     {
     os << indent << "UseSoftwareRendering: Enabled\n";
@@ -2147,44 +2166,46 @@ void vtkPVApplication::PrintSelf(ostream
     {
     os << indent << "UseSatelliteSoftware: Enabled\n";
     }
-  if (this->StartEmpty)
+  if(this->UseStereoRendering)
     {
-    os << indent << "ParaView was started with no default modules.\n";
+    os << indent << "UseStereoRendering: Enabled\n";
+    }
+  if(this->UseOffscreenRendering)
+    {
+    os << indent << "UseOffscreenRendering: Enabled\n"; 
+    }
+  if(this->RunningParaViewScript)
+    {
+    os << indent << "RunningParaViewScript: Enabled\n";
+    }
+  if (this->UseTiledDisplay)
+    { 
+    os << indent << "UseTiledDisplay: On\n";
+    os << indent << "TileDimensions: " << this->TileDimensions[0]
+       << ", " << this->TileDimensions[1] << endl;
     }
-  os << indent << "Display3DWidgets: " << (this->Display3DWidgets?"on":"off") 
-     << endl;
-  os << indent << "TraceFileName: " 
-     << (this->TraceFileName ? this->TraceFileName : "(none)") << endl;
-  os << indent << "Argv0: " 
-     << (this->Argv0 ? this->Argv0 : "(none)") << endl;
-
-  os << indent << "RenderModuleName: " 
-    << (this->RenderModuleName?this->RenderModuleName:"(null)") << endl;
-  os << indent << "ShowSourcesLongHelp: " 
-     << (this->ShowSourcesLongHelp?"on":"off") << endl;
-  os << indent << "SourcesBrowserAlwaysShowName: " 
-     << (this->SourcesBrowserAlwaysShowName?"on":"off") << endl;
-
-  os << indent << "CrashOnErrors: " << (this->CrashOnErrors?"on":"off") << endl;
-  os << indent << "RenderServerPort: " << this->RenderServerPort << endl;
-  os << indent << "MachinesFileName: " 
-    << (this->MachinesFileName?this->MachinesFileName:"(null)") << endl;
-  os << indent << "CaveConfigurationFileName: " 
-    << (this->CaveConfigurationFileName?this->CaveConfigurationFileName:"(null)") << endl;
-  os << indent << "DisableComposite: " << this->DisableComposite << endl;
 
-  os << indent << "SMApplication: ";
-  if (this->SMApplication)
+  os << indent << "NumberOfPipes: " << this->NumberOfPipes << endl;
+  if( this->RenderModuleName )
     {
-    os << endl;
-    this->SMApplication->PrintSelf(os, indent.GetNextIndent());
+    os << indent << "RenderModuleName: " << this->RenderModuleName << endl;
     }
-  else
+  if(this->UseRenderingGroup)
     {
-    os << "(none)" << endl;
+    os << indent << "UseRenderingGroup: Enabled\n";
     }
+  if(this->MachinesFileName)
+    {
+    os << indent << "MachinesFileName: " << this->MachinesFileName << endl;
+    }
+  if(this->CaveConfigurationFileName)
+    {
+    os << indent << "CaveConfigurationFileName: " << this->CaveConfigurationFileName << endl;
+    }
+  os << indent << "Composite is: " << (this->DisableComposite?"Disabled":"Enabled") << endl;
 }
 
+//----------------------------------------------------------------------------
 void vtkPVApplication::DisplayTCLError(const char* message)
 {
   vtkErrorMacro("TclTk error: "<<message);
Index: vtkPVApplication.h
===================================================================
RCS file: /cvsroot/ParaView/ParaView/GUI/Client/vtkPVApplication.h,v
retrieving revision 1.118.2.1
diff -u -3 -p -r1.118.2.1 vtkPVApplication.h
--- vtkPVApplication.h	23 Jul 2004 19:23:52 -0000	1.118.2.1
+++ vtkPVApplication.h	17 Sep 2004 19:18:16 -0000
@@ -46,6 +46,7 @@ public:
   static vtkPVApplication* New();
   vtkTypeRevisionMacro(vtkPVApplication,vtkKWApplication);
   void PrintSelf(ostream& os, vtkIndent indent);
+  void AboutPrintSelf(ostream& os, vtkIndent indent);
   
   // Description:
   // Parses the command line arguments and modifies the applications
@@ -242,14 +243,14 @@ public:
   vtkGetStringMacro(Username);
 
   // Description:
-  // The the port for the client/server socket connection.
+  // The port for the client/server socket connection.
   vtkGetMacro(Port,int);
 
   // Description:
-  // The the port for the client/render server socket connection.
+  // The port for the client/render server socket connection.
   vtkGetMacro(RenderServerPort,int);
   // Description:
-  // The the port for the client/render server socket connection.
+  // The port for the client/render server socket connection.
   vtkGetMacro(RenderNodePort,int);
 
   // Description:
Index: vtkPVApplicationResources.cxx
===================================================================
RCS file: /cvsroot/ParaView/ParaView/GUI/Client/vtkPVApplicationResources.cxx,v
retrieving revision 1.21.4.1
diff -u -3 -p -r1.21.4.1 vtkPVApplicationResources.cxx
--- vtkPVApplicationResources.cxx	23 Jul 2004 19:23:52 -0000	1.21.4.1
+++ vtkPVApplicationResources.cxx	17 Sep 2004 19:18:16 -0000
@@ -281,6 +281,10 @@ void vtkPVApplication::AddAboutText(ostr
      << "http://www.kitware.com" << endl
      << "This is version " << this->MajorVersion << "." << this->MinorVersion
      << ", release " << this->GetApplicationReleaseName() << endl;
+
+  vtkIndent indent;
+  os << endl << "Runtime information:" << endl;
+  this->AboutPrintSelf(os, indent.GetNextIndent());
 }
 
 //----------------------------------------------------------------------------
