[Paraview] Custom filters

2016-12-08 Thread Rustem Khabetdinov
Hello

I have a custom filter that reads data with vtk exodus reader. I don't
understand how to display information about blocks(like using paraview
reader). I tried to add SILDomain from readers.xml but it doesn't work.

Is it possible to implement this using custom filters or should I write my
own reader based exodus?

Best Regards,
Rustem Khabetdinov.
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Search the list archives at: http://markmail.org/search/?q=ParaView

Follow this link to subscribe/unsubscribe:
http://public.kitware.com/mailman/listinfo/paraview


[Paraview] Custom filters

2017-03-22 Thread Rustem Khabetdinov
Hello,

Is it possible to change drop down list values from information script?
For example, we can take values from input arrays but instead we create
field self.names and take values from it.

Best Regards,
Rustem.
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Search the list archives at: http://markmail.org/search/?q=ParaView

Follow this link to subscribe/unsubscribe:
http://public.kitware.com/mailman/listinfo/paraview


[Paraview] Custom Filters MENU

2009-04-30 Thread Jacques Papper
Hi All, 

When I write my own plugin filters, I can choose to have them appear in a
menu of my choice rather than having them under Alphabetical. 
I would like to modify the .cpd files of custom filters so that some custom
filters appear in another menu than Alphabetical as well. How do I do this ?
Is this supported ?

Jacques PAPPER
Applied CFD Team Leader
Tel: +44 (0) 1234 324677


---
This email contains information that is private and confidential and is 
intended only for the addressee.  If you are not the intended recipient please 
delete it and notify us immediately by e-mailing the sender.
Note: All email sent to or from this address may be accessed by someone other 
than the recipient, for system management and security reasons.
Aircraft Research Association Ltd.  Registered in England, Registration No 
503668 Registered Office: Manton Lane, Bedford MK41 7PF England VAT No GB 
196351245


___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Follow this link to subscribe/unsubscribe:
http://www.paraview.org/mailman/listinfo/paraview


[Paraview] Custom Filters Menu

2010-06-25 Thread Johnson, Duncan (UK)
Hi All,
 
I'm looking for a way to put custom filters generated within paraview
(as cpd files) into my own categories in the filters menu.  Reading
this:
 
http://www.mail-archive.com/paraview@paraview.org/msg02907.html it seems
it can be done but I can't find any examples.  Could someone post the
changes that have to be made to cpd files to make them ServerManager XML
files?  I then assume you create an accompanying xfilterGUI.xml and run
them through cmake to produce a xfilter.so file which you then read in
with Manage Plugins?
 
Many Thanks,
 
Duncan
 
___ 
Duncan Johnson 
Senior Electromagnetics Engineer [AS&FC Local IT Administrator] 
LO Engineering 

BAE Systems 

W392A 
Warton Aerodrome 
Preston 
PR4 1AX 
Contact: 

Tel: +44 (0) 1772 (8)58347 
Email:  duncan.john...@baesystems.com 
___ 
BAE Systems (Operations) Limited: 

Registered Office: 
Warwick House 
PO Box 87 
Farnborough Aerospace Centre 
Farnborough, Hants 
GU14 6YU, UK 
Registered in England & Wales No: 1996687 
___ 
 


This email and any attachments are confidential to the intended
recipient and may also be privileged. If you are not the intended
recipient please delete it from your system and notify the sender.
You should not copy it or use it for any purpose nor disclose or
distribute its contents to any other person.


___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Follow this link to subscribe/unsubscribe:
http://www.paraview.org/mailman/listinfo/paraview


Re: [Paraview] Custom filters

2016-12-15 Thread Utkarsh Ayachit
Rustem,

Can you share snippets of your XML/code to help me understand how
you're building this custom filter?

Thanks
Utkarsh

On Thu, Dec 8, 2016 at 5:43 PM, Rustem Khabetdinov
 wrote:
> Hello
>
> I have a custom filter that reads data with vtk exodus reader. I don't
> understand how to display information about blocks(like using paraview
> reader). I tried to add SILDomain from readers.xml but it doesn't work.
>
> Is it possible to implement this using custom filters or should I write my
> own reader based exodus?
>
> Best Regards,
> Rustem Khabetdinov.
>
> ___
> Powered by www.kitware.com
>
> Visit other Kitware open-source projects at
> http://www.kitware.com/opensource/opensource.html
>
> Please keep messages on-topic and check the ParaView Wiki at:
> http://paraview.org/Wiki/ParaView
>
> Search the list archives at: http://markmail.org/search/?q=ParaView
>
> Follow this link to subscribe/unsubscribe:
> http://public.kitware.com/mailman/listinfo/paraview
>
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Search the list archives at: http://markmail.org/search/?q=ParaView

Follow this link to subscribe/unsubscribe:
http://public.kitware.com/mailman/listinfo/paraview


Re: [Paraview] Custom filters

2016-12-15 Thread Utkarsh Ayachit
Ah, looks like you're using a Python programmable filter. Alas,
currently, it's a bit complicated to do this for a Programmable
filter, it'll need some figuring out on my part. In the mean time,
subclassing Exodus reader may be the easier option.

Utkarsh

On Thu, Dec 15, 2016 at 6:09 AM, Utkarsh Ayachit
 wrote:
> Rustem,
>
> Can you share snippets of your XML/code to help me understand how
> you're building this custom filter?
>
> Thanks
> Utkarsh
>
> On Thu, Dec 8, 2016 at 5:43 PM, Rustem Khabetdinov
>  wrote:
>> Hello
>>
>> I have a custom filter that reads data with vtk exodus reader. I don't
>> understand how to display information about blocks(like using paraview
>> reader). I tried to add SILDomain from readers.xml but it doesn't work.
>>
>> Is it possible to implement this using custom filters or should I write my
>> own reader based exodus?
>>
>> Best Regards,
>> Rustem Khabetdinov.
>>
>> ___
>> Powered by www.kitware.com
>>
>> Visit other Kitware open-source projects at
>> http://www.kitware.com/opensource/opensource.html
>>
>> Please keep messages on-topic and check the ParaView Wiki at:
>> http://paraview.org/Wiki/ParaView
>>
>> Search the list archives at: http://markmail.org/search/?q=ParaView
>>
>> Follow this link to subscribe/unsubscribe:
>> http://public.kitware.com/mailman/listinfo/paraview
>>
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Search the list archives at: http://markmail.org/search/?q=ParaView

Follow this link to subscribe/unsubscribe:
http://public.kitware.com/mailman/listinfo/paraview


Re: [Paraview] Custom filters

2017-03-22 Thread Utkarsh Ayachit
If I understanding you correctly, unfortunately no, it's not possible
using custom filters.

On Wed, Mar 22, 2017 at 6:50 AM, Rustem Khabetdinov
 wrote:
> Hello,
>
> Is it possible to change drop down list values from information script?  For
> example, we can take values from input arrays but instead we create field
> self.names and take values from it.
>
> Best Regards,
> Rustem.
>
> ___
> Powered by www.kitware.com
>
> Visit other Kitware open-source projects at
> http://www.kitware.com/opensource/opensource.html
>
> Please keep messages on-topic and check the ParaView Wiki at:
> http://paraview.org/Wiki/ParaView
>
> Search the list archives at: http://markmail.org/search/?q=ParaView
>
> Follow this link to subscribe/unsubscribe:
> http://public.kitware.com/mailman/listinfo/paraview
>
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Search the list archives at: http://markmail.org/search/?q=ParaView

Follow this link to subscribe/unsubscribe:
http://public.kitware.com/mailman/listinfo/paraview


[Paraview] Custom filters in Python

2009-01-24 Thread Jacques Papper
I can't find a previous email on this topic and therefore I have to ask :
How do I load a custom filter into pvpython ?

Thanks,

Jacques
___
ParaView mailing list
ParaView@paraview.org
http://www.paraview.org/mailman/listinfo/paraview


Re: [Paraview] Custom Filters MENU

2009-04-30 Thread Utkarsh Ayachit
Menu position cannot be controlled from the cpd files. You can write a
plugin that provides the custom filter you want and then add it to the
custom menu.

Utkarsh

On Thu, Apr 30, 2009 at 4:57 AM, Jacques Papper  wrote:
> Hi All,
>
> When I write my own plugin filters, I can choose to have them appear in a
> menu of my choice rather than having them under Alphabetical.
> I would like to modify the .cpd files of custom filters so that some custom
> filters appear in another menu than Alphabetical as well. How do I do this ?
> Is this supported ?
>
> Jacques PAPPER
> Applied CFD Team Leader
> Tel: +44 (0) 1234 324677
>
>
> ---
> This email contains information that is private and confidential and is 
> intended only for the addressee.  If you are not the intended recipient 
> please delete it and notify us immediately by e-mailing the sender.
> Note: All email sent to or from this address may be accessed by someone other 
> than the recipient, for system management and security reasons.
> Aircraft Research Association Ltd.  Registered in England, Registration No 
> 503668 Registered Office: Manton Lane, Bedford MK41 7PF England VAT No GB 
> 196351245
>
>
> ___
> Powered by www.kitware.com
>
> Visit other Kitware open-source projects at 
> http://www.kitware.com/opensource/opensource.html
>
> Please keep messages on-topic and check the ParaView Wiki at: 
> http://paraview.org/Wiki/ParaView
>
> Follow this link to subscribe/unsubscribe:
> http://www.paraview.org/mailman/listinfo/paraview
>
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Follow this link to subscribe/unsubscribe:
http://www.paraview.org/mailman/listinfo/paraview


Re: [Paraview] Custom Filters MENU

2009-04-30 Thread Eric E. Monson

Hey all,

For my users, too, I've been thinking that it would be nice if all  
custom filters showed up in a special menu item by themselves.


I'm having trouble understanding, Utkarsh, what you mean by "a plugin  
that provides the custom filter you want"... Is it possible for a  
plugin to just load cpd files? Could you please clarify that point a  
bit?


