掲示板

Tags in Velocity Template

15年前 に Joona Vaurio によって更新されました。

Tags in Velocity Template

New Member 投稿: 21 参加年月日: 08/07/22 最新の投稿
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
15年前 に Josh Asbury によって更新されました。

RE: Tags in Velocity Template

Expert 投稿: 498 参加年月日: 06/09/08 最新の投稿
I'm trying to accomplish the same thing. Were you ever able to figure it out?
13年前 に Thomas Kellerer によって更新されました。

RE: Tags in Velocity Template

Expert 投稿: 490 参加年月日: 08/06/09 最新の投稿
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
13年前 に Amos Fong によって更新されました。

RE: Tags in Velocity Template

Liferay Legend 投稿: 2047 参加年月日: 08/10/07 最新の投稿
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)
13年前 に Petteri Torssonen によって更新されました。

RE: Tags in Velocity Template

New Member 投稿: 20 参加年月日: 10/02/21 最新の投稿
how about in 6.0.5? Haven't founded the way...
13年前 に Alberto Fernadez によって更新されました。

RE: Tags in Velocity Template

Junior Member 投稿: 49 参加年月日: 09/05/06 最新の投稿
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
12年前 に Roy Brondgeest によって更新されました。

RE: Tags in Velocity Template

Junior Member 投稿: 25 参加年月日: 11/01/13 最新の投稿
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
11年前 に behnaz eslami によって更新されました。

RE: Tags in Velocity Template

Junior Member 投稿: 54 参加年月日: 11/11/14 最新の投稿
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 ??
11年前 に Patrizia D によって更新されました。

RE: Tags in Velocity Template

New Member 投稿: 6 参加年月日: 10/04/21 最新の投稿
Hello, how can I get the url of each tag? Thanks
thumbnail
11年前 に maryam maryam masoudy によって更新されました。

RE: Tags in Velocity Template

Regular Member 投稿: 149 参加年月日: 11/10/30 最新の投稿
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?
11年前 に Patrizia D によって更新されました。

RE: Tags in Velocity Template

New Member 投稿: 6 参加年月日: 10/04/21 最新の投稿
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!