blojsom 3 plugins (show-me-more,pager,bookmarlet,param2ctx)
I notice in the new spring/hiberate implementation that many properties files have been convert to XML in many cases. Particularlly the blojsom-plugin.xml ,and it does not have any reference to the following plugins
1) bookmarlet
2) pager
3) param2ctx
4) show-me-more (set)
5) date-tool
I was wondering if this plugin functionality still is available for the above plugins with blojsom 3? I see a database table called Plugin which seems to set-up the specific plugins per blog (blogId).
Yet, in the case of page and show-me-more theses plugins have additional property files specific to the plugin
(ie... pager.properties & showmemore.properties)
If functionality still exists for about mentioned plugins? do we still use the two above *.properties files as opposed to a database table?
Will simply adding the following to blojsom-plugin.xml then setup the plugins to work and evenually can be added to a specific blog?
<bean id="bookmarklet"
class="org.blojsom.plugin.admin.BookmarkletPlugin"
init-method="init"
destroy-method="destroy"/>
<bean id="pager"
class="com.mbledug.blojsom.plugin.pager.FilterPlugin"
init-method="init"
destroy-method="destroy"/>
<bean id="param2ctx"
class="com.mbledug.blojsom.plugin.param2ctx.Param2CtxPlugin"
init-method="init"
destroy-method="destroy"/>
<bean id="show-me-more"
class="org.blojsom.plugin.showmore.ShowMeMorePlugin"
init-method="init"
destroy-method="destroy"/>
<bean id="show-me-more-admin"
class="org.blojsom.plugin.showmore.admin.ShowMeMoreAdminPlugin"
init-method="init"
destroy-method="destroy"/>
<bean id="date-tool"
class="org.apache.velocity.tools.generic.DateTool "
init-method="init"
destroy-method="destroy"/>
Thank You
Dan