Thanks a lot,
-Eric

--
Eric E Monson
Duke Visualization Technology Group


On Apr 30, 2009, at 8:16 AM, Utkarsh Ayachit wrote:


Menu position cannot be controlled from the cpd files. You can write a
plugin that provides the custom filter you want and then add it to the
custom menu.

Utkarsh

On Thu, Apr 30, 2009 at 4:57 AM, Jacques Papper   
wrote:

Hi All,

When I write my own plugin filters, I can choose to have them  
appear in a

menu of my choice rather than having them under Alphabetical.
I would like to modify the .cpd files of custom filters so that  
some custom
filters appear in another menu than Alphabetical as well. How do I  
do this ?

Is this supported ?

Jacques PAPPER
Applied CFD Team Leader
Tel: +44 (0) 1234 324677


---
This email contains information that is private and confidential  
and is intended only for the addressee.  If you are not the  
intended recipient please delete it and notify us immediately by e- 
mailing the sender.
Note: All email sent to or from this address may be accessed by  
someone other than the recipient, for system management and  
security reasons.
Aircraft Research Association Ltd.  Registered in England,  
Registration No 503668 Registered Office: Manton Lane, Bedford MK41  
7PF England VAT No GB 196351245



___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Follow this link to subscribe/unsubscribe:
http://www.paraview.org/mailman/listinfo/paraview


___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Follow this link to subscribe/unsubscribe:
http://www.paraview.org/mailman/listinfo/paraview


___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Follow this link to subscribe/unsubscribe:
http://www.paraview.org/mailman/listinfo/paraview


Re: [Paraview] Custom Filters MENU

2009-04-30 Thread Jacques Papper
I think this is a great idea.
 

-Original Message-
From: Eric E. Monson [mailto:emon...@cs.duke.edu] 
Sent: 30 April 2009 14:57
To: Utkarsh Ayachit
Cc: Jacques Papper; paraview
Subject: Re: [Paraview] Custom Filters MENU

Hey all,

For my users, too, I've been thinking that it would be nice if all custom
filters showed up in a special menu item by themselves.

I'm having trouble understanding, Utkarsh, what you mean by "a plugin that
provides the custom filter you want"... Is it possible for a plugin to just
load cpd files? Could you please clarify that point a bit?

Thanks a lot,
-Eric

--
Eric E Monson
Duke Visualization Technology Group


On Apr 30, 2009, at 8:16 AM, Utkarsh Ayachit wrote:

> Menu position cannot be controlled from the cpd files. You can write a 
> plugin that provides the custom filter you want and then add it to the 
> custom menu.
>
> Utkarsh
>
> On Thu, Apr 30, 2009 at 4:57 AM, Jacques Papper 
> wrote:
>> Hi All,
>>
>> When I write my own plugin filters, I can choose to have them appear 
>> in a menu of my choice rather than having them under Alphabetical.
>> I would like to modify the .cpd files of custom filters so that some 
>> custom filters appear in another menu than Alphabetical as well. How 
>> do I do this ?
>> Is this supported ?
>>
>> Jacques PAPPER
>> Applied CFD Team Leader
>> Tel: +44 (0) 1234 324677
>>
>>
>> ---
>> This email contains information that is private and confidential and 
>> is intended only for the addressee.  If you are not the intended 
>> recipient please delete it and notify us immediately by e- mailing 
>> the sender.
>> Note: All email sent to or from this address may be accessed by 
>> someone other than the recipient, for system management and security 
>> reasons.
>> Aircraft Research Association Ltd.  Registered in England, 
>> Registration No 503668 Registered Office: Manton Lane, Bedford MK41 
>> 7PF England VAT No GB 196351245
>>
>>
>> ___
>> Powered by www.kitware.com
>>
>> Visit other Kitware open-source projects at 
>> http://www.kitware.com/opensource/opensource.html
>>
>> Please keep messages on-topic and check the ParaView Wiki at: 
>> http://paraview.org/Wiki/ParaView
>>
>> Follow this link to subscribe/unsubscribe:
>> http://www.paraview.org/mailman/listinfo/paraview
>>
> ___
> Powered by www.kitware.com
>
> Visit other Kitware open-source projects at 
> http://www.kitware.com/opensource/opensource.html
>
> Please keep messages on-topic and check the ParaView Wiki at: 
> http://paraview.org/Wiki/ParaView
>
> Follow this link to subscribe/unsubscribe:
> http://www.paraview.org/mailman/listinfo/paraview


---
This email contains information that is private and confidential and is 
intended only for the addressee.  If you are not the intended recipient please 
delete it and notify us immediately by e-mailing the sender.
Note: All email sent to or from this address may be accessed by someone other 
than the recipient, for system management and security reasons.
Aircraft Research Association Ltd.  Registered in England, Registration No 
503668 Registered Office: Manton Lane, Bedford MK41 7PF England VAT No GB 
196351245


___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Follow this link to subscribe/unsubscribe:
http://www.paraview.org/mailman/listinfo/paraview


Re: [Paraview] Custom Filters MENU

2009-04-30 Thread Utkarsh Ayachit
What I mean by a plugin for a custom filter, is almost like a new
plugin for a filter with the servermanager xml and the gui xmls
however, instead of a new filter, the servermanager xml will inlcude
the custom filter definition. Having said that, it may a good feature
request to add support for specifying filter menu category in cpd
files. Please feel free to add a feature request to the bug tracker.

Utkarsh

On Thu, Apr 30, 2009 at 9:56 AM, Eric E. Monson  wrote:
> Hey all,
>
> For my users, too, I've been thinking that it would be nice if all custom
> filters showed up in a special menu item by themselves.
>
> I'm having trouble understanding, Utkarsh, what you mean by "a plugin that
> provides the custom filter you want"... Is it possible for a plugin to just
> load cpd files? Could you please clarify that point a bit?
>
> Thanks a lot,
> -Eric
>
> --
> Eric E Monson
> Duke Visualization Technology Group
>
>
> On Apr 30, 2009, at 8:16 AM, Utkarsh Ayachit wrote:
>
>> Menu position cannot be controlled from the cpd files. You can write a
>> plugin that provides the custom filter you want and then add it to the
>> custom menu.
>>
>> Utkarsh
>>
>> On Thu, Apr 30, 2009 at 4:57 AM, Jacques Papper  wrote:
>>>
>>> Hi All,
>>>
>>> When I write my own plugin filters, I can choose to have them appear in a
>>> menu of my choice rather than having them under Alphabetical.
>>> I would like to modify the .cpd files of custom filters so that some
>>> custom
>>> filters appear in another menu than Alphabetical as well. How do I do
>>> this ?
>>> Is this supported ?
>>>
>>> Jacques PAPPER
>>> Applied CFD Team Leader
>>> Tel: +44 (0) 1234 324677
>>>
>>>
>>> ---
>>> This email contains information that is private and confidential and is
>>> intended only for the addressee.  If you are not the intended recipient
>>> please delete it and notify us immediately by e-mailing the sender.
>>> Note: All email sent to or from this address may be accessed by someone
>>> other than the recipient, for system management and security reasons.
>>> Aircraft Research Association Ltd.  Registered in England, Registration
>>> No 503668 Registered Office: Manton Lane, Bedford MK41 7PF England VAT No GB
>>> 196351245
>>>
>>>
>>> ___
>>> Powered by www.kitware.com
>>>
>>> Visit other Kitware open-source projects at
>>> http://www.kitware.com/opensource/opensource.html
>>>
>>> Please keep messages on-topic and check the ParaView Wiki at:
>>> http://paraview.org/Wiki/ParaView
>>>
>>> Follow this link to subscribe/unsubscribe:
>>> http://www.paraview.org/mailman/listinfo/paraview
>>>
>> ___
>> Powered by www.kitware.com
>>
>> Visit other Kitware open-source projects at
>> http://www.kitware.com/opensource/opensource.html
>>
>> Please keep messages on-topic and check the ParaView Wiki at:
>> http://paraview.org/Wiki/ParaView
>>
>> Follow this link to subscribe/unsubscribe:
>> http://www.paraview.org/mailman/listinfo/paraview
>
>
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Follow this link to subscribe/unsubscribe:
http://www.paraview.org/mailman/listinfo/paraview


Re: [Paraview] Custom Filters MENU

2009-04-30 Thread Eric E. Monson

Hey again,

Thanks Utkarsh -- with your description I was able to figure out how  
to put a custom filter in some servermanager xml to load it through a  
plugin. I was also able to combine this with some GUI xml which adds a  
new menu item and puts the custom filter there, plus a custom icon for  
the menu (by using CMake and building against ParaView).


