Fórum

Tags in Velocity Template

Joona Vaurio, modificado 15 Anos atrás.

Tags in Velocity Template

New Member Postagens: 21 Data de Entrada: 22/07/08 Postagens Recentes
Hello.

I have a news page, that lists all articles with type news and on the main page I'm supposed to show some of these news. The articles on the main page are not the newest, they are picked manually, so using tags would solve this. However, I can't use asset publisher because the main page news should have a read more link to news page where the whole article is shown in a certain journal content portlet. All this is easy with velocity templates, but I can't figure out how to select the wanted articles to main page. The best way could be using a tag but I did not find any information about that. Is it possible to select articles by tag in journal velocity template?
thumbnail
Josh Asbury, modificado 15 Anos atrás.

RE: Tags in Velocity Template

Expert Postagens: 498 Data de Entrada: 08/09/06 Postagens Recentes
I'm trying to accomplish the same thing. Were you ever able to figure it out?
Thomas Kellerer, modificado 13 Anos atrás.

RE: Tags in Velocity Template

Expert Postagens: 490 Data de Entrada: 09/06/08 Postagens Recentes
Joona Vaurio:
Is it possible to select articles by tag in journal velocity template?
I'm also looking for a solution to this?
Any ideas (using Liferay 5.2.3)?

Regards
Thomas
thumbnail
Amos Fong, modificado 13 Anos atrás.

RE: Tags in Velocity Template

Liferay Legend Postagens: 2047 Data de Entrada: 07/10/08 Postagens Recentes
Hi Guys,

I believe the method you're looking for is this:

TagsAssetLocalServiceUtil.getAssets(
	long groupId, long[] classNameIds, long[] entryIds,
	long[] notEntryIds, boolean andOperator,
	boolean excludeZeroViewCount, Date publishDate, Date expirationDate,
	int start, int end)


where entryIds is the entryId of the TagEntry. Then pass the classNameId of journal articles and you should get what you need. (This might not be the exact method parameters, I'm looking at 5.2 ee)
Petteri Torssonen, modificado 13 Anos atrás.

RE: Tags in Velocity Template

New Member Postagens: 20 Data de Entrada: 21/02/10 Postagens Recentes
how about in 6.0.5? Haven't founded the way...
Alberto Fernadez, modificado 13 Anos atrás.

RE: Tags in Velocity Template

Junior Member Postagens: 49 Data de Entrada: 06/05/09 Postagens Recentes
What method would we use in 6.0.5?
I have been trying to find it in the javadocs without success.
The only way I could make something similar work was by checking all articles. I'm assuming this would be very bad in terms of performace. If someone know a better way please let me know.
I could select articles by tag in 6.0.5:

#set($AssetTagLocalService = $serviceLocator.findService("com.liferay.portlet.asset.service.AssetTagLocalService"))
#set($JournalArticleLocalService = $serviceLocator.findService("com.liferay.portlet.journal.service.JournalArticleLocalService"))

#set ($searchTag = "TagToSearch")

#set($articles = $JournalArticleLocalService.getStructureArticles(@group_id@,"structure"))
##in my case I know I want the articles that come from a certain structure but it also work with getArticles() in general
#foreach ( $article in $articles)
##check if it is the latest version
 #if ( $JournalArticleLocalService.isLatestVersion(@group_id@,$article.articleId, $article.version))
  ##Check all tags
  #set($articlePK = $article.resourcePrimKey)
  #set ($tagsAsset = $AssetTagLocalService.getTagNames("com.liferay.portlet.journal.model.JournalArticle", $articlePK))
  #foreach( $tag in $tagsAsset )
    #if($tag == $searchTag)
    ##Do whatever, for example
    <p> Render article content: </p>
    <p>uuid: $article.uuid</p>
    <p>Title: $article.title</p>
    <p> ------------------------------------</p>
    #end
  #end
 #end
#end


It has to be a better way
Roy Brondgeest, modificado 12 Anos atrás.

RE: Tags in Velocity Template

Junior Member Postagens: 25 Data de Entrada: 13/01/11 Postagens Recentes
The right way would be to use AssetEntryQuery... but I dont think its possible to instantiate one in velocity...

Heres the Java equivalent for it:

AssetEntryQuery assetEntryQuery = new AssetEntryQuery();
long[] anyTagIds = {tagid};
assetEntryQuery.setAnyTagIds(anyTagIds);
List<assetentry> assetEntryList = AssetEntryLocalServiceUtil.getEntries(assetEntryQuery);
thumbnail
behnaz eslami, modificado 11 Anos atrás.

RE: Tags in Velocity Template

Junior Member Postagens: 54 Data de Entrada: 14/11/11 Postagens Recentes
Alberto Fernadez:
What method would we use in 6.0.5?
I have been trying to find it in the javadocs without success.
The only way I could make something similar work was by checking all articles. I'm assuming this would be very bad in terms of performace. If someone know a better way please let me know.
I could select articles by tag in 6.0.5:

#set($AssetTagLocalService = $serviceLocator.findService("com.liferay.portlet.asset.service.AssetTagLocalService"))
#set($JournalArticleLocalService = $serviceLocator.findService("com.liferay.portlet.journal.service.JournalArticleLocalService"))

#set ($searchTag = "TagToSearch")

#set($articles = $JournalArticleLocalService.getStructureArticles(@group_id@,"structure"))
##in my case I know I want the articles that come from a certain structure but it also work with getArticles() in general
#foreach ( $article in $articles)
##check if it is the latest version
 #if ( $JournalArticleLocalService.isLatestVersion(@group_id@,$article.articleId, $article.version))
  ##Check all tags
  #set($articlePK = $article.resourcePrimKey)
  #set ($tagsAsset = $AssetTagLocalService.getTagNames("com.liferay.portlet.journal.model.JournalArticle", $articlePK))
  #foreach( $tag in $tagsAsset )
    #if($tag == $searchTag)
    ##Do whatever, for example
    <p> Render article content: </p>
    <p>uuid: $article.uuid</p>
    <p>Title: $article.title</p>
    <p> ------------------------------------</p>
    #end
  #end
 #end
#end


It has to be a better way


Hi
I have a problem with tags, dynamic web content and so on....
Can I send you a message and describe my problem ??
Patrizia D, modificado 11 Anos atrás.

RE: Tags in Velocity Template

New Member Postagens: 6 Data de Entrada: 21/04/10 Postagens Recentes
Hello, how can I get the url of each tag? Thanks
thumbnail
maryam maryam masoudy, modificado 11 Anos atrás.

RE: Tags in Velocity Template

Regular Member Postagens: 149 Data de Entrada: 30/10/11 Postagens Recentes
hi
can u explain more
do u want get query from ur asset tag ?
o r do u want get url of page?
do u want get some article or image by especial tag?
Patrizia D, modificado 11 Anos atrás.

RE: Tags in Velocity Template

New Member Postagens: 6 Data de Entrada: 21/04/10 Postagens Recentes
Hi, thanks for reply!
I want get url for every article's tag.

The code:

#set($tagdataUtil = $serviceLocator.findService("com.liferay.portlet.asset.service.AssetTagLocalService"))
#set($listTags = $tagdataUtil.getTags("com.liferay.portlet.journal.model.JournalArticle", $journalArticle.getResourcePrimKey()))
#foreach($tag in $listTags)
<li><a href="$urlTag">$tag.getName()</a></li>
#end

I want obtain $urlTag!!!

Thanks!