Re: [Paraview] CoProcessing - Export State

2010-09-02 Thread Fabian, Nathan
Well part of my problem was (and maybe all of it except I built clean, so I can't verify) that there was a switch from Utilities/VTKPythonWrapping to Utilities/VTKPythonWrapping/site-packages for the PYTHONPATH that I was not aware of. I'm guessing the updates were installed there, but I was

[Paraview] CoProcessing - Export State

2010-09-01 Thread Fabian, Nathan
Hi, When I export state with the image data into the coprocessing python script it includes some properties which don't appear when I use coprocessing. For instance, DataRepresentation1.SelectOrientationVectors = [None, '']. It complains with: File

Re: [Paraview] CoProcessing - Export State

2010-09-01 Thread Andy Bauer
This was fixed a little while ago. Try updating paraview if you can. The change servermanager.py is: @@ -796,6 +796,10 @@ class ArraySelectionProperty( VectorProperty): elif len(values) == 2: if isinstance(values[0], str): val = str(ASSOCIATIONS[values[0]])

Re: [Paraview] CoProcessing - Export State

2010-09-01 Thread Fabian, Nathan
Okay thanks. Apparently, I'm doing some version of building that includes not bringing those updates over from the src directory to the build directory... On 9/1/10 4:08 PM, Andy Bauer andy.ba...@kitware.com wrote: This was fixed a little while ago. Try updating paraview if you can. The

Re: [Paraview] CoProcessing - Export State

2010-09-01 Thread Andy Bauer
The other person that mentioned this problem also didn't seem to have the servermanager.py file updated in the build directory even though they updated their code in the source tree. I'll check on that to see why it's happening. Thanks, Andy On Wed, Sep 1, 2010 at 6:16 PM, Fabian, Nathan

Re: [Paraview] CoProcessing - Export State

2010-09-01 Thread pat marion
If you just run 'make paraview' it won't copy the py files. The target responsible for copying the py files is 'make paraview_pyc'. If you just run 'make' then the paraview_pyc target should re-execute when the timestamps have been modified on any of the py files. Maybe we should add a new