Re: [Gimp-developer] enhancement: warnings instead of fatal error for duplicate calls to gimp_env_init (David Gowers)
On Sat, 2010-03-06 at 08:41 +1030, David Gowers wrote:
> >>> On Tue, 2010-03-02 at 08:01 -0500, lloyd konneker wrote:
> > I agree with Joao S. O. Bueno and disagree with David Bowers.
>
> Well, I'm glad you don't disagree with me, but who is that?
>
Sorry I mangled your name. BTW David Bowers is a famous
environmentalist, Sierra Club etc. Mr. Gowers was a pharmacist in the
movie "Its a Wonderful Life." He boxed Jimmy Stewart up the side of the
head, like you did me. Just kidding.
> >
> > Its better to make plugins meet the normal expectations of Python
> > programmers (you can import any Python file to use pieces of it) than to
> > add new conventions and directories for shared Python plugin code.
> > Simpler is better?
>
> The normal expectations of Python programmers are that the main loop
> will be guarded.
Granted.
> This is exactly the thing that allows you to import otherwise
> executable modules;
> without it, no guarantees can be made that the code you are importing
> will not interfere with global state in a way which causes your plugin
> to crash. You can depend on a specific version of a plugin which has
> known behaviour; In that case you prevent the user from upgrading that
> plugin, and you rely on knowledge of the internals of that plugin,
> which is very likely to get you into trouble if you ever need to
> upgrade it.
>
> The same principle applies to python scripts that are unguarded:
> importing them will, at the least, have significant side effects.
> Often they are entirely incapable of being cooperative.
>
> Hence, it's not practical to import a plugin module unless it
> specifically indicates that it is fit to be imported (by guarding the
> main loop)
But Gimp shouldn't protect programmers from themselves. If they import
a plugin that is not fit, or create dependencies on versions, let them.
>
> >
> > Often, authors don't plan their code will be useful to others. It's
> > just serendipity. If authors don't plan to share code and put it in
> > these new directories, it thwarts serendipitous reuse and
> > experimentation.
> >
> > It is inconsistent for a duplicate call to register() to be harmless
> > with a warning while a duplicate call to main() is fatal.
>
> Currently, the latter is serving the function of preventing the
> previously mentioned possibility of side effects of importing a plugin
> in this way.
>
> If there is another way of preventing that problem, then we could look
> at removing that aspect of main() calls.
> Otherwise, we absolutely must not.
>
> >
> > Also, new conventions and directories does not solve my wish to call
> > pydoc on plugins (which is not very important. I hope to download a
> > prototype Inspect plugin to gimp registry soon.) But it illustrates
> > that you can't always anticipate what people will want to do.
>
> I wanted to do that too.
> Just because you want to do something, doesn't mean it's wise to do so.
>
> Calling pydoc on unguarded python modules is just as unpredictable as
> importing unguarded python modules. Why? Because the way it gets the
> documentation is by first importing the module in question.
> Furthermore, all GIMP plugins' dependency on the 'gimp' (and/or
> gimpfu, etc..) modules mean that even if they are in the module search
> path, pydoc's attempt at importing them will fail (because the gimp
> and gimpfu,etc.. modules are only available to Python scripts that are
> being run by GIMP).Changing the mechanics of main() would not effect
> that.
>
> If you don't believe that, it's easy to check; set PYTHON_PATH to your
> plugins directory (full, absolute path like
> /home/llkk/.gimp-2.7/plugins), start Python, and try to import one of
> those plugins as a module.
>
> David
My Inspect plugin IS run by Gimp. Thus importing pydoc and invoking it
on plugins DOES work, as far as I can tell by my limited testing, with
the patch to Pygimp that I have proposed.
Also, you CAN invoke pydoc on the pygimp modules from an Inspect plugin
run by Gimp. It turns out not to be really useful, since the existing
documentation for pygimp is rather good.
IF you can't invoke pydoc on the command line on a plugin, it's not
because it can't find the pygimp modules (because you can set the path
so it will) but for the reason you described: they need Gimp running. I
really haven't tested it.
But this does seem to work: start Gimp, open the Python console, import
pydoc, and call pydoc.render_doc('gimp'). I believe this works even
without the patch under discussion. But pydoc.render_doc('colorxhtml')
crashes pyconsole lacking the patch under discussion.
My brain hurts.
Lloyd
___
Gimp-developer mailing list
[email protected]
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-developer
Re: [Gimp-developer] enhancement: warnings instead of fatal error for duplicate calls to gimp_env_init (David Gowers)
>>> On Tue, 2010-03-02 at 08:01 -0500, lloyd konneker wrote: > I agree with Joao S. O. Bueno and disagree with David Bowers. Well, I'm glad you don't disagree with me, but who is that? > > Its better to make plugins meet the normal expectations of Python > programmers (you can import any Python file to use pieces of it) than to > add new conventions and directories for shared Python plugin code. > Simpler is better? The normal expectations of Python programmers are that the main loop will be guarded. This is exactly the thing that allows you to import otherwise executable modules; without it, no guarantees can be made that the code you are importing will not interfere with global state in a way which causes your plugin to crash. You can depend on a specific version of a plugin which has known behaviour; In that case you prevent the user from upgrading that plugin, and you rely on knowledge of the internals of that plugin, which is very likely to get you into trouble if you ever need to upgrade it. The same principle applies to python scripts that are unguarded: importing them will, at the least, have significant side effects. Often they are entirely incapable of being cooperative. Hence, it's not practical to import a plugin module unless it specifically indicates that it is fit to be imported (by guarding the main loop) > > Often, authors don't plan their code will be useful to others. It's > just serendipity. If authors don't plan to share code and put it in > these new directories, it thwarts serendipitous reuse and > experimentation. > > It is inconsistent for a duplicate call to register() to be harmless > with a warning while a duplicate call to main() is fatal. Currently, the latter is serving the function of preventing the previously mentioned possibility of side effects of importing a plugin in this way. If there is another way of preventing that problem, then we could look at removing that aspect of main() calls. Otherwise, we absolutely must not. > > Also, new conventions and directories does not solve my wish to call > pydoc on plugins (which is not very important. I hope to download a > prototype Inspect plugin to gimp registry soon.) But it illustrates > that you can't always anticipate what people will want to do. I wanted to do that too. Just because you want to do something, doesn't mean it's wise to do so. Calling pydoc on unguarded python modules is just as unpredictable as importing unguarded python modules. Why? Because the way it gets the documentation is by first importing the module in question. Furthermore, all GIMP plugins' dependency on the 'gimp' (and/or gimpfu, etc..) modules mean that even if they are in the module search path, pydoc's attempt at importing them will fail (because the gimp and gimpfu,etc.. modules are only available to Python scripts that are being run by GIMP).Changing the mechanics of main() would not effect that. If you don't believe that, it's easy to check; set PYTHON_PATH to your plugins directory (full, absolute path like /home/llkk/.gimp-2.7/plugins), start Python, and try to import one of those plugins as a module. David ___ Gimp-developer mailing list [email protected] https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-developer
Re: [Gimp-developer] enhancement: warnings instead of fatal error for duplicate calls to gimp_env_init (David Gowers)
> On Tue, Mar 2, 2010 at 2:58 PM, Sven Neumann wrote: >> On Tue, 2010-03-02 at 08:01 -0500, lloyd konneker wrote: >> >> I wonder if importing a plug-in from another plug-in is really something >> that we want to support. If the goal is to share code, then perhaps the >> code that is worth sharing should be factored out into a Python module >> that the plug-ins can import. >> > > Every Python program is also able to be a python module that plug-ins > can import. We should preserve this feature of the language. > > (For example, one can implement an app with a comand line interface, > and then just add a GUI in another file that uses the functions > defined on the stand-alone first file). David Gowers wrote: I've considered this problem a fair bit, and my opinion is that if you want this functionality, you should simply guard your register()s. We cannot safely 'co-opt' python plugins that are not written with this functionality in mind, as they are designed to be run always in an independent process (hence they may do initialization which confuses the calling program, or vice versa); there is no modification to GIMP which could permit that, it is a logistical problem not a technical one. Allowing python plugins to make separate modules available on installation, similar to Sven's suggestion, seems to me the most practical suggestion. This means we would add two items to sys.path -- one the site modules* directory, and the other the modules* directory belonging to the specific user, which the installation of the plugin package could put modules into. We could further postulate that the normal python modules directory should be the destination of modules that do not require GIMP running in order to function, and only GIMP-requiring modules would be installed in it's modules* directory. I make this distinction because there are various good reasons not to install gimp-dependent modules in the global namespace (for example, pydoc and the general help() facility get confused because the imports of gimp modules fail.. so you can look up a specific module, but not search.) * I realize 'modules' is a term already used in the gimp directory structure. This is meant as a placeholder for something else...python-modules? I agree with Joao S. O. Bueno and disagree with David Bowers. Its better to make plugins meet the normal expectations of Python programmers (you can import any Python file to use pieces of it) than to add new conventions and directories for shared Python plugin code. Simpler is better? Often, authors don't plan their code will be useful to others. It's just serendipity. If authors don't plan to share code and put it in these new directories, it thwarts serendipitous reuse and experimentation. It is inconsistent for a duplicate call to register() to be harmless with a warning while a duplicate call to main() is fatal. Also, new conventions and directories does not solve my wish to call pydoc on plugins (which is not very important. I hope to download a prototype Inspect plugin to gimp registry soon.) But it illustrates that you can't always anticipate what people will want to do. Thanks ___ Gimp-developer mailing list [email protected] https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-developer
Re: [Gimp-developer] enhancement: warnings instead of fatal error for duplicate calls to gimp_env_init
On Wed, Mar 3, 2010 at 10:16 PM, Joao S. O. Bueno wrote: > On Tue, Mar 2, 2010 at 2:58 PM, Sven Neumann wrote: >> On Tue, 2010-03-02 at 08:01 -0500, lloyd konneker wrote: >> >> I wonder if importing a plug-in from another plug-in is really something >> that we want to support. If the goal is to share code, then perhaps the >> code that is worth sharing should be factored out into a Python module >> that the plug-ins can import. >> > > Every Python program is also able to be a python module that plug-ins > can import. We should preserve this feature of the language. > > (For example, one can implement an app with a comand line interface, > and then just add a GUI in another file that uses the functions > defined on the stand-alone first file). I've considered this problem a fair bit, and my opinion is that if you want this functionality, you should simply guard your register()s. We cannot safely 'co-opt' python plugins that are not written with this functionality in mind, as they are designed to be run always in an independent process (hence they may do initialization which confuses the calling program, or vice versa); there is no modification to GIMP which could permit that, it is a logistical problem not a technical one. Allowing python plugins to make separate modules available on installation, similar to Sven's suggestion, seems to me the most practical suggestion. This means we would add two items to sys.path -- one the site modules* directory, and the other the modules* directory belonging to the specific user, which the installation of the plugin package could put modules into. We could further postulate that the normal python modules directory should be the destination of modules that do not require GIMP running in order to function, and only GIMP-requiring modules would be installed in it's modules* directory. I make this distinction because there are various good reasons not to install gimp-dependent modules in the global namespace (for example, pydoc and the general help() facility get confused because the imports of gimp modules fail.. so you can look up a specific module, but not search.) * I realize 'modules' is a term already used in the gimp directory structure. This is meant as a placeholder for something else...python-modules? ___ Gimp-developer mailing list [email protected] https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-developer
Re: [Gimp-developer] enhancement: warnings instead of fatal error for duplicate calls to gimp_env_init
On Wed, Mar 3, 2010 at 9:07 AM, Sven Neumann wrote: > On Wed, 2010-03-03 at 08:46 -0300, Joao S. O. Bueno wrote: > >> > I wonder if importing a plug-in from another plug-in is really something >> > that we want to support. If the goal is to share code, then perhaps the >> > code that is worth sharing should be factored out into a Python module >> > that the plug-ins can import. >> > >> >> Every Python program is also able to be a python module that plug-ins >> can import. We should preserve this feature of the language. > > What exactly does that statement mean for the problem at hand? Means that the language has a feature to make development easier: that is it eases up reuse of the code by requiring less source code fiels to achieve the same tasks. So - it is not usual for a Python developer to be required do factor out a fully working source code file, that can be used as a stand alone piece, in order to re-use parts of the code in that file in other applications. The language has a trivial, elegant and seamless mechanism to allow this. The "problem at hand" as I see is exactly to preserve this Python language feature in GIMP plug-ins. On the other hand, simply putting a python module that is not a fully functional plug-in in GIMP's plug-ins directory, would cause GIMP to issue error messages on start-up , due to failed plug-in initialization. All GIMP will see is an executable ".py" file along with the plug-ins. Having to provide a directory structure, hacking with import paths, etc...just because one wants to share, say a couple RGB<->HSV functions in a set of 2 or 3 plug-ins is overkill. js -><- > > > Sven > > > ___ > Gimp-developer mailing list > [email protected] > https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-developer > ___ Gimp-developer mailing list [email protected] https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-developer
Re: [Gimp-developer] enhancement: warnings instead of fatal error for duplicate calls to gimp_env_init
On Wed, 2010-03-03 at 08:46 -0300, Joao S. O. Bueno wrote: > > I wonder if importing a plug-in from another plug-in is really something > > that we want to support. If the goal is to share code, then perhaps the > > code that is worth sharing should be factored out into a Python module > > that the plug-ins can import. > > > > Every Python program is also able to be a python module that plug-ins > can import. We should preserve this feature of the language. What exactly does that statement mean for the problem at hand? Sven ___ Gimp-developer mailing list [email protected] https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-developer
Re: [Gimp-developer] enhancement: warnings instead of fatal error for duplicate calls to gimp_env_init
On Tue, Mar 2, 2010 at 2:58 PM, Sven Neumann wrote: > On Tue, 2010-03-02 at 08:01 -0500, lloyd konneker wrote: >> Yes, I will submit a proper patch. I'm new but I can figure it out. >> >> I mainly wanted to get feedback whether it was desirable. I'm not clear >> when a discussion of an enhancement should move to Bugzilla. >> >> More testing reveals other issues and test cases: >> >> First, most plugins have unguarded calls to register(), so importing >> some plugins from a plugin ends up reregistering a plugin, with a >> warning to stderr from the Gimp PDB but apparently harmlessly. I'm >> still exploring, eg whether the order in which plugins are loaded >> matters, whether the warning is only for local plugins, whether Gimp >> supports multiple registrations of different plugins from the same >> Python source, etc. > > I wonder if importing a plug-in from another plug-in is really something > that we want to support. If the goal is to share code, then perhaps the > code that is worth sharing should be factored out into a Python module > that the plug-ins can import. > Every Python program is also able to be a python module that plug-ins can import. We should preserve this feature of the language. (For example, one can implement an app with a comand line interface, and then just add a GUI in another file that uses the functions defined on the stand-alone first file). > Sven > > > __ ___ Gimp-developer mailing list [email protected] https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-developer
Re: [Gimp-developer] enhancement: warnings instead of fatal error for duplicate calls to gimp_env_init
On Tue, 2010-03-02 at 08:01 -0500, lloyd konneker wrote: > Yes, I will submit a proper patch. I'm new but I can figure it out. > > I mainly wanted to get feedback whether it was desirable. I'm not clear > when a discussion of an enhancement should move to Bugzilla. > > More testing reveals other issues and test cases: > > First, most plugins have unguarded calls to register(), so importing > some plugins from a plugin ends up reregistering a plugin, with a > warning to stderr from the Gimp PDB but apparently harmlessly. I'm > still exploring, eg whether the order in which plugins are loaded > matters, whether the warning is only for local plugins, whether Gimp > supports multiple registrations of different plugins from the same > Python source, etc. I wonder if importing a plug-in from another plug-in is really something that we want to support. If the goal is to share code, then perhaps the code that is worth sharing should be factored out into a Python module that the plug-ins can import. Sven ___ Gimp-developer mailing list [email protected] https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-developer
Re: [Gimp-developer] enhancement: warnings instead of fatal error for duplicate calls to gimp_env_init
Yes, I will submit a proper patch. I'm new but I can figure it out. I mainly wanted to get feedback whether it was desirable. I'm not clear when a discussion of an enhancement should move to Bugzilla. More testing reveals other issues and test cases: First, most plugins have unguarded calls to register(), so importing some plugins from a plugin ends up reregistering a plugin, with a warning to stderr from the Gimp PDB but apparently harmlessly. I'm still exploring, eg whether the order in which plugins are loaded matters, whether the warning is only for local plugins, whether Gimp supports multiple registrations of different plugins from the same Python source, etc. Second, what paths to plugins are set when a plugin is invoked? Apparently only to local plugins, and not to plugins distributed with Gimp. So to import a distributed plugin from any plugin requires the importing plugin to extend the path. Not difficult but annoying. On Tue, 2010-03-02 at 08:49 +0100, Sven Neumann wrote: > On Sun, 2010-02-28 at 17:18 +, Omari Stephens wrote: > > On 02/28/2010 02:43 PM, lloyd konneker wrote: > > ::snip? SNIP!:: > > > Here is proposed addition for plug-ins/gimpmodule.c in pygimp_main() > > > that I have lightly tested. Note it raises a warning (Python prints > > > warning on stderr once, on the second call), not an exception. Note it > > > compiles with a C90 warning about mixing declarations and code. > > > > Just move the variable declaration to the top of the function. We > > should strive to make the codebase compile with as few meaningful > > warnings as possible. > > > > Also, is that proper code style? > > No, it isn't. First of all, a gboolean should be used instead of an int > and the code should use the macros TRUE and FALSE. And of course it > should follow the GIMP coding style guidelines. We can certainly adjust > the few lines ourselves. But it would make our life easier if you could > submit a proper patch. > > > Thanks, > Sven > > ___ Gimp-developer mailing list [email protected] https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-developer
Re: [Gimp-developer] enhancement: warnings instead of fatal error for duplicate calls to gimp_env_init
On Sun, 2010-02-28 at 17:18 +, Omari Stephens wrote: > On 02/28/2010 02:43 PM, lloyd konneker wrote: > ::snip? SNIP!:: > > Here is proposed addition for plug-ins/gimpmodule.c in pygimp_main() > > that I have lightly tested. Note it raises a warning (Python prints > > warning on stderr once, on the second call), not an exception. Note it > > compiles with a C90 warning about mixing declarations and code. > > Just move the variable declaration to the top of the function. We > should strive to make the codebase compile with as few meaningful > warnings as possible. > > Also, is that proper code style? No, it isn't. First of all, a gboolean should be used instead of an int and the code should use the macros TRUE and FALSE. And of course it should follow the GIMP coding style guidelines. We can certainly adjust the few lines ourselves. But it would make our life easier if you could submit a proper patch. Thanks, Sven ___ Gimp-developer mailing list [email protected] https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-developer
Re: [Gimp-developer] enhancement: warnings instead of fatal error for duplicate calls to gimp_env_init
On 02/28/2010 02:43 PM, lloyd konneker wrote:
::snip? SNIP!::
> Here is proposed addition for plug-ins/gimpmodule.c in pygimp_main()
> that I have lightly tested. Note it raises a warning (Python prints
> warning on stderr once, on the second call), not an exception. Note it
> compiles with a C90 warning about mixing declarations and code.
Just move the variable declaration to the top of the function. We
should strive to make the codebase compile with as few meaningful
warnings as possible.
Also, is that proper code style?
--xsdg
>
> if (query == Py_None) {
> PyErr_SetString(pygimp_error, "a query procedure must be
> provided");
> return NULL;
> }
>
> /* lkk 2010 begin enhancement*/
> static int was_called_previously = 0;
>
> if (was_called_previously) {
>PyErr_WarnEx(PyExc_RuntimeWarning, "main() should only be called
> once", 1);
>Py_INCREF(Py_None);
>return Py_None;
> }
> else {
>/* OK to set this here since following code either succeeds in
> initializing plugin, or fails hard. */
>was_called_previously = 1;
> }
> /* lkk 2010 end enhancement*/
___
Gimp-developer mailing list
[email protected]
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-developer
Re: [Gimp-developer] enhancement: warnings instead of fatal error for duplicate calls to gimp_env_init
On Sun, 2010-02-28 at 11:23 +0100, Sven Neumann wrote:
> On Sat, 2010-02-27 at 14:35 -0500, lloyd konneker wrote:
> > This is an enhancement request. Repeated calls to gimp_env_init should
> > yield warnings and not fatal errors. It has benefits for gimp plugins
> > written in Python.
> >
> > Currently gimp_env_init() calls g_error (fatal) if called a second time.
> > Instead, pygimp_main(), which calls gimp_env_init(), should check
> > whether this is a repeated call and issue a warning then return an
> > error. (I'm not sure if any changes are needed for ScriptFu, whether
> > Pygimp should check the return from gimp_main and raise a warning
> > exception, etc.)
>
> We would definitely have to change gimp_main() then as it must not be
> called more than once. I have a bad feeling about doing this change.
>
> > Currently, you can't import a plugin from another plugin unless the
> > imported plugin guards the call to main() to prevent it from being
> > called unless this is a top level invocation:
> >
> > if __name__=='__main__':
> > main()
> >
> > It could be sufficient to have a convention for plugins to guard the
> > call to main(), but the convention is not usually followed. Or you could
> > have a convention that any shared code needs to be in a separate module
> > from the top plugin module, but again, that convention is not often
> > followed.
> >
> > If you could import a plugin from within a Gimp plugin, then you could
> > share more code. You could use classes etc. from imported plugins. You
> > could also invoke the imported plugin's top function without invoking it
> > as a registered PDB procedure. Neither reason is compelling.
>
> Importing a plug-in from within a GIMP plug-in only makes sense for
> Python. So I would suggest that we seek for a solution that only
> involves changes to the GIMP Python bindings but does not require a
> change to libgimp or libgimpbase. I haven't looked at the code, but it
> should be possible to deal with this in pygimp_main().
>
>
> Sven
>
>
That seems reasonable.
Here is proposed addition for plug-ins/gimpmodule.c in pygimp_main()
that I have lightly tested. Note it raises a warning (Python prints
warning on stderr once, on the second call), not an exception. Note it
compiles with a C90 warning about mixing declarations and code.
if (query == Py_None) {
PyErr_SetString(pygimp_error, "a query procedure must be
provided");
return NULL;
}
/* lkk 2010 begin enhancement*/
static int was_called_previously = 0;
if (was_called_previously) {
PyErr_WarnEx(PyExc_RuntimeWarning, "main() should only be called
once", 1);
Py_INCREF(Py_None);
return Py_None;
}
else {
/* OK to set this here since following code either succeeds in
initializing plugin, or fails hard. */
was_called_previously = 1;
}
/* lkk 2010 end enhancement*/
___
Gimp-developer mailing list
[email protected]
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-developer
Re: [Gimp-developer] enhancement: warnings instead of fatal error for duplicate calls to gimp_env_init
On Sat, 2010-02-27 at 14:35 -0500, lloyd konneker wrote: > This is an enhancement request. Repeated calls to gimp_env_init should > yield warnings and not fatal errors. It has benefits for gimp plugins > written in Python. > > Currently gimp_env_init() calls g_error (fatal) if called a second time. > Instead, pygimp_main(), which calls gimp_env_init(), should check > whether this is a repeated call and issue a warning then return an > error. (I'm not sure if any changes are needed for ScriptFu, whether > Pygimp should check the return from gimp_main and raise a warning > exception, etc.) We would definitely have to change gimp_main() then as it must not be called more than once. I have a bad feeling about doing this change. > Currently, you can't import a plugin from another plugin unless the > imported plugin guards the call to main() to prevent it from being > called unless this is a top level invocation: > > if __name__=='__main__': > main() > > It could be sufficient to have a convention for plugins to guard the > call to main(), but the convention is not usually followed. Or you could > have a convention that any shared code needs to be in a separate module > from the top plugin module, but again, that convention is not often > followed. > > If you could import a plugin from within a Gimp plugin, then you could > share more code. You could use classes etc. from imported plugins. You > could also invoke the imported plugin's top function without invoking it > as a registered PDB procedure. Neither reason is compelling. Importing a plug-in from within a GIMP plug-in only makes sense for Python. So I would suggest that we seek for a solution that only involves changes to the GIMP Python bindings but does not require a change to libgimp or libgimpbase. I haven't looked at the code, but it should be possible to deal with this in pygimp_main(). Sven ___ Gimp-developer mailing list [email protected] https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-developer