In reading through the Plugin HowTo, though, it seems to imply that  
both the icon and the GUI xml can be combined into a binary .bqrc file  
(using Qt's rcc) so that I could do all of this without having to  
build against ParaView (and just load servermanager xml and bqrc  
through the Plugin Manager).


I can load the servermanager xml and use the filter, but I can't seem  
to get the menu item and/or icon to show up when I load the bqrc file  
-- is there a special way to build the qrc and GUI xml together with  
rcc to make this work?


Thanks a lot,
-Eric


On Apr 30, 2009, at 10:20 AM, Utkarsh Ayachit wrote:


What I mean by a plugin for a custom filter, is almost like a new
plugin for a filter with the servermanager xml and the gui xmls
however, instead of a new filter, the servermanager xml will inlcude
the custom filter definition. Having said that, it may a good feature
request to add support for specifying filter menu category in cpd
files. Please feel free to add a feature request to the bug tracker.

Utkarsh

On Thu, Apr 30, 2009 at 9:56 AM, Eric E. Monson  
 wrote:

Hey all,

For my users, too, I've been thinking that it would be nice if all  
custom

filters showed up in a special menu item by themselves.

I'm having trouble understanding, Utkarsh, what you mean by "a  
plugin that
provides the custom filter you want"... Is it possible for a plugin  
to just

load cpd files? Could you please clarify that point a bit?

Thanks a lot,
-Eric

--
Eric E Monson
Duke Visualization Technology Group


On Apr 30, 2009, at 8:16 AM, Utkarsh Ayachit wrote:

Menu position cannot be controlled from the cpd files. You can  
write a
plugin that provides the custom filter you want and then add it to  
the

custom menu.

Utkarsh

On Thu, Apr 30, 2009 at 4:57 AM, Jacques Papper  
 wrote:


Hi All,

When I write my own plugin filters, I can choose to have them  
appear in a

menu of my choice rather than having them under Alphabetical.
I would like to modify the .cpd files of custom filters so that  
some

custom
filters appear in another menu than Alphabetical as well. How do  
I do

this ?
Is this supported ?

Jacques PAPPER
Applied CFD Team Leader
Tel: +44 (0) 1234 324677


---
This email contains information that is private and confidential  
and is
intended only for the addressee.  If you are not the intended  
recipient

please delete it and notify us immediately by e-mailing the sender.
Note: All email sent to or from this address may be accessed by  
someone
other than the recipient, for system management and security  
reasons.
Aircraft Research Association Ltd.  Registered in England,  
Registration
No 503668 Registered Office: Manton Lane, Bedford MK41 7PF  
England VAT No GB

196351245


___
Powered by www.kitware.com

Visit other Kitware open-source projects at
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at:
http://paraview.org/Wiki/ParaView

Follow this link to subscribe/unsubscribe:
http://www.paraview.org/mailman/listinfo/paraview


___
Powered by www.kitware.com

Visit other Kitware open-source projects at
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at:
http://paraview.org/Wiki/ParaView

Follow this link to subscribe/unsubscribe:
http://www.paraview.org/mailman/listinfo/paraview





___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Follow this link to subscribe/unsubscribe:
http://www.paraview.org/mailman/listinfo/paraview


Re: [Paraview] Custom filters in Python

2009-01-24 Thread Berk Geveci
Tools -> Manage Custom Filters

On Sat, Jan 24, 2009 at 5:44 AM, Jacques Papper
 wrote:
> I can't find a previous email on this topic and therefore I have to ask :
> How do I load a custom filter into pvpython ?
> Thanks,
> Jacques
> ___
> ParaView mailing list
> ParaView@paraview.org
> http://www.paraview.org/mailman/listinfo/paraview
>
>
___
ParaView mailing list
ParaView@paraview.org
http://www.paraview.org/mailman/listinfo/paraview


Re: [Paraview] Custom filters in Python

2009-01-24 Thread Jacques Papper
How do I access that through a python script ? (In batch)

2009/1/24 Berk Geveci 

> Tools -> Manage Custom Filters
>
> On Sat, Jan 24, 2009 at 5:44 AM, Jacques Papper
>  wrote:
> > I can't find a previous email on this topic and therefore I have to ask :
> > How do I load a custom filter into pvpython ?
> > Thanks,
> > Jacques
> > ___
> > ParaView mailing list
> > ParaView@paraview.org
> > http://www.paraview.org/mailman/listinfo/paraview
> >
> >
>
___
ParaView mailing list
ParaView@paraview.org
http://www.paraview.org/mailman/listinfo/paraview


Re: [Paraview] Custom filters in Python

2009-01-26 Thread Berk Geveci
That's a good question (i.e. I have no idea :-) ). I'll investigate it
this week and implement a solution if not already possible.

-berk

On Sat, Jan 24, 2009 at 2:01 PM, Jacques Papper
 wrote:
> How do I access that through a python script ? (In batch)
>
> 2009/1/24 Berk Geveci 
>>
>> Tools -> Manage Custom Filters
>>
>> On Sat, Jan 24, 2009 at 5:44 AM, Jacques Papper
>>  wrote:
>> > I can't find a previous email on this topic and therefore I have to ask
>> > :
>> > How do I load a custom filter into pvpython ?
>> > Thanks,
>> > Jacques
>> > ___
>> > ParaView mailing list
>> > ParaView@paraview.org
>> > http://www.paraview.org/mailman/listinfo/paraview
>> >
>> >
>
>
___
ParaView mailing list
ParaView@paraview.org
http://www.paraview.org/mailman/listinfo/paraview


Re: [Paraview] Custom filters in Python

2009-01-26 Thread Jacques Papper
Haha :)
Ok well, if it's not too complicated let me know and I'll try to help.
Jacques

2009/1/26 Berk Geveci 

> That's a good question (i.e. I have no idea :-) ). I'll investigate it
> this week and implement a solution if not already possible.
>
> -berk
>
> On Sat, Jan 24, 2009 at 2:01 PM, Jacques Papper
>   wrote:
> > How do I access that through a python script ? (In batch)
> >
> > 2009/1/24 Berk Geveci 
> >>
> >> Tools -> Manage Custom Filters
> >>
> >> On Sat, Jan 24, 2009 at 5:44 AM, Jacques Papper
> >>  wrote:
> >> > I can't find a previous email on this topic and therefore I have to
> ask
> >> > :
> >> > How do I load a custom filter into pvpython ?
> >> > Thanks,
> >> > Jacques
> >> > ___
> >> > ParaView mailing list
> >> > ParaView@paraview.org
> >> > http://www.paraview.org/mailman/listinfo/paraview
> >> >
> >> >
> >
> >
>
___
ParaView mailing list
ParaView@paraview.org
http://www.paraview.org/mailman/listinfo/paraview


Re: [Paraview] Custom filters in Python

2009-02-13 Thread Berk Geveci
I finally have an answer for this. You first export the custom proxy
to an xml file. Then you do:

servermanager.ProxyManager().LoadCustomProxyDefinitions("")
servermanager.updateModules()

After this, you can create your custom proxy like any other proxy:

custom_filter = servermanager.filters.Foo()

-berk

On Mon, Jan 26, 2009 at 4:49 PM, Jacques Papper
 wrote:
> Haha :)
> Ok well, if it's not too complicated let me know and I'll try to help.
> Jacques
>
> 2009/1/26 Berk Geveci 
>>
>> That's a good question (i.e. I have no idea :-) ). I'll investigate it
>> this week and implement a solution if not already possible.
>>
>> -berk
>>
>> On Sat, Jan 24, 2009 at 2:01 PM, Jacques Papper
>>  wrote:
>> > How do I access that through a python script ? (In batch)
>> >
>> > 2009/1/24 Berk Geveci 
>> >>
>> >> Tools -> Manage Custom Filters
>> >>
>> >> On Sat, Jan 24, 2009 at 5:44 AM, Jacques Papper
>> >>  wrote:
>> >> > I can't find a previous email on this topic and therefore I have to
>> >> > ask
>> >> > :
>> >> > How do I load a custom filter into pvpython ?
>> >> > Thanks,
>> >> > Jacques
>> >> > ___
>> >> > ParaView mailing list
>> >> > ParaView@paraview.org
>> >> > http://www.paraview.org/mailman/listinfo/paraview
>> >> >
>> >> >
>> >
>> >
>
>
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Follow this link to subscribe/unsubscribe:
http://www.paraview.org/mailman/listinfo/paraview


[Paraview] custom filters missing from menus

2011-05-27 Thread Biddiscombe, John A.
I did a git pull a couple of days ago and notice that when I run in parallel on 
a windows machine using pvservers, my custom filters no longer appear in menus.

Has anyone else had the same problem. I'm never certain if I have somehow 
messed up my plugins/build or if it's a new bug 

TIA

JB

-- 
John Biddiscombe,    email:biddisco @ cscs.ch
http://www.cscs.ch/
CSCS, Swiss National Supercomputing Centre  | Tel:  +41 (91) 610.82.07
Via Cantonale, 6928 Manno, Switzerland  | Fax:  +41 (91) 610.82.82


___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Follow this link to subscribe/unsubscribe:
http://www.paraview.org/mailman/listinfo/paraview


Re: [Paraview] custom filters missing from menus

2011-05-27 Thread Utkarsh Ayachit
It's a new bug :), I'll take a look.

Utkarsh

On Fri, May 27, 2011 at 7:53 AM, Biddiscombe, John A.  wrote:
> I did a git pull a couple of days ago and notice that when I run in parallel 
> on a windows machine using pvservers, my custom filters no longer appear in 
> menus.
>
> Has anyone else had the same problem. I'm never certain if I have somehow 
> messed up my plugins/build or if it's a new bug 
>
> TIA
>
> JB
>
> --
> John Biddiscombe,    email:biddisco @ cscs.ch
> http://www.cscs.ch/
> CSCS, Swiss National Supercomputing Centre  | Tel:  +41 (91) 610.82.07
> Via Cantonale, 6928 Manno, Switzerland  | Fax:  +41 (91) 610.82.82
>
>
> ___
> Powered by www.kitware.com
>
> Visit other Kitware open-source projects at 
> http://www.kitware.com/opensource/opensource.html
>
> Please keep messages on-topic and check the ParaView Wiki at: 
> http://paraview.org/Wiki/ParaView
>
> Follow this link to subscribe/unsubscribe:
> http://www.paraview.org/mailman/listinfo/paraview
>
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Follow this link to subscribe/unsubscribe:
http://www.paraview.org/mailman/listinfo/paraview


Re: [Paraview] custom filters missing from menus

2011-05-27 Thread Utkarsh Ayachit
Oh before I started debugging this, you mentioned plugins, so are
these custom filters being loaded from a plugin? If so, is the plugin
being loaded on the server too? Unlike before, filter xmls are now
exclusively loaded from the server.

Utkarsh

On Fri, May 27, 2011 at 9:15 AM, Utkarsh Ayachit
 wrote:
