blender/release/scripts/io/netrender
Campbell Barton 163f6055d2 bugfix [#23182] Using self.report() inside poll() gives crash
poll() function is now a static method in python, this is more correct, matching C where the operator is not created to run poll.


    def poll(self, context): ...

is now...

    @staticmethod
    def poll(context): ...

Pythons way of doing static methods is a bit odd but cant be helped :|

This does make subclassing poll functions with COMPAT_ENGINES break, so had to modify quite a few scripts for this.
2010-08-05 16:05:30 +00:00
..
__init__.py netrender: fix reload 2010-07-31 19:23:22 +00:00
balancing.py correct fsf address 2010-02-12 13:34:04 +00:00
client.py RNA Types metaclass registration 2010-08-02 02:55:12 +00:00
master_html.py netrender 2010-07-17 18:40:00 +00:00
master.py netrender 2010-06-20 20:33:59 +00:00
model.py NetRender 2010-05-02 21:34:08 +00:00
netrender.css NetRender: 2010-04-28 01:54:12 +00:00
netrender.js netrender: refactor thumbnail generation code. New option to generate the thumbnail on the slaves (per slave option, default off). Missing thumbnails are still generated on demand by the master. 2010-01-09 18:21:27 +00:00
operators.py bugfix [#23182] Using self.report() inside poll() gives crash 2010-08-05 16:05:30 +00:00
repath.py SVN maintenance. 2010-08-01 21:29:50 +00:00
slave.py netrender 2010-07-17 18:40:00 +00:00
ui.py bugfix [#23182] Using self.report() inside poll() gives crash 2010-08-05 16:05:30 +00:00
utils.py RNA Types metaclass registration 2010-08-02 02:55:12 +00:00