Changes for page Supervisors

From version 34.1
edited by Andrea Omicini
on 01/09/2021 23:09
Change comment: There is no comment for this version
To version 42.1
edited by Andrea Omicini
on 01/09/2021 23:14
Change comment: There is no comment for this version

Summary

Details

Page properties
Content
... ... @@ -1,14 +1,11 @@
1 1  {{include reference = "MacroSheet" /}}{{velocity}}
2 -#if(!$request.tag) ## no tag specified in the query
3 -
2 +#if( !$request.tag )
3 +## no tag specified in the query
4 4  > **Tag Cloud** / {{stringEngIta eng="Theses" ita="Tesi" /}}
5 -
6 -#set ($from = ", BaseObject as obj0")
7 -#set ($where = "obj0.name=doc.fullName and obj0.className='Theses.ThesisClass' and obj0.name<>'Theses.ThesisClassTemplate' and obj0.name<>'Theses.ThesisTemplate'")
8 -#set ($tagCount = $xwiki.tag.getTagCountForQuery($from, $where))
9 -
10 -(% style='text-align: center' %)(((
11 -#foreach ($thesisTag in $tagCount.keySet())
5 +#set( $from = ", BaseObject as obj0")
6 +#set( $where = "obj0.name=doc.fullName and obj0.className='Theses.ThesisClass' and obj0.name<>'Theses.ThesisClassTemplate' and obj0.name<>'Theses.ThesisTemplate'" )
7 +#set($tagCount = $xwiki.tag.getTagCountForQuery($from, $where))
8 +(% style='text-align: center' %)(((#foreach ($thesisTag in $tagCount.keySet())
12 12   #set ( $thesisCount = $tagCount.get($thesisTag) )
13 13   #if ( $thesisCount > 20 ) #set ( $tagSize = "140%" )
14 14   #elseif ( $thesisCount > 10 ) #set ( $tagSize = "130%" )
... ... @@ -20,12 +20,9 @@
20 20   #end
21 21   #set($urlEscapedTag = $escapetool.url($thesisTag))
22 22   #set($htmlEscapedTag = $escapetool.xml($thesisTag))
23 - (% style='display:inline-block; padding:1em 1em; font-size:$tagSize' %)((([[$thesisTag>>Theses.Tags||queryString="tag=$urlEscapedTag"]])))
24 -#end
20 + (% style='font-size:$tagSize' %) [[$thesisTag>>Theses.Tags||queryString="tag=$urlEscapedTag"]] (%%)#end
25 25  )))
26 -
27 27  #else ## one tag specified in the query
28 -
29 29  #set ( $from = ", BaseObject as obj0, DBStringListProperty as prop0 join prop0.list item, BaseObject as obj1, DateProperty as prop1" )
30 30  #set ( $where = "obj0.className='XWiki.TagClass' and obj0.name=doc.fullName and obj0.id=prop0.id.id and prop0.id.name='tags' and lower(item)=lower('$request.tag') and obj1.name=doc.fullName and obj1.className='Theses.ThesisClass' and obj1.name<>'Theses.ThesisClassTemplate' and obj1.name<>'Theses.ThesisTemplate' and prop1.id.id=obj1.id and prop1.name = 'endDate' order by prop1.value desc" )
31 31  #set ( $sql = $from + " where " + $where )