From donnamsnow at gmail.com Mon Oct 9 17:31:31 2006 From: donnamsnow at gmail.com (Donna M. Snow) Date: Mon, 09 Oct 2006 08:31:31 -0700 Subject: [COREblog-en] modification to category listing Message-ID: <452A6B53.1000903@gmail.com> Hi, I need to modify http://demo1.csquaredtech.com/insider-blogs/categories (change 'up one level' to "top of Blog") and hide the by Paul Resnikoff and date... I can't seem to find the template for modifying this particular page..(I was able to modify the individual category pages.. http://demo1.csquaredtech.com/insider-blogs/categories/Music%20Stores/ (changed 'up one level' to 'All Categories') Best Regards, Donna M. Snow, Owner C Squared Technologies illuminate your web http://www.csquaredtech.com From nyusuke at nagosui.org Mon Oct 9 20:17:02 2006 From: nyusuke at nagosui.org (Yusuke NAKAI) Date: Tue, 10 Oct 2006 03:17:02 +0900 Subject: [COREblog-en] modification to category listing In-Reply-To: <452A6B53.1000903@gmail.com> References: <452A6B53.1000903@gmail.com> Message-ID: <452A921E.3050809@nagosui.org> Hi, > I need to modify http://demo1.csquaredtech.com/insider-blogs/categories > (change 'up one level' to "top of Blog") and hide the by Paul Resnikoff > and date... A default view method of each portal_type instance can be found in "ZMI > Plone instance > portal_types". "ZMI > Plone instance > portal_types > COREBlogCategoryFolder" says that default view method of this instance is "folder_listing". So you can change view of COREBlogCategoryFolder by editting "ZMI > Plone instance > portal_skins > plone_content > folder_listing". But this change causes site-wide effect, so if you customize folder_listing template, view of other portal_type instances using folder_listing as default view method is all affected. If you want to change in place (e.g. only for COREBlogCategoryFolder), you need to take another way. For example, First, go to "ZMI > Plone instance > portal_types > COREBlogCategoryFolder", edit like this: Default view method : cbcategory_folder_listing Available view methods : cbcategory_folder_listing folder_listing Second, go to portal_skins/plone_content/folder_listing, click customize button and customize it as you like (e.g. comment out "up one level" link, author and date). Finally, rename it cbcategory_folder_listing. Regards, -- Yusuke NAKAI mail: nyusuke at nagosui.org web : http://nagosui.org From donnamsnow at gmail.com Wed Oct 11 23:02:12 2006 From: donnamsnow at gmail.com (Donna M. Snow) Date: Wed, 11 Oct 2006 14:02:12 -0700 Subject: [COREblog-en] modification to category listing In-Reply-To: <452A921E.3050809@nagosui.org> References: <452A6B53.1000903@gmail.com> <452A921E.3050809@nagosui.org> Message-ID: <452D5BD4.7030509@gmail.com> Yusuke NAKAI wrote: > Hi, > > >> I need to modify http://demo1.csquaredtech.com/insider-blogs/categories >> (change 'up one level' to "top of Blog") and hide the by Paul Resnikoff >> and date... >> > > A default view method of each portal_type instance can be found in "ZMI > > Plone instance > portal_types". > > "ZMI > Plone instance > portal_types > COREBlogCategoryFolder" says that > default view method of this instance is "folder_listing". So you can > change view of COREBlogCategoryFolder by editting "ZMI > Plone instance > > portal_skins > plone_content > folder_listing". > > But this change causes site-wide effect, so if you customize > folder_listing template, view of other portal_type instances using > folder_listing as default view method is all affected. If you want to > change in place (e.g. only for COREBlogCategoryFolder), you need to take > another way. For example, > > First, go to "ZMI > Plone instance > portal_types > > COREBlogCategoryFolder", edit like this: > > Default view method : cbcategory_folder_listing > Available view methods : cbcategory_folder_listing > folder_listing > > Second, go to portal_skins/plone_content/folder_listing, click customize > button and customize it as you like (e.g. comment out "up one level" > link, author and date). > > Finally, rename it cbcategory_folder_listing. > > > Regards, > > Thank You so much! This worked perfectly! http://demo1.csquaredtech.com/insider-blogs/categories http://demo1.csquaredtech.com/insider-blogs/categories/Legal So now on the http://demo1.csquaredtech.com/insider-blogs/categories/Legal pages (individual category pages) I need to list entries reverse chronological.. (latest entry first..) any suggests? I'm looking for template now for this page.. Donna M. Snow From nyusuke at nagosui.org Thu Oct 12 04:31:02 2006 From: nyusuke at nagosui.org (Yusuke NAKAI) Date: Thu, 12 Oct 2006 11:31:02 +0900 Subject: [COREblog-en] modification to category listing In-Reply-To: <452D5BD4.7030509@gmail.com> References: <452A6B53.1000903@gmail.com> <452A921E.3050809@nagosui.org> <452D5BD4.7030509@gmail.com> Message-ID: <7f6bb0b70610111931u40eaa316jfee30bc72eaf4d24@mail.gmail.com> Hi, > http://demo1.csquaredtech.com/insider-blogs/categories/Legal pages > (individual category pages) I need to list entries reverse > chronological.. (latest entry first..) any suggests? I'm looking for > template now for this page.. A template for category view of COREBlog2 is "ZMI > Plone instance > portal_skins > COREBlog2 > cbcategory_view". And "batch" var for batch processing for categories is described here like this: batch python:here.getEntryInCategory(category_ids = [here.getInternal_id()], batch=True,b_size=b_size,b_start= b_start,full_objects=False);" The "getEntryInCategory" used here is defined in "Zope instance > Products > COREBlog2 > content > coreblog2.py" (line 715). And you'll find it takes "sort_order" argument: ---------------------------------------------------------------------- 715 def getEntryInCategory(self,category_ids,\ 716 sort_on='Date',sort_order='',\ 717 batch=False,b_size=0,b_start=0,\ 718 full_objects=True): ---------------------------------------------------------------------- So, you can list entries in reverse order by adding "sort_order='reverse'," to getEntryInCategory: batch python:here.getEntryInCategory(category_ids = [here.getInternal_id()], sort_order='reverse', batch=True,b_size=b_size,b_start= b_start,full_objects=False);" Regards, -- Yusuke NAKAI mail: nyusuke at nagosui.org web: http://nagosui.org From donnamsnow at gmail.com Sun Oct 15 07:09:42 2006 From: donnamsnow at gmail.com (Donna M. Snow) Date: Sat, 14 Oct 2006 22:09:42 -0700 Subject: [COREblog-en] modification to category listing In-Reply-To: <7f6bb0b70610111931u40eaa316jfee30bc72eaf4d24@mail.gmail.com> References: <452A6B53.1000903@gmail.com> <452A921E.3050809@nagosui.org> <452D5BD4.7030509@gmail.com> <7f6bb0b70610111931u40eaa316jfee30bc72eaf4d24@mail.gmail.com> Message-ID: <4531C296.4060800@gmail.com> Thank you so much. That did it... http://demo1.csquaredtech.com/insider-blogs/categories/Legal now has the most recent posting under that category at the top. Donna M. Snow Yusuke NAKAI wrote: > Hi, > > >> http://demo1.csquaredtech.com/insider-blogs/categories/Legal pages >> (individual category pages) I need to list entries reverse >> chronological.. (latest entry first..) any suggests? I'm looking for >> template now for this page.. >> > > A template for category view of COREBlog2 is "ZMI > Plone instance > > portal_skins > COREBlog2 > cbcategory_view". And "batch" var for batch > processing for categories is described here like this: > > batch python:here.getEntryInCategory(category_ids = [here.getInternal_id()], > batch=True,b_size=b_size,b_start= b_start,full_objects=False);" > > The "getEntryInCategory" used here is defined in "Zope instance > > Products > COREBlog2 > content > coreblog2.py" (line 715). And you'll > find it takes "sort_order" argument: > ---------------------------------------------------------------------- > 715 def getEntryInCategory(self,category_ids,\ > 716 sort_on='Date',sort_order='',\ > 717 batch=False,b_size=0,b_start=0,\ > 718 full_objects=True): > ---------------------------------------------------------------------- > > So, you can list entries in reverse order by adding > "sort_order='reverse'," to getEntryInCategory: > > batch python:here.getEntryInCategory(category_ids = [here.getInternal_id()], > sort_order='reverse', > batch=True,b_size=b_size,b_start= b_start,full_objects=False);" > > Regards, > > From donnamsnow at gmail.com Mon Oct 16 04:09:40 2006 From: donnamsnow at gmail.com (Donna M. Snow) Date: Sun, 15 Oct 2006 19:09:40 -0700 Subject: [COREblog-en] RSS issue Message-ID: <4532E9E4.1050801@gmail.com> Hi Guys (and gals), OK So thanks to Yusuke my issue with reversing the entries under categories to "newest" entry first.. is fixed! Now here is what i have.. (need help with..) I need to be able to provide RSS for the entire blog http://demo1.csquaredtech.com/insider-blogs - note there is no RSS button http://demo1.csquaredtech.com/insider-blogs/categories/Legal - has RSS button I checked my CSS to see if maybe I "styled" the rss button away..but it appears that I haven't.. Anyone know why I don't have rss at top level of blog? Am I missing something...?? Thank you :-) Donna M. Snow, Owner C Squared Technologies illuminate your web From rbh at neohawk.org Mon Oct 16 04:28:34 2006 From: rbh at neohawk.org (Robert B. Hawkins) Date: Sun, 15 Oct 2006 22:28:34 -0400 Subject: [COREblog-en] RSS issue In-Reply-To: <4532E9E4.1050801@gmail.com> References: <4532E9E4.1050801@gmail.com> Message-ID: <200610152228.35510.rbh@neohawk.org> On Sunday 15 October 2006 22:09, Donna M. Snow wrote: > Hi Guys (and gals), > > OK So thanks to Yusuke my issue with reversing the entries under > categories to "newest" entry first.. is fixed! > > Now here is what i have.. (need help with..) > > I need to be able to provide RSS for the entire blog > http://demo1.csquaredtech.com/insider-blogs - note there is no RSS button > http://demo1.csquaredtech.com/insider-blogs/categories/Legal - has RSS > button > > I checked my CSS to see if maybe I "styled" the rss button away..but it > appears that I haven't.. > > Anyone know why I don't have rss at top level of blog? Am I missing > something...?? Do you have RSS enabled on the site? Error Value Site syndication via RSS feeds is not allowed. Ask the sites system administrator to go to portal_syndication > Policies and enable syndication. Each folder then needs to have syndication enabled. > > Thank you :-) > > Donna M. Snow, Owner > C Squared Technologies > illuminate your web > _______________________________________________ > COREblog-en mailing list > COREblog-en at postaria.com > http://postaria.com/mailman/listinfo/coreblog-en > Unsubscription writing to coreblog-en-leave at postaria.com -- Robert B. Hawkins http://www.neohawk.org 440-210-1621 (home) 440-829-4993 (cell) rbh at neohawk.org From mhowell at sharpit.com Mon Oct 16 05:12:38 2006 From: mhowell at sharpit.com (Matt Howell) Date: Sun, 15 Oct 2006 20:12:38 -0700 Subject: [COREblog-en] RSS issue In-Reply-To: <4532E9E4.1050801@gmail.com> Message-ID: <20061016030926.5B8AE1E40A5@tony.itaapy.com> Donna... Is it possible that you have Syndication enabled for the site (handled by Plone) but have not enabled it for Coreblog, specifically? The RSS site action you are seeing on the front page may be generated by Plone, and not by Coreblog. I had similar behaviour in my personal site, recently, and I found that even though Syndication was enabled in /portal_syndication (Syndication for the whole site), I also needed to navigate to my Coreblog instance in Plone, click the Syndication tab, and enable it there. Best of luck, -Matt http://www.matticus.com :: -----Original Message----- :: From: coreblog-en-bounces at postaria.com :: [mailto:coreblog-en-bounces at postaria.com] On Behalf Of Donna M. Snow :: Sent: Sunday, October 15, 2006 7:10 PM :: To: Coreblog (English) :: Subject: [COREblog-en] RSS issue :: :: Hi Guys (and gals), :: :: OK So thanks to Yusuke my issue with reversing the entries :: under categories to "newest" entry first.. is fixed! :: :: Now here is what i have.. (need help with..) :: :: I need to be able to provide RSS for the entire blog :: http://demo1.csquaredtech.com/insider-blogs - note there is :: no RSS button :: http://demo1.csquaredtech.com/insider-blogs/categories/Legal :: - has RSS button :: :: I checked my CSS to see if maybe I "styled" the rss button :: away..but it appears that I haven't.. :: :: Anyone know why I don't have rss at top level of blog? Am I :: missing something...?? :: :: Thank you :-) :: :: Donna M. Snow, Owner :: C Squared Technologies :: illuminate your web :: _______________________________________________ :: COREblog-en mailing list :: COREblog-en at postaria.com :: http://postaria.com/mailman/listinfo/coreblog-en :: Unsubscription writing to coreblog-en-leave at postaria.com :: -------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/x-pkcs7-signature Size: 3934 bytes Desc: not available Url : http://postaria.com/pipermail/coreblog-en/attachments/20061015/92611d93/attachment.bin From donnamsnow at gmail.com Mon Oct 16 05:24:38 2006 From: donnamsnow at gmail.com (Donna M. Snow) Date: Sun, 15 Oct 2006 20:24:38 -0700 Subject: [COREblog-en] RSS issue - fixed In-Reply-To: <20061016030926.5B8AE1E40A5@tony.itaapy.com> References: <20061016030926.5B8AE1E40A5@tony.itaapy.com> Message-ID: <4532FB76.4040806@gmail.com> Thank you! Yes I had /portal_syndication enabled.. BUT didn't see the syndication tab (had to reload browser!) So now i have full blog RSS.. thank you! (and the capability to turn it off elsewhere) You have all been wonderful helping me get through this.. btw..I'm going to be leading a "talk" on Blogs at Plone Conference 2006 .. If you happen to be there.. drop by and say hi! Donna M. Snow, Owner C Squared Technologies illuminate your web From mhowell at sharpit.com Mon Oct 16 05:34:35 2006 From: mhowell at sharpit.com (Matt Howell) Date: Sun, 15 Oct 2006 20:34:35 -0700 Subject: [COREblog-en] RSS issue - fixed In-Reply-To: <4532FB76.4040806@gmail.com> Message-ID: <20061016033123.528351E40A7@tony.itaapy.com> Awesome... I am SOOO jealous! At this point, Plone is just a hobby, so conferences aren't in the budget. Have fun! -Matt :: -----Original Message----- :: From: coreblog-en-bounces at postaria.com :: [mailto:coreblog-en-bounces at postaria.com] On Behalf Of Donna M. Snow :: Sent: Sunday, October 15, 2006 8:25 PM :: To: Coreblog (English) :: Subject: Re: [COREblog-en] RSS issue - fixed :: :: Thank you! :: :: Yes I had /portal_syndication enabled.. BUT didn't see the :: syndication tab (had to reload browser!) :: :: So now i have full blog RSS.. thank you! :: :: (and the capability to turn it off elsewhere) :: :: You have all been wonderful helping me get through this.. :: :: btw..I'm going to be leading a "talk" on Blogs at Plone :: Conference 2006 .. :: :: If you happen to be there.. drop by and say hi! :: :: Donna M. Snow, Owner :: C Squared Technologies :: illuminate your web :: _______________________________________________ :: COREblog-en mailing list :: COREblog-en at postaria.com :: http://postaria.com/mailman/listinfo/coreblog-en :: Unsubscription writing to coreblog-en-leave at postaria.com :: -------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/x-pkcs7-signature Size: 3934 bytes Desc: not available Url : http://postaria.com/pipermail/coreblog-en/attachments/20061015/30a5813d/attachment.bin From Dana.Ciocan at warwick.ac.uk Wed Oct 18 10:51:13 2006 From: Dana.Ciocan at warwick.ac.uk (Dana Ciocan) Date: Wed, 18 Oct 2006 09:51:13 +0100 Subject: [COREblog-en] Allowing all members to post Message-ID: Hi there, I am using COREblog2 0.9b and Plone 2.1. I would like to make my COREblog instance collaborative - i.e. anyone who joins up to the blog will be able to post (obviously we will moderate any entries added!). So far, to try and get this to work, I have given users with the 'member' role these permissions: COREBlog2: Add COREBlogCategory COREBlog2: Add COREBlogCategoryFolder COREBlog2: Add COREBlogComment COREBlog2: Add COREBlogCommentFolder COREBlog2: Add COREBlogEntry COREBlog2: Add COREBlogTrackback This mostly works fine, except when adding entries - COREblog will let a user with the member role add an entry if they click 'next', but not if they click 'save' - obviously I'd rather that members are able to click 'save' when they post entries. When a user with the member role tries to add an entry by clicking 'save', they are told they have 'insufficient priveleges'. Does anyone have any ideas as to what to try next? I don't really want to start trying things without having some idea what I'm doing! Thanks, Dana. ------------------------------------------------------- Dana Ciocan Technical Support Developer UK Centre for Legal Education University of Warwick, Coventry CV4 7AL Tel: +44 (0)24 7657 5331 Fax: +44 (0)24 7652 3290 Web: http://www.ukcle.ac.uk