Re: [xwiki-users] Display Blog of specific Category on Main.WebHome

2014-01-15 Thread PSwamy
Well, I tried something using Xwiki Query Manager. Code below -

{{velocity}} 
#set($resultDocuments = $services.query.xwql("from
doc.object(Blog.BlogPostClass) as blog where blog.published = '1' and
:category member of blog.category and blog.hidden = '0' and doc.web =
'Blog'").execute()) 
#foreach($resultDocument in $resultDocuments) 
$resultDocument 
#end 
{{/velocity}} 

I get this below error. What is programming right and how do I enable this
right?

Caused by: org.xwiki.query.QueryException: Full form statements requires
programming right. Query statement = [select doc.fullName where from
doc.object(Blog.BlogPostClass) as blog where blog.published = '1' and
:category member of blog.category and blog.hidden = '0' and doc.web =
'Blog'] at
org.xwiki.query.internal.SecureQueryExecutorManager.execute(SecureQueryExecutorManager.java:88)
at org.xwiki.query.internal.DefaultQuery.execute(DefaultQuery.java:248) at
org.xwiki.query.internal.ScriptQuery.execute(ScriptQuery.java:236)



--
View this message in context: 
http://xwiki.475771.n2.nabble.com/Display-Blog-of-specific-Category-on-Main-WebHome-tp7588653p7588665.html
Sent from the XWiki- Users mailing list archive at Nabble.com.
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] Display Blog of specific Category on Main.WebHome

2014-01-16 Thread PSwamy
Thank you all for your input. Here is a snippet of code that solves my
problem. 

{{include document="Blog.BlogCode"/}}
{{velocity filter="none"}}
{{html clean="false" wiki="true"}}
#set($blogDoc = $xwiki.getDocument("Blog.Webhome"))
#getBlogEntries($blogDoc $entries) 

#foreach ($entryDoc in $xwiki.wrapDocs($entries))
   #getEntryObject($entryDoc $entryObj)
   #if($entryObj.getxWikiClass().getName() == $blogPostClassname)
#set($categories = $entryObj.getProperty('category').value)
#set($first = true)
#if($categories.size() > 0)
   #foreach($category in $categories)
 ## Do not indent
 #set($categoryDoc = $!xwiki.getDocument($category))
 #set($result =
"$!categoryDoc.getObject(${blogCategoryClassname}).getProperty('name').value.trim()")
 #if($result == 'Category1234')
   #displayEntry($entryDoc $entryObj true true)
 #end
   #end
#end
   #end
#end
{{/html}}
{{/velocity}}



--
View this message in context: 
http://xwiki.475771.n2.nabble.com/Display-Blog-of-specific-Category-on-Main-WebHome-tp7588653p7588688.html
Sent from the XWiki- Users mailing list archive at Nabble.com.
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


[xwiki-users] Individual user blogs

2014-01-16 Thread PSwamy
Hello All, Can users have their own individual blogs? If yes, how can we
enable it? -Thanks. Priti. 



--
View this message in context: 
http://xwiki.475771.n2.nabble.com/Individual-user-blogs-tp7588689.html
Sent from the XWiki- Users mailing list archive at Nabble.com.
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] Individual user blogs

2014-01-17 Thread PSwamy
That makes sense. Thanks for it Kaisen. 



--
View this message in context: 
http://xwiki.475771.n2.nabble.com/Individual-user-blogs-tp7588689p7588704.html
Sent from the XWiki- Users mailing list archive at Nabble.com.
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users