[web2py] Re: syncing plugins across apps and with github -- again

2012-04-08 Thread Massimo Di Pierro
The problem is that plugins are more then modules. If the individual apps must be packable as separate apps they must contain the plugins. I like the idea of having an app with all the plugins but instad of referencing, why not create symbolic links? In that case if you package the apps they wil

[web2py] Re: syncing plugins across apps and with github -- again

2012-04-07 Thread kenji4569
I met the same issue, and took the following approach: - Create a centralized plugin app For me, this is the following app: https://github.com/sqlabs/sqlabs/tree/master/modules - Reference the modules of the app from other apps like: import applications.sqlabls.modules.plugin_color_widget In thi