> It's a new bug :), I'll take a look.
>
> Utkarsh
>
> On Fri, May 27, 2011 at 7:53 AM, Biddiscombe, John A.  
> wrote:
>> I did a git pull a couple of days ago and notice that when I run in parallel 
>> on a windows machine using pvservers, my custom filters no longer appear in 
>> menus.
>>
>> Has anyone else had the same problem. I'm never certain if I have somehow 
>> messed up my plugins/build or if it's a new bug 
>>
>> TIA
>>
>> JB
>>
>> --
>> John Biddiscombe,    email:biddisco @ cscs.ch
>> http://www.cscs.ch/
>> CSCS, Swiss National Supercomputing Centre  | Tel:  +41 (91) 610.82.07
>> Via Cantonale, 6928 Manno, Switzerland  | Fax:  +41 (91) 610.82.82
>>
>>
>> ___
>> Powered by www.kitware.com
>>
>> Visit other Kitware open-source projects at 
>> http://www.kitware.com/opensource/opensource.html
>>
>> Please keep messages on-topic and check the ParaView Wiki at: 
>> http://paraview.org/Wiki/ParaView
>>
>> Follow this link to subscribe/unsubscribe:
>> http://www.paraview.org/mailman/listinfo/paraview
>>
>
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Follow this link to subscribe/unsubscribe:
http://www.paraview.org/mailman/listinfo/paraview


Re: [Paraview] custom filters missing from menus

2011-05-27 Thread Biddiscombe, John A.
Utkarsh

The plugins are loaded on client and server (did you really need to ask?)

I had an idea which I tested. I have custom panels (dockwindows), which create 
proxies, when the gui starts up, the proxies are generated correctly. Then I 
connect to a server, panels are still ok, but proxeies have been destroyed. I 
may have messup up my callbacks to the server closed and reopened after the 
changes to connection manager. Menus are now gone from plugins.

However. if I disable plugins autoload, then connect to server, then manually 
load plugins - panels work correct because proxies are correctly created on the 
server and menus are available.

for now I can manually load plugins (yawn) and fix my unregistering of proxies 
when the server is disconnected and reconnected - this might be enough - but if 
you can see/say why the menus fail to appear - then any clues are welcome. Try 
a simple plugin (eg point sprite). when autoloaded and a connection is made - 
fail - when manually loaded afterwards - ok - can you duplicate that? yes ?

JB

-Original Message-
From: Utkarsh Ayachit [mailto:utkarsh.ayac...@kitware.com] 
Sent: 27 May 2011 15:18
To: Biddiscombe, John A.
Cc: paraview@paraview.org
Subject: Re: [Paraview] custom filters missing from menus

Oh before I started debugging this, you mentioned plugins, so are
these custom filters being loaded from a plugin? If so, is the plugin
being loaded on the server too? Unlike before, filter xmls are now
exclusively loaded from the server.

Utkarsh

On Fri, May 27, 2011 at 9:15 AM, Utkarsh Ayachit
 wrote:
> It's a new bug :), I'll take a look.
>
> Utkarsh
>
> On Fri, May 27, 2011 at 7:53 AM, Biddiscombe, John A.  
> wrote:
>> I did a git pull a couple of days ago and notice that when I run in parallel 
>> on a windows machine using pvservers, my custom filters no longer appear in 
>> menus.
>>
>> Has anyone else had the same problem. I'm never certain if I have somehow 
>> messed up my plugins/build or if it's a new bug 
>>
>> TIA
>>
>> JB
>>
>> --
>> John Biddiscombe,    email:biddisco @ cscs.ch
>> http://www.cscs.ch/
>> CSCS, Swiss National Supercomputing Centre  | Tel:  +41 (91) 610.82.07
>> Via Cantonale, 6928 Manno, Switzerland  | Fax:  +41 (91) 610.82.82
>>
>>
>> ___
>> Powered by www.kitware.com
>>
>> Visit other Kitware open-source projects at 
>> http://www.kitware.com/opensource/opensource.html
>>
>> Please keep messages on-topic and check the ParaView Wiki at: 
>> http://paraview.org/Wiki/ParaView
>>
>> Follow this link to subscribe/unsubscribe:
>> http://www.paraview.org/mailman/listinfo/paraview
>>
>
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Follow this link to subscribe/unsubscribe:
http://www.paraview.org/mailman/listinfo/paraview


Re: [Paraview] custom filters missing from menus

2011-05-30 Thread Utkarsh Ayachit
John,

I was able to reproduce the problem. I am working on it. There's
something not right about the way the transfer of XML definitions is
being handled between the client and server. I am cleaning that code
up.

Utkarsh

On Fri, May 27, 2011 at 9:58 AM, Biddiscombe, John A.  wrote:
> Utkarsh
>
> The plugins are loaded on client and server (did you really need to ask?)
>
> I had an idea which I tested. I have custom panels (dockwindows), which 
> create proxies, when the gui starts up, the proxies are generated correctly. 
> Then I connect to a server, panels are still ok, but proxeies have been 
> destroyed. I may have messup up my callbacks to the server closed and 
> reopened after the changes to connection manager. Menus are now gone from 
> plugins.
>
> However. if I disable plugins autoload, then connect to server, then manually 
> load plugins - panels work correct because proxies are correctly created on 
> the server and menus are available.
>
> for now I can manually load plugins (yawn) and fix my unregistering of 
> proxies when the server is disconnected and reconnected - this might be 
> enough - but if you can see/say why the menus fail to appear - then any clues 
> are welcome. Try a simple plugin (eg point sprite). when autoloaded and a 
> connection is made - fail - when manually loaded afterwards - ok - can you 
> duplicate that? yes ?
>
> JB
>
> -Original Message-
> From: Utkarsh Ayachit [mailto:utkarsh.ayac...@kitware.com]
> Sent: 27 May 2011 15:18
> To: Biddiscombe, John A.
> Cc: paraview@paraview.org
> Subject: Re: [Paraview] custom filters missing from menus
>
> Oh before I started debugging this, you mentioned plugins, so are
> these custom filters being loaded from a plugin? If so, is the plugin
> being loaded on the server too? Unlike before, filter xmls are now
> exclusively loaded from the server.
>
> Utkarsh
>
> On Fri, May 27, 2011 at 9:15 AM, Utkarsh Ayachit
>  wrote:
>> It's a new bug :), I'll take a look.
>>
>> Utkarsh
>>
>> On Fri, May 27, 2011 at 7:53 AM, Biddiscombe, John A.  
>> wrote:
>>> I did a git pull a couple of days ago and notice that when I run in 
>>> parallel on a windows machine using pvservers, my custom filters no longer 
>>> appear in menus.
>>>
>>> Has anyone else had the same problem. I'm never certain if I have somehow 
>>> messed up my plugins/build or if it's a new bug 
>>>
>>> TIA
>>>
>>> JB
>>>
>>> --
>>> John Biddiscombe,    email:biddisco @ cscs.ch
>>> http://www.cscs.ch/
>>> CSCS, Swiss National Supercomputing Centre  | Tel:  +41 (91) 610.82.07
>>> Via Cantonale, 6928 Manno, Switzerland  | Fax:  +41 (91) 610.82.82
>>>
>>>
>>> ___
>>> Powered by www.kitware.com
>>>
>>> Visit other Kitware open-source projects at 
>>> http://www.kitware.com/opensource/opensource.html
>>>
>>> Please keep messages on-topic and check the ParaView Wiki at: 
>>> http://paraview.org/Wiki/ParaView
>>>
>>> Follow this link to subscribe/unsubscribe:
>>> http://www.paraview.org/mailman/listinfo/paraview
>>>
>>
>
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Follow this link to subscribe/unsubscribe:
http://www.paraview.org/mailman/listinfo/paraview


Re: [Paraview] custom filters missing from menus

2011-05-30 Thread Biddiscombe, John A.
Thanks Utkarsh.

