|
View:
New views
11 Messages
—
Rating Filter:
Alert me
|
|
|
blojsom 3 plugins (show-me-more,pager,bookmarlet |
|
|
Re: blojsom 3 plugins (show-me-more, pager, bookmarlet, param2ctx)Dan-
I didn't carry over the bookmarklet plugin to blojsom 3 ... Yet. The 2 mbledug plugins are 3rd party plugins. The author may or may not choose to update them for blojsom 3. However, the pager plugin is sort of taken care of with blojsom's SkipEntriesFilter. For example, <http://your.site.com/blojsom/blog/default/skip/2/> (alternatively, <http://your.site.com/blojsom/blog/default/?pg_num=2>. That'll take you to the next page of 15 entries ... And so on. Just need to write a plugin to say output the number of pages available and output the current page. I created an issue for myself, <http://jira.blojsom.com/jira/browse/BLOJSOM-157>. Show me more needs a migration to blojsom 3. Date tool plugin is available in the add-on bundle. So, you could use the following (note the correct plugin class name): <bean id="date-tool" class=" org.blojsom.plugin.tools.DateToolPlugin" init-method="init" destroy-method="destroy"/> On 10/5/06 4:59 PM, "Dan Harth" <danharth@...> wrote: > > 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 -- David Czarnecki http://www.blojsom.com/blog/ | http://blojsom.sf.net ------------------------------------------------------------------------- Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys -- and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV _______________________________________________ Blojsom-developers mailing list Blojsom-developers@... https://lists.sourceforge.net/lists/listinfo/blojsom-developers |
|
|
Re: blojsom 3 plugins (show-me-more, pager, bookmarlet, param2ctx)David
Thank you .. I'll wait on the migrations (bookmarklet & show me more) and the additional implementation (#pages & #currentPage) to suppliment SkipEntriesFilter... That sounds great! Dan
|
|
|
|
|
|
Re: blojsom 3 plugins (show-me-more, pager, bookmarlet, param2ctx)OK. Will verify it with TinyMCE once I migrate the plugin.
And yes, spelling will be fixed if I did eventually migrate that plugin. On 10/5/06 6:06 PM, "Kenneth M. Horan" <KHoran@...> wrote: > On the subject of plugins, the show-me-more plugin does not play well > with tinyMCE due to its strict cutoff rule. It cuts the post off after > n characters no matter what, so if it happens to be in the middle of an > href tag... oh well! This can screw up the layout of the blog and users > have no clue why. So, may I request that when the show-me-more plugin > is converted to blojsom 3 that it's made HTML safe? > > > Also, there's one little thing that's been bugging me about the internal > aggregator plugin. From the manual: > > **************************************** > The plugin will pull the 3 most recent entries from the blogs that have > opted-in for aggregator. Blogs can opt-out of aggregator by including > the following in their blog.properties file. > > blojsom-plugin-internal-aggegator-opt-out=true > **************************************** > > blojsom-plugin-internal-AGGEGATOR?? > > I've done a lot of playing around this plugin and it annoys me to no end > each time something won't work because I've spelled "aggregator" > correctly. Please, oh please, stop the insanity! > > </rant> > > Ken > > > > -----Original Message----- > From: blojsom-developers-bounces@... > [mailto:blojsom-developers-bounces@...] On Behalf Of > David Czarnecki > Sent: Thursday, October 05, 2006 5:44 PM > To: blojsom developers > Subject: Re: [Blojsom-developers] blojsom 3 plugins (show-me-more, > pager, bookmarlet, param2ctx) > > Dan- > > I didn't carry over the bookmarklet plugin to blojsom 3 ... Yet. > > The 2 mbledug plugins are 3rd party plugins. The author may or may not > choose to update them for blojsom 3. > > However, the pager plugin is sort of taken care of with blojsom's > SkipEntriesFilter. For example, > <http://your.site.com/blojsom/blog/default/skip/2/> (alternatively, > <http://your.site.com/blojsom/blog/default/?pg_num=2>. That'll take you > to > the next page of 15 entries ... And so on. > > Just need to write a plugin to say output the number of pages available > and > output the current page. I created an issue for myself, > <http://jira.blojsom.com/jira/browse/BLOJSOM-157>. > > Show me more needs a migration to blojsom 3. > > Date tool plugin is available in the add-on bundle. So, you could use > the > following (note the correct plugin class name): > > <bean id="date-tool" > class=" org.blojsom.plugin.tools.DateToolPlugin" > init-method="init" > destroy-method="destroy"/> > > > On 10/5/06 4:59 PM, "Dan Harth" <danharth@...> wrote: > >> >> 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 -- David Czarnecki http://www.blojsom.com/blog/ | http://blojsom.sf.net ------------------------------------------------------------------------- Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys -- and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV _______________________________________________ Blojsom-developers mailing list Blojsom-developers@... https://lists.sourceforge.net/lists/listinfo/blojsom-developers |
|
|
Re: blojsom 3 plugins (show-me-more, pager, bookmarlet, param2ctx)I'm working on the Blojsom3 update for Mbledug plugins, as necessary (i.e. pager plugin no more).
Cheers, Cliff. On 10/6/06, David Czarnecki <
david@...> wrote: Dan- ------------------------------------------------------------------------- Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys -- and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV _______________________________________________ Blojsom-developers mailing list Blojsom-developers@... https://lists.sourceforge.net/lists/listinfo/blojsom-developers |
|
|
Re: blojsom 3 plugins (show-me-more, pager, bookmarlet, param2ctx)On Oct 5, 2006, at 6:06 PM, Kenneth M. Horan wrote: > > blojsom-plugin-internal-AGGEGATOR?? > > I've done a lot of playing around this plugin and it annoys me to > no end > each time something won't work because I've spelled "aggregator" > correctly. Please, oh please, stop the insanity! I have to admit that there is something enjoyable about blojsom having its own legacy misspelling. Can you say "Referer"? :) But yes, this drove me mad when I was configuring an aggregating blog as a proof-of-concept. I ended up cutting and pasting the reference and things started working, and this is when I noticed the misspelling. -- Timothy Stone | www dot petmystone dot com Rising Sun, MD | tstone at petmystone dot com "This Satan's drink [coffee] is so delicious... we shall cheat Satan by baptizing it." Pope Clement VIII (1592-1605) ------------------------------------------------------------------------- Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys -- and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV _______________________________________________ Blojsom-developers mailing list Blojsom-developers@... https://lists.sourceforge.net/lists/listinfo/blojsom-developers |
|
|
Re: blojsom 3 plugins (show-me-more, pager, bookmarlet, param2ctx)Does the comment by Cliff Subagio indicate that the "pager plugin no more" have the meaning or paraphase too "it will not be upgraded to Blojsom 3.x?"
I might be missing something with the new SkipEntriesFilter plugin? but it seems that some functionality that pager plugin offered might not be available in the new SkipEntriesFilter plugin? Specifically, the settings in the current pager.properties which controls the number of entries per page; # The number of entries per page. page-size=5 I know in the v2.x in the blog.properties a property value of blog-entries-display=15 was available, but when pager plugin was installed, it took precedence and worked together to determine the calulation for the entries per page and the total number of pages. Will the SkipEntriesFilter plugin also provide this specific functionality? If the blog-entries-display is modified downward to 5 or 6. The pager work well in this particular area... Dan
|
|
|
Re: blojsom 3 plugins (show-me-more, pager, bookmarlet, param2ctx)Hi Dan,
I haven't had a closer look on SkipEntriesFilterPlugin, but from what David said it sounds pretty similar to Pager Plugin so it's something I'm not going to update for Blojsom3. I was actually thinking of changing pager plugin to pull the page size from blog-entries-display instead of having a separate properties file, but obviously I've never got around to it (my bad). Btw, if you already have a blojsom3 environment ready and you want to try out param2ctx for blojsom 3, just let me know and I'll send you the snapshot jar. Cheers, Cliff.
On 10/10/06, Dan Harth <danharth@...> wrote:
------------------------------------------------------------------------- Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys -- and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV _______________________________________________ Blojsom-developers mailing list Blojsom-developers@... https://lists.sourceforge.net/lists/listinfo/blojsom-developers |
|
|
Re: blojsom 3 plugins (show-me-more, pager, bookmarlet, param2ctx)Dan-
The Skip Entries filter and its associated plugin work together. The former handles the ability to use the /skip/#/ syntax in the URL to page through entries and the latter handles the output of data used for # of pages and current page to output the proper previous/next page links. The # of pages is controlled by the blog-entries-display property. So, if you changed this property to 5 or 6 from 15, the # of pages of entries would likely increase. On 10/9/06 6:09 PM, "Dan Harth" <danharth@...> wrote: > > Does the comment by Cliff Subagio indicate that the "pager plugin no more" > have the meaning or paraphase too "it will not be upgraded to Blojsom 3.x?" > > I might be missing something with the new SkipEntriesFilter plugin? but it > seems that > some functionality that pager plugin offered might not be available in the > new SkipEntriesFilter plugin? > Specifically, the settings in the current pager.properties which controls > the number > of entries per page; > > > # The number of entries per page. > page-size=5 > > > I know in the v2.x in the blog.properties a property value of > blog-entries-display=15 was available, but when pager plugin was installed, > it took precedence > and worked together to determine the calulation for the entries per page and > the total number of pages. > > Will the SkipEntriesFilter plugin also provide this specific functionality? > If the blog-entries-display is modified downward to 5 or 6. The pager work > well in this particular area... > > Dan > > > > Cliffano Subagio wrote: >> >> I'm working on the Blojsom3 update for Mbledug plugins, as necessary (i.e. >> pager plugin no more). >> >> Cheers, >> Cliff. >> >> On 10/6/06, David Czarnecki <david@...> wrote: >>> >>> Dan- >>> >>> I didn't carry over the bookmarklet plugin to blojsom 3 ... Yet. >>> >>> The 2 mbledug plugins are 3rd party plugins. The author may or may not >>> choose to update them for blojsom 3. >>> >>> However, the pager plugin is sort of taken care of with blojsom's >>> SkipEntriesFilter. For example, >>> <http://your.site.com/blojsom/blog/default/skip/2/> (alternatively, >>> <http://your.site.com/blojsom/blog/default/?pg_num=2>. That'll take you >>> to >>> the next page of 15 entries ... And so on. >> >> ------------------------------------------------------------------------- >> Take Surveys. Earn Cash. Influence the Future of IT >> Join SourceForge.net's Techsay panel and you'll get the chance to share >> your >> opinions on IT & business topics through brief surveys -- and earn cash >> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV >> _______________________________________________ >> Blojsom-developers mailing list >> Blojsom-developers@... >> https://lists.sourceforge.net/lists/listinfo/blojsom-developers >> >> -- David Czarnecki http://www.blojsom.com/blog/ | http://blojsom.sf.net ------------------------------------------------------------------------- Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys -- and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV _______________________________________________ Blojsom-developers mailing list Blojsom-developers@... https://lists.sourceforge.net/lists/listinfo/blojsom-developers |
|
|
Re: blojsom 3 plugins (show-me-more, pager, bookmarlet, param2ctx)Hi Dan,
To add the page by page view a la pager plugin with Blojsom 3.1, please follow the instruction mentioned here http://mbledug.com/blog/blog/blog/projects/2007/01/31/Ressurecting-Page-By-Page-View-A-La-Pager-Plugin-In-Blojsom-3 Cheers, Cliff. On 10/10/06,
Dan Harth <danharth@...> wrote:
------------------------------------------------------------------------- Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys - and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV _______________________________________________ Blojsom-developers mailing list Blojsom-developers@... https://lists.sourceforge.net/lists/listinfo/blojsom-developers |
| Free embeddable forum powered by Nabble | Forum Help |