For now I've dropped back to 3.10 as I need stuff for a tutorial, once that's 
out of the way I can offer some help tracking down the problems (assuming 
you've not already fixed them by then).

JB

-Original Message-
From: Utkarsh Ayachit [mailto:utkarsh.ayac...@kitware.com] 
Sent: 30 May 2011 20:14
To: Biddiscombe, John A.
Cc: paraview@paraview.org
Subject: Re: [Paraview] custom filters missing from menus

John,

I was able to reproduce the problem. I am working on it. There's
something not right about the way the transfer of XML definitions is
being handled between the client and server. I am cleaning that code
up.

Utkarsh

On Fri, May 27, 2011 at 9:58 AM, Biddiscombe, John A.  wrote:
> Utkarsh
>
> The plugins are loaded on client and server (did you really need to ask?)
>
> I had an idea which I tested. I have custom panels (dockwindows), which 
> create proxies, when the gui starts up, the proxies are generated correctly. 
> Then I connect to a server, panels are still ok, but proxeies have been 
> destroyed. I may have messup up my callbacks to the server closed and 
> reopened after the changes to connection manager. Menus are now gone from 
> plugins.
>
> However. if I disable plugins autoload, then connect to server, then manually 
> load plugins - panels work correct because proxies are correctly created on 
> the server and menus are available.
>
> for now I can manually load plugins (yawn) and fix my unregistering of 
> proxies when the server is disconnected and reconnected - this might be 
> enough - but if you can see/say why the menus fail to appear - then any clues 
> are welcome. Try a simple plugin (eg point sprite). when autoloaded and a 
> connection is made - fail - when manually loaded afterwards - ok - can you 
> duplicate that? yes ?
>
> JB
>
> -Original Message-
> From: Utkarsh Ayachit [mailto:utkarsh.ayac...@kitware.com]
> Sent: 27 May 2011 15:18
> To: Biddiscombe, John A.
> Cc: paraview@paraview.org
> Subject: Re: [Paraview] custom filters missing from menus
>
> Oh before I started debugging this, you mentioned plugins, so are
> these custom filters being loaded from a plugin? If so, is the plugin
> being loaded on the server too? Unlike before, filter xmls are now
> exclusively loaded from the server.
>
> Utkarsh
>
> On Fri, May 27, 2011 at 9:15 AM, Utkarsh Ayachit
>  wrote:
>> It's a new bug :), I'll take a look.
>>
>> Utkarsh
>>
>> On Fri, May 27, 2011 at 7:53 AM, Biddiscombe, John A.  
>> wrote:
>>> I did a git pull a couple of days ago and notice that when I run in 
>>> parallel on a windows machine using pvservers, my custom filters no longer 
>>> appear in menus.
>>>
>>> Has anyone else had the same problem. I'm never certain if I have somehow 
>>> messed up my plugins/build or if it's a new bug 
>>>
>>> TIA
>>>
>>> JB
>>>
>>> --
>>> John Biddiscombe,    email:biddisco @ cscs.ch
>>> http://www.cscs.ch/
>>> CSCS, Swiss National Supercomputing Centre  | Tel:  +41 (91) 610.82.07
>>> Via Cantonale, 6928 Manno, Switzerland  | Fax:  +41 (91) 610.82.82
>>>
>>>
>>> ___
>>> Powered by www.kitware.com
>>>
>>> Visit other Kitware open-source projects at 
>>> http://www.kitware.com/opensource/opensource.html
>>>
>>> Please keep messages on-topic and check the ParaView Wiki at: 
>>> http://paraview.org/Wiki/ParaView
>>>
>>> Follow this link to subscribe/unsubscribe:
>>> http://www.paraview.org/mailman/listinfo/paraview
>>>
>>
>
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Follow this link to subscribe/unsubscribe:
http://www.paraview.org/mailman/listinfo/paraview


Re: [Paraview] custom filters missing from menus

2011-05-30 Thread Utkarsh Ayachit
John,

I've committed a fix for this issue on the stage
(12240_cleanup_proxy_definition_manager). Can you please test it out
if you get the chance? It should fix the proxies definitions not
showing up for auto-loaded plugins issue.

Utkarsh


On Mon, May 30, 2011 at 3:08 PM, Biddiscombe, John A.  wrote:
> Thanks Utkarsh.
>
> For now I've dropped back to 3.10 as I need stuff for a tutorial, once that's 
> out of the way I can offer some help tracking down the problems (assuming 
> you've not already fixed them by then).
>
> JB
>
> -Original Message-
> From: Utkarsh Ayachit [mailto:utkarsh.ayac...@kitware.com]
> Sent: 30 May 2011 20:14
> To: Biddiscombe, John A.
> Cc: paraview@paraview.org
> Subject: Re: [Paraview] custom filters missing from menus
>
> John,
>
> I was able to reproduce the problem. I am working on it. There's
> something not right about the way the transfer of XML definitions is
> being handled between the client and server. I am cleaning that code
> up.
>
> Utkarsh
>
> On Fri, May 27, 2011 at 9:58 AM, Biddiscombe, John A.  
> wrote:
>> Utkarsh
>>
>> The plugins are loaded on client and server (did you really need to ask?)
>>
>> I had an idea which I tested. I have custom panels (dockwindows), which 
>> create proxies, when the gui starts up, the proxies are generated correctly. 
>> Then I connect to a server, panels are still ok, but proxeies have been 
>> destroyed. I may have messup up my callbacks to the server closed and 
>> reopened after the changes to connection manager. Menus are now gone from 
>> plugins.
>>
>> However. if I disable plugins autoload, then connect to server, then 
>> manually load plugins - panels work correct because proxies are correctly 
>> created on the server and menus are available.
>>
>> for now I can manually load plugins (yawn) and fix my unregistering of 
>> proxies when the server is disconnected and reconnected - this might be 
>> enough - but if you can see/say why the menus fail to appear - then any 
>> clues are welcome. Try a simple plugin (eg point sprite). when autoloaded 
>> and a connection is made - fail - when manually loaded afterwards - ok - can 
>> you duplicate that? yes ?
>>
>> JB
>>
>> -Original Message-
>> From: Utkarsh Ayachit [mailto:utkarsh.ayac...@kitware.com]
>> Sent: 27 May 2011 15:18
>> To: Biddiscombe, John A.
>> Cc: paraview@paraview.org
>> Subject: Re: [Paraview] custom filters missing from menus
>>
>> Oh before I started debugging this, you mentioned plugins, so are
>> these custom filters being loaded from a plugin? If so, is the plugin
>> being loaded on the server too? Unlike before, filter xmls are now
>> exclusively loaded from the server.
>>
>> Utkarsh
>>
>> On Fri, May 27, 2011 at 9:15 AM, Utkarsh Ayachit
>>  wrote:
>>> It's a new bug :), I'll take a look.
>>>
>>> Utkarsh
>>>
>>> On Fri, May 27, 2011 at 7:53 AM, Biddiscombe, John A.  
>>> wrote:
>>>> I did a git pull a couple of days ago and notice that when I run in 
>>>> parallel on a windows machine using pvservers, my custom filters no longer 
>>>> appear in menus.
>>>>
>>>> Has anyone else had the same problem. I'm never certain if I have somehow 
>>>> messed up my plugins/build or if it's a new bug 
>>>>
>>>> TIA
>>>>
>>>> JB
>>>>
>>>> --
>>>> John Biddiscombe,    email:biddisco @ cscs.ch
>>>> http://www.cscs.ch/
>>>> CSCS, Swiss National Supercomputing Centre  | Tel:  +41 (91) 610.82.07
>>>> Via Cantonale, 6928 Manno, Switzerland  | Fax:  +41 (91) 610.82.82
>>>>
>>>>
>>>> ___
>>>> Powered by www.kitware.com
>>>>
>>>> Visit other Kitware open-source projects at 
>>>> http://www.kitware.com/opensource/opensource.html
>>>>
>>>> Please keep messages on-topic and check the ParaView Wiki at: 
>>>> http://paraview.org/Wiki/ParaView
>>>>
>>>> Follow this link to subscribe/unsubscribe:
>>>> http://www.paraview.org/mailman/listinfo/paraview
>>>>
>>>
>>
>
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Follow this link to subscribe/unsubscribe:
http://www.paraview.org/mailman/listinfo/paraview


Re: [Paraview] custom filters missing from menus

2011-05-31 Thread Utkarsh Ayachit
John,

I've merged fixes for these issues. Let me know if you still run into problems.

Utkarsh

On Mon, May 30, 2011 at 6:12 PM, Utkarsh Ayachit
 wrote:
> John,
>
> I've committed a fix for this issue on the stage
> (12240_cleanup_proxy_definition_manager). Can you please test it out
> if you get the chance? It should fix the proxies definitions not
> showing up for auto-loaded plugins issue.
>
> Utkarsh
>
>
> On Mon, May 30, 2011 at 3:08 PM, Biddiscombe, John A.  
> wrote:
>> Thanks Utkarsh.
>>
>> For now I've dropped back to 3.10 as I need stuff for a tutorial, once 
>> that's out of the way I can offer some help tracking down the problems 
>> (assuming you've not already fixed them by then).
>>
>> JB
>>
>> -Original Message-
>> From: Utkarsh Ayachit [mailto:utkarsh.ayac...@kitware.com]
>> Sent: 30 May 2011 20:14
>> To: Biddiscombe, John A.
>> Cc: paraview@paraview.org
>> Subject: Re: [Paraview] custom filters missing from menus
>>
>> John,
>>
>> I was able to reproduce the problem. I am working on it. There's
>> something not right about the way the transfer of XML definitions is
>> being handled between the client and server. I am cleaning that code
>> up.
>>
>> Utkarsh
>>
>> On Fri, May 27, 2011 at 9:58 AM, Biddiscombe, John A.  
>> wrote:
>>> Utkarsh
>>>
>>> The plugins are loaded on client and server (did you really need to ask?)
>>>
>>> I had an idea which I tested. I have custom panels (dockwindows), which 
>>> create proxies, when the gui starts up, the proxies are generated 
>>> correctly. Then I connect to a server, panels are still ok, but proxeies 
>>> have been destroyed. I may have messup up my callbacks to the server closed 
>>> and reopened after the changes to connection manager. Menus are now gone 
>>> from plugins.
>>>
>>> However. if I disable plugins autoload, then connect to server, then 
>>> manually load plugins - panels work correct because proxies are correctly 
>>> created on the server and menus are available.
>>>
>>> for now I can manually load plugins (yawn) and fix my unregistering of 
>>> proxies when the server is disconnected and reconnected - this might be 
>>> enough - but if you can see/say why the menus fail to appear - then any 
>>> clues are welcome. Try a simple plugin (eg point sprite). when autoloaded 
>>> and a connection is made - fail - when manually loaded afterwards - ok - 
>>> can you duplicate that? yes ?
>>>
>>> JB
>>>
>>> -Original Message-
>>> From: Utkarsh Ayachit [mailto:utkarsh.ayac...@kitware.com]
>>> Sent: 27 May 2011 15:18
>>> To: Biddiscombe, John A.
>>> Cc: paraview@paraview.org
>>> Subject: Re: [Paraview] custom filters missing from menus
>>>
>>> Oh before I started debugging this, you mentioned plugins, so are
>>> these custom filters being loaded from a plugin? If so, is the plugin
>>> being loaded on the server too? Unlike before, filter xmls are now
>>> exclusively loaded from the server.
>>>
>>> Utkarsh
>>>
>>> On Fri, May 27, 2011 at 9:15 AM, Utkarsh Ayachit
>>>  wrote:
>>>> It's a new bug :), I'll take a look.
>>>>
>>>> Utkarsh
>>>>
>>>> On Fri, May 27, 2011 at 7:53 AM, Biddiscombe, John A.  
>>>> wrote:
>>>>> I did a git pull a couple of days ago and notice that when I run in 
>>>>> parallel on a windows machine using pvservers, my custom filters no 
>>>>> longer appear in menus.
>>>>>
>>>>> Has anyone else had the same problem. I'm never certain if I have somehow 
>>>>> messed up my plugins/build or if it's a new bug 
>>>>>
>>>>> TIA
>>>>>
>>>>> JB
>>>>>
>>>>> --
>>>>> John Biddiscombe,    email:biddisco @ cscs.ch
>>>>> http://www.cscs.ch/
>>>>> CSCS, Swiss National Supercomputing Centre  | Tel:  +41 (91) 610.82.07
>>>>> Via Cantonale, 6928 Manno, Switzerland  | Fax:  +41 (91) 610.82.82
>>>>>
>>>>>
>>>>> ___
>>>>> Powered by www.kitware.com
>>>>>
>>>>> Visit other Kitware open-source projects at 
>>>>> http://www.kitware.com/opensource/opensource.html
>>>>>
>>>>> Please keep messages on-topic and check the ParaView Wiki at: 
>>>>> http://paraview.org/Wiki/ParaView
>>>>>
>>>>> Follow this link to subscribe/unsubscribe:
>>>>> http://www.paraview.org/mailman/listinfo/paraview
>>>>>
>>>>
>>>
>>
>
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Follow this link to subscribe/unsubscribe:
http://www.paraview.org/mailman/listinfo/paraview


[Paraview] Custom filters displayed in a category

2016-08-09 Thread zackary beaugelin
Hello dear users,

I'm currently developing some filters (compiled into a custom plugin) under a 
custom version of Paraview.
The different filters are (supposed to be) displayed in a category in the menu 
"Filters".
On a Ubuntu 14.04 64bits computer they are not displayed (2 out of 3 still 
findable/applicable by crtl-space), and on a Kubuntu 16.04 64bits computer they 
are in their category (all findable/applicable).
They both have the same Paraview version (5.1.0) and have the same sources.
The filters are displayed in the category while under Paraview (both PC), but 
then going under the custom version they are not shown (Ubuntu, while they are 
shown under Kubuntu PC).
Does anybody have a clue on how to make those filters appear?

Regards,


Zack
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Search the list archives at: http://markmail.org/search/?q=ParaView

Follow this link to subscribe/unsubscribe:
http://public.kitware.com/mailman/listinfo/paraview


Re: [Paraview] Custom filters displayed in a category

2016-08-09 Thread Utkarsh Ayachit
Can you try removing relevant configuration files from your
~/.config/* directory and see? We've had similar issues with config
files messing with the menus in the past. I wonder if you're running
into that. Running your app with "-dr" command line argument should
have the same effect.

On Tue, Aug 9, 2016 at 5:31 AM, zackary beaugelin
 wrote:
> Hello dear users,
>
> I'm currently developing some filters (compiled into a custom plugin) under
> a custom version of Paraview.
> The different filters are (supposed to be) displayed in a category in the
> menu "Filters".
> On a Ubuntu 14.04 64bits computer they are not displayed (2 out of 3 still
> findable/applicable by crtl-space), and on a Kubuntu 16.04 64bits computer
> they are in their category (all findable/applicable).
> They both have the same Paraview version (5.1.0) and have the same sources.
> The filters are displayed in the category while under Paraview (both PC),
> but then going under the custom version they are not shown (Ubuntu, while
> they are shown under Kubuntu PC).
> Does anybody have a clue on how to make those filters appear?
>
> Regards,
>
>
> Zack
>
>
> ___
> Powered by www.kitware.com
>
> Visit other Kitware open-source projects at
> http://www.kitware.com/opensource/opensource.html
>
> Please keep messages on-topic and check the ParaView Wiki at:
> http://paraview.org/Wiki/ParaView
>
> Search the list archives at: http://markmail.org/search/?q=ParaView
>
> Follow this link to subscribe/unsubscribe:
> http://public.kitware.com/mailman/listinfo/paraview
>
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Search the list archives at: http://markmail.org/search/?q=ParaView

Follow this link to subscribe/unsubscribe:
http://public.kitware.com/mailman/listinfo/paraview


[Paraview] Custom Filters NOT showing up in Filters List (CVS HEAD)

2010-02-22 Thread Michael Jackson
I have some custom filters that I have developed. I use the  
"PARAVIEW_EXTRA_EXTERNAL_MODULES" to compile them directly into  
ParaView. I know they are getting compiled as I can see the compile  
command go by on the command line. The problem is that they do not  
show up when I run ParaView in the filter list. Here is an example XML  
File:



  

  
  


Which is added like so in my CMake files:
# -- Add the Client side xml
set(IPFFilterClient_XML ${PVMXADataModel_SOURCE_DIR}/Source/Client/ 
IPFFilter/Resources/IPFFilter_GUI.xml)

PARAVIEW_INCLUDE_GUI_RESOURCES( "${IPFFilterClient_XML}" )

This works just fine with ParaView 3.6.2. This was a completely clean  
build.


Suggestions? Thanks.
___
Mike Jackson  www.bluequartz.net
Principal Software Engineer   mike.jack...@bluequartz.net
BlueQuartz Software   Dayton, Ohio


___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Follow this link to subscribe/unsubscribe:
http://www.paraview.org/mailman/listinfo/paraview


Re: [Paraview] Custom Filters NOT showing up in Filters List (CVS HEAD)

2010-02-23 Thread pat marion
Is that supposed to be 'menu_label' ?

Pat

On Mon, Feb 22, 2010 at 1:14 PM, Michael Jackson <
mike.jack...@bluequartz.net> wrote:

> I have some custom filters that I have developed. I use the
> "PARAVIEW_EXTRA_EXTERNAL_MODULES" to compile them directly into ParaView. I
> know they are getting compiled as I can see the compile command go by on the
> command line. The problem is that they do not show up when I run ParaView in
> the filter list. Here is an example XML File:
>
> 
>  name="Microstructure"
>menu_lable="&Microstructure">
>  name="IPFFilter"/>
>  
>  name="IPFFilter"/>
> 
>
> Which is added like so in my CMake files:
> # -- Add the Client side xml
> set(IPFFilterClient_XML
> ${PVMXADataModel_SOURCE_DIR}/Source/Client/IPFFilter/Resources/IPFFilter_GUI.xml)
> PARAVIEW_INCLUDE_GUI_RESOURCES( "${IPFFilterClient_XML}" )
>
> This works just fine with ParaView 3.6.2. This was a completely clean
> build.
>
> Suggestions? Thanks.
> ___
> Mike Jackson  www.bluequartz.net
> Principal Software Engineer   mike.jack...@bluequartz.net
> BlueQuartz Software   Dayton, Ohio
>
>
> ___
> Powered by www.kitware.com
>
> Visit other Kitware open-source projects at
> http://www.kitware.com/opensource/opensource.html
>
> Please keep messages on-topic and check the ParaView Wiki at:
> http://paraview.org/Wiki/ParaView
>
> Follow this link to subscribe/unsubscribe:
> http://www.paraview.org/mailman/listinfo/paraview
>
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Follow this link to subscribe/unsubscribe:
http://www.paraview.org/mailman/listinfo/paraview


Re: [Paraview] Custom Filters NOT showing up in Filters List (CVS HEAD)

2010-02-23 Thread Michael Jackson

YES. Thanks. All seems to be working now.
___
Mike Jackson  www.bluequartz.net


On Feb 23, 2010, at 11:16 AM, pat marion wrote:


Is that supposed to be 'menu_label' ?

Pat

On Mon, Feb 22, 2010 at 1:14 PM, Michael Jackson > wrote:
I have some custom filters that I have developed. I use the  
"PARAVIEW_EXTRA_EXTERNAL_MODULES" to compile them directly into  
ParaView. I know they are getting compiled as I can see the compile  
command go by on the command line. The problem is that they do not  
show up when I run ParaView in the filter list. Here is an example  
XML File:



 
   
 
 


Which is added like so in my CMake files:
# -- Add the Client side xml
set(IPFFilterClient_XML ${PVMXADataModel_SOURCE_DIR}/Source/Client/ 
IPFFilter/Resources/IPFFilter_GUI.xml)

PARAVIEW_INCLUDE_GUI_RESOURCES( "${IPFFilterClient_XML}" )

This works just fine with ParaView 3.6.2. This was a completely  
clean build.


Suggestions? Thanks.
___
Mike Jackson  www.bluequartz.net
Principal Software Engineer   mike.jack...@bluequartz.net
BlueQuartz Software   Dayton, Ohio


___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Follow this link to subscribe/unsubscribe:
http://www.paraview.org/mailman/listinfo/paraview



___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Follow this link to subscribe/unsubscribe:
http://www.paraview.org/mailman/listinfo/paraview


Re: [Paraview] Custom Filters NOT showing up in Filters List (CVS HEAD)

2010-02-23 Thread Michael Jackson
Well I corrected the typo but then ran the "wrong" paraview in order  
to test. I ran the standard 3.6.2 branch instead of the CVS branch.  
The problem still persists with the CVS branch.

___
Mike Jackson  www.bluequartz.net


On Feb 23, 2010, at 11:16 AM, pat marion wrote:


Is that supposed to be 'menu_label' ?

Pat

On Mon, Feb 22, 2010 at 1:14 PM, Michael Jackson > wrote:
I have some custom filters that I have developed. I use the  
"PARAVIEW_EXTRA_EXTERNAL_MODULES" to compile them directly into  
ParaView. I know they are getting compiled as I can see the compile  
command go by on the command line. The problem is that they do not  
show up when I run ParaView in the filter list. Here is an example  
XML File:



 
   
 
 


Which is added like so in my CMake files:
# -- Add the Client side xml
set(IPFFilterClient_XML ${PVMXADataModel_SOURCE_DIR}/Source/Client/ 
IPFFilter/Resources/IPFFilter_GUI.xml)

PARAVIEW_INCLUDE_GUI_RESOURCES( "${IPFFilterClient_XML}" )

This works just fine with ParaView 3.6.2. This was a completely  
clean build.


Suggestions? Thanks.
___
Mike Jackson  www.bluequartz.net
Principal Software Engineer   mike.jack...@bluequartz.net
BlueQuartz Software   Dayton, Ohio


___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Follow this link to subscribe/unsubscribe:
http://www.paraview.org/mailman/listinfo/paraview



___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Follow this link to subscribe/unsubscribe:
http://www.paraview.org/mailman/listinfo/paraview


Re: [Paraview] Custom Filters NOT showing up in Filters List (CVS HEAD)

2010-02-23 Thread Utkarsh Ayachit
Yea. I had figured it would :). Let me track it down.

On Tue, Feb 23, 2010 at 2:39 PM, Michael Jackson
 wrote:
> Well I corrected the typo but then ran the "wrong" paraview in order to
> test. I ran the standard 3.6.2 branch instead of the CVS branch. The problem
> still persists with the CVS branch.
> ___
> Mike Jackson                      www.bluequartz.net
>
>
> On Feb 23, 2010, at 11:16 AM, pat marion wrote:
>
>> Is that supposed to be 'menu_label' ?
>>
>> Pat
>>
>> On Mon, Feb 22, 2010 at 1:14 PM, Michael Jackson
>>  wrote:
>> I have some custom filters that I have developed. I use the
>> "PARAVIEW_EXTRA_EXTERNAL_MODULES" to compile them directly into ParaView. I
>> know they are getting compiled as I can see the compile command go by on the
>> command line. The problem is that they do not show up when I run ParaView in
>> the filter list. Here is an example XML File:
>>
>> 
>>  >   name="Microstructure"
>>   menu_lable="&Microstructure">
>>   >     name="IPFFilter"/>
>>  
>>  >   name="IPFFilter"/>
>> 
>>
>> Which is added like so in my CMake files:
>> # -- Add the Client side xml
>> set(IPFFilterClient_XML
>> ${PVMXADataModel_SOURCE_DIR}/Source/Client/IPFFilter/Resources/IPFFilter_GUI.xml)
>> PARAVIEW_INCLUDE_GUI_RESOURCES( "${IPFFilterClient_XML}" )
>>
>> This works just fine with ParaView 3.6.2. This was a completely clean
>> build.
>>
>> Suggestions? Thanks.
>> ___
>> Mike Jackson                      www.bluequartz.net
>> Principal Software Engineer       mike.jack...@bluequartz.net
>> BlueQuartz Software               Dayton, Ohio
>>
>>
>> ___
>> Powered by www.kitware.com
>>
>> Visit other Kitware open-source projects at
>> http://www.kitware.com/opensource/opensource.html
>>
>> Please keep messages on-topic and check the ParaView Wiki at:
>> http://paraview.org/Wiki/ParaView
>>
>> Follow this link to subscribe/unsubscribe:
>> http://www.paraview.org/mailman/listinfo/paraview
>>
>
> ___
> Powered by www.kitware.com
>
> Visit other Kitware open-source projects at
> http://www.kitware.com/opensource/opensource.html
>
> Please keep messages on-topic and check the ParaView Wiki at:
> http://paraview.org/Wiki/ParaView
>
> Follow this link to subscribe/unsubscribe:
> http://www.paraview.org/mailman/listinfo/paraview
>
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Follow this link to subscribe/unsubscribe:
http://www.paraview.org/mailman/listinfo/paraview


Re: [Paraview] Custom Filters NOT showing up in Filters List (CVS HEAD)

2010-02-23 Thread Utkarsh Ayachit
Mike,

Can you check if the following patch solves the issue? If so, I'll
commit to CVS.

Index: Applications/ParaView/CMakeLists.txt
===
RCS file: /cvsroot/ParaView3/ParaView3/Applications/ParaView/CMakeLists.txt,v
retrieving revision 1.18
diff -u -3 -r1.18 CMakeLists.txt
--- Applications/ParaView/CMakeLists.txt10 Feb 2010 21:53:56
-  1.18
+++ Applications/ParaView/CMakeLists.txt23 Feb 2010 19:52:27 -
@@ -41,6 +41,7 @@
   ${CMAKE_CURRENT_SOURCE_DIR}/ParaViewFilters.xml
   ${CMAKE_CURRENT_SOURCE_DIR}/ParaViewReaders.xml
   ${CMAKE_CURRENT_SOURCE_DIR}/ParaViewWriters.xml
+  ${PARAVIEW_EXTRA_GUI_RESOURCES} # Add any compiled in GUI
configuration xmls
 COMPRESSED_HELP_FILE "${ParaView_BINARY_DIR}/Documentation/paraview.qch"
 SOURCES ${ParaView_SOURCE_FILES}
 )

Utkarsh

On Tue, Feb 23, 2010 at 2:45 PM, Utkarsh Ayachit
 wrote:
> Yea. I had figured it would :). Let me track it down.
>
> On Tue, Feb 23, 2010 at 2:39 PM, Michael Jackson
>  wrote:
>> Well I corrected the typo but then ran the "wrong" paraview in order to
>> test. I ran the standard 3.6.2 branch instead of the CVS branch. The problem
>> still persists with the CVS branch.
>> ___
>> Mike Jackson                      www.bluequartz.net
>>
>>
>> On Feb 23, 2010, at 11:16 AM, pat marion wrote:
>>
>>> Is that supposed to be 'menu_label' ?
>>>
>>> Pat
>>>
>>> On Mon, Feb 22, 2010 at 1:14 PM, Michael Jackson
>>>  wrote:
>>> I have some custom filters that I have developed. I use the
>>> "PARAVIEW_EXTRA_EXTERNAL_MODULES" to compile them directly into ParaView. I
>>> know they are getting compiled as I can see the compile command go by on the
>>> command line. The problem is that they do not show up when I run ParaView in
>>> the filter list. Here is an example XML File:
>>>
>>> 
>>>  >>   name="Microstructure"
>>>   menu_lable="&Microstructure">
>>>   >>     name="IPFFilter"/>
>>>  
>>>  >>   name="IPFFilter"/>
>>> 
>>>
>>> Which is added like so in my CMake files:
>>> # -- Add the Client side xml
>>> set(IPFFilterClient_XML
>>> ${PVMXADataModel_SOURCE_DIR}/Source/Client/IPFFilter/Resources/IPFFilter_GUI.xml)
>>> PARAVIEW_INCLUDE_GUI_RESOURCES( "${IPFFilterClient_XML}" )
>>>
>>> This works just fine with ParaView 3.6.2. This was a completely clean
>>> build.
>>>
>>> Suggestions? Thanks.
>>> ___
>>> Mike Jackson                      www.bluequartz.net
>>> Principal Software Engineer       mike.jack...@bluequartz.net
>>> BlueQuartz Software               Dayton, Ohio
>>>
>>>
>>> ___
>>> Powered by www.kitware.com
>>>
>>> Visit other Kitware open-source projects at
>>> http://www.kitware.com/opensource/opensource.html
>>>
>>> Please keep messages on-topic and check the ParaView Wiki at:
>>> http://paraview.org/Wiki/ParaView
>>>
>>> Follow this link to subscribe/unsubscribe:
>>> http://www.paraview.org/mailman/listinfo/paraview
>>>
>>
>> ___
>> Powered by www.kitware.com
>>
>> Visit other Kitware open-source projects at
>> http://www.kitware.com/opensource/opensource.html
>>
>> Please keep messages on-topic and check the ParaView Wiki at:
>> http://paraview.org/Wiki/ParaView
>>
>> Follow this link to subscribe/unsubscribe:
>> http://www.paraview.org/mailman/listinfo/paraview
>>
>
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Follow this link to subscribe/unsubscribe:
http://www.paraview.org/mailman/listinfo/paraview


Re: [Paraview] Custom Filters NOT showing up in Filters List (CVS HEAD)

2010-02-23 Thread Michael Jackson

Nope. Sorry.
___
Mike Jackson  www.bluequartz.net

On Feb 23, 2010, at 2:53 PM, Utkarsh Ayachit wrote:


Mike,

Can you check if the following patch solves the issue? If so, I'll
commit to CVS.

Index: Applications/ParaView/CMakeLists.txt
===
RCS file: /cvsroot/ParaView3/ParaView3/Applications/ParaView/ 
CMakeLists.txt,v

retrieving revision 1.18
diff -u -3 -r1.18 CMakeLists.txt
--- Applications/ParaView/CMakeLists.txt10 Feb 2010 21:53:56
-  1.18
+++ Applications/ParaView/CMakeLists.txt23 Feb 2010 19:52:27  
-

@@ -41,6 +41,7 @@
  ${CMAKE_CURRENT_SOURCE_DIR}/ParaViewFilters.xml
  ${CMAKE_CURRENT_SOURCE_DIR}/ParaViewReaders.xml
  ${CMAKE_CURRENT_SOURCE_DIR}/ParaViewWriters.xml
+  ${PARAVIEW_EXTRA_GUI_RESOURCES} # Add any compiled in GUI
configuration xmls
COMPRESSED_HELP_FILE "${ParaView_BINARY_DIR}/Documentation/ 
paraview.qch"

SOURCES ${ParaView_SOURCE_FILES}
)

Utkarsh

On Tue, Feb 23, 2010 at 2:45 PM, Utkarsh Ayachit
 wrote:

Yea. I had figured it would :). Let me track it down.

On Tue, Feb 23, 2010 at 2:39 PM, Michael Jackson
 wrote:
Well I corrected the typo but then ran the "wrong" paraview in  
order to
test. I ran the standard 3.6.2 branch instead of the CVS branch.  
The problem

still persists with the CVS branch.
___
Mike Jackson  www.bluequartz.net


On Feb 23, 2010, at 11:16 AM, pat marion wrote:


Is that supposed to be 'menu_label' ?

Pat

On Mon, Feb 22, 2010 at 1:14 PM, Michael Jackson
 wrote:
I have some custom filters that I have developed. I use the
"PARAVIEW_EXTRA_EXTERNAL_MODULES" to compile them directly into  
ParaView. I
know they are getting compiled as I can see the compile command  
go by on the
command line. The problem is that they do not show up when I run  
ParaView in

the filter list. Here is an example XML File:


 
  
 
 


Which is added like so in my CMake files:
# -- Add the Client side xml
set(IPFFilterClient_XML
${PVMXADataModel_SOURCE_DIR}/Source/Client/IPFFilter/Resources/ 
IPFFilter_GUI.xml)

PARAVIEW_INCLUDE_GUI_RESOURCES( "${IPFFilterClient_XML}" )

This works just fine with ParaView 3.6.2. This was a completely  
clean

build.

Suggestions? Thanks.
___
Mike Jackson  www.bluequartz.net
Principal Software Engineer   mike.jack...@bluequartz.net
BlueQuartz Software   Dayton, Ohio


___
Powered by www.kitware.com

Visit other Kitware open-source projects at
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at:
http://paraview.org/Wiki/ParaView

Follow this link to subscribe/unsubscribe:
http://www.paraview.org/mailman/listinfo/paraview



___
Powered by www.kitware.com

Visit other Kitware open-source projects at
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at:
http://paraview.org/Wiki/ParaView

Follow this link to subscribe/unsubscribe:
http://www.paraview.org/mailman/listinfo/paraview





___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Follow this link to subscribe/unsubscribe:
http://www.paraview.org/mailman/listinfo/paraview


Re: [Paraview] Custom Filters NOT showing up in Filters List (CVS HEAD)

2010-02-23 Thread Utkarsh Ayachit
Attached is a newer patch. I've committed it to CVS as well. Let me
know if that still doesn't work.

Utkarsh

On Tue, Feb 23, 2010 at 3:05 PM, Michael Jackson
 wrote:
> Nope. Sorry.
> ___
> Mike Jackson                      www.bluequartz.net
>
> On Feb 23, 2010, at 2:53 PM, Utkarsh Ayachit wrote:
>
>> Mike,
>>
>> Can you check if the following patch solves the issue? If so, I'll
>> commit to CVS.
>>
>> Index: Applications/ParaView/CMakeLists.txt
>> ===
>> RCS file:
>> /cvsroot/ParaView3/ParaView3/Applications/ParaView/CMakeLists.txt,v
>> retrieving revision 1.18
>> diff -u -3 -r1.18 CMakeLists.txt
>> --- Applications/ParaView/CMakeLists.txt        10 Feb 2010 21:53:56
>> -      1.18
>> +++ Applications/ParaView/CMakeLists.txt        23 Feb 2010 19:52:27 -
>> @@ -41,6 +41,7 @@
>>      ${CMAKE_CURRENT_SOURCE_DIR}/ParaViewFilters.xml
>>      ${CMAKE_CURRENT_SOURCE_DIR}/ParaViewReaders.xml
>>      ${CMAKE_CURRENT_SOURCE_DIR}/ParaViewWriters.xml
>> +      ${PARAVIEW_EXTRA_GUI_RESOURCES} # Add any compiled in GUI
>> configuration xmls
>>    COMPRESSED_HELP_FILE
>> "${ParaView_BINARY_DIR}/Documentation/paraview.qch"
>>    SOURCES ${ParaView_SOURCE_FILES}
>> )
>>
>> Utkarsh
>>
>> On Tue, Feb 23, 2010 at 2:45 PM, Utkarsh Ayachit
>>  wrote:
>>>
>>> Yea. I had figured it would :). Let me track it down.
>>>
>>> On Tue, Feb 23, 2010 at 2:39 PM, Michael Jackson
>>>  wrote:

 Well I corrected the typo but then ran the "wrong" paraview in order to
 test. I ran the standard 3.6.2 branch instead of the CVS branch. The
 problem
 still persists with the CVS branch.
 ___
 Mike Jackson                      www.bluequartz.net


 On Feb 23, 2010, at 11:16 AM, pat marion wrote:

> Is that supposed to be 'menu_label' ?
>
> Pat
>
> On Mon, Feb 22, 2010 at 1:14 PM, Michael Jackson
>  wrote:
> I have some custom filters that I have developed. I use the
> "PARAVIEW_EXTRA_EXTERNAL_MODULES" to compile them directly into
> ParaView. I
> know they are getting compiled as I can see the compile command go by
> on the
> command line. The problem is that they do not show up when I run
> ParaView in
> the filter list. Here is an example XML File:
>
> 
>    name="Microstructure"
>  menu_lable="&Microstructure">
>      name="IPFFilter"/>
>  
>    name="IPFFilter"/>
> 
>
> Which is added like so in my CMake files:
> # -- Add the Client side xml
> set(IPFFilterClient_XML
>
> ${PVMXADataModel_SOURCE_DIR}/Source/Client/IPFFilter/Resources/IPFFilter_GUI.xml)
> PARAVIEW_INCLUDE_GUI_RESOURCES( "${IPFFilterClient_XML}" )
>
> This works just fine with ParaView 3.6.2. This was a completely clean
> build.
>
> Suggestions? Thanks.
> ___
> Mike Jackson                      www.bluequartz.net
> Principal Software Engineer       mike.jack...@bluequartz.net
> BlueQuartz Software               Dayton, Ohio
>
>
> ___
> Powered by www.kitware.com
>
> Visit other Kitware open-source projects at
> http://www.kitware.com/opensource/opensource.html
>
> Please keep messages on-topic and check the ParaView Wiki at:
> http://paraview.org/Wiki/ParaView
>
> Follow this link to subscribe/unsubscribe:
> http://www.paraview.org/mailman/listinfo/paraview
>

 ___
 Powered by www.kitware.com

 Visit other Kitware open-source projects at
 http://www.kitware.com/opensource/opensource.html

 Please keep messages on-topic and check the ParaView Wiki at:
 http://paraview.org/Wiki/ParaView

 Follow this link to subscribe/unsubscribe:
 http://www.paraview.org/mailman/listinfo/paraview

>>>
>
>


patch
Description: Binary data
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Follow this link to subscribe/unsubscribe:
http://www.paraview.org/mailman/listinfo/paraview


Re: [Paraview] Custom Filters NOT showing up in Filters List (CVS HEAD)

2010-02-23 Thread Michael Jackson

That seems to work now. Thanks
___
Mike Jackson  www.bluequartz.net


On Feb 23, 2010, at 3:48 PM, Utkarsh Ayachit wrote:


Attached is a newer patch. I've committed it to CVS as well. Let me
know if that still doesn't work.

Utkarsh

On Tue, Feb 23, 2010 at 3:05 PM, Michael Jackson
 wrote:

Nope. Sorry.
___
Mike Jackson  www.bluequartz.net

On Feb 23, 2010, at 2:53 PM, Utkarsh Ayachit wrote:


Mike,

Can you check if the following patch solves the issue? If so, I'll
commit to CVS.

Index: Applications/ParaView/CMakeLists.txt
===
RCS file:
/cvsroot/ParaView3/ParaView3/Applications/ParaView/CMakeLists.txt,v
retrieving revision 1.18
diff -u -3 -r1.18 CMakeLists.txt
--- Applications/ParaView/CMakeLists.txt10 Feb 2010 21:53:56
-  1.18
+++ Applications/ParaView/CMakeLists.txt23 Feb 2010  
19:52:27 -

@@ -41,6 +41,7 @@
 ${CMAKE_CURRENT_SOURCE_DIR}/ParaViewFilters.xml
 ${CMAKE_CURRENT_SOURCE_DIR}/ParaViewReaders.xml
 ${CMAKE_CURRENT_SOURCE_DIR}/ParaViewWriters.xml
+  ${PARAVIEW_EXTRA_GUI_RESOURCES} # Add any compiled in GUI
configuration xmls
   COMPRESSED_HELP_FILE
"${ParaView_BINARY_DIR}/Documentation/paraview.qch"
   SOURCES ${ParaView_SOURCE_FILES}
)

Utkarsh

On Tue, Feb 23, 2010 at 2:45 PM, Utkarsh Ayachit
 wrote:


Yea. I had figured it would :). Let me track it down.

On Tue, Feb 23, 2010 at 2:39 PM, Michael Jackson
 wrote:


Well I corrected the typo but then ran the "wrong" paraview in  
order to
test. I ran the standard 3.6.2 branch instead of the CVS branch.  
The

problem
still persists with the CVS branch.
___
Mike Jackson  www.bluequartz.net


On Feb 23, 2010, at 11:16 AM, pat marion wrote:


Is that supposed to be 'menu_label' ?

Pat

On Mon, Feb 22, 2010 at 1:14 PM, Michael Jackson
 wrote:
I have some custom filters that I have developed. I use the
"PARAVIEW_EXTRA_EXTERNAL_MODULES" to compile them directly into
ParaView. I
know they are getting compiled as I can see the compile command  
go by

on the
command line. The problem is that they do not show up when I run
ParaView in
the filter list. Here is an example XML File:


 
 
 
 


Which is added like so in my CMake files:
# -- Add the Client side xml
set(IPFFilterClient_XML

${PVMXADataModel_SOURCE_DIR}/Source/Client/IPFFilter/Resources/ 
IPFFilter_GUI.xml)

PARAVIEW_INCLUDE_GUI_RESOURCES( "${IPFFilterClient_XML}" )

This works just fine with ParaView 3.6.2. This was a completely  
clean

build.

Suggestions? Thanks.
___
Mike Jackson  www.bluequartz.net
Principal Software Engineer   mike.jack...@bluequartz.net
BlueQuartz Software   Dayton, Ohio


___
Powered by www.kitware.com

Visit other Kitware open-source projects at
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at:
http://paraview.org/Wiki/ParaView

Follow this link to subscribe/unsubscribe:
http://www.paraview.org/mailman/listinfo/paraview



___
Powered by www.kitware.com

Visit other Kitware open-source projects at
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at:
http://paraview.org/Wiki/ParaView

Follow this link to subscribe/unsubscribe:
http://www.paraview.org/mailman/listinfo/paraview










___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Follow this link to subscribe/unsubscribe:
http://www.paraview.org/mailman/listinfo/paraview