Changes for page Per Status

From version 96.1
edited by Andrea Omicini
on 22/06/2023 16:40
Change comment: There is no comment for this version
To version 99.1
edited by Andrea Omicini
on 03/07/2023 00:26
Change comment: There is no comment for this version

Summary

Details

Page properties
Content
... ... @@ -1,18 +1,9 @@
1 1  {{velocity}}
2 -{{html wiki="true" clean="false"}}
3 -## GET PARAMETERS / START
4 -## inline display
5 -#set( $inlinePar = $request.inline.trim().toLowerCase() )
2 +{{html clean="false" wiki="true"}}
3 +#template('apice_boolean.vm')
4 +## BIBTEX / START
6 6  ## show BibTeX
7 7  #set( $bibtexPar = $request.bibtex.trim().toLowerCase() )
8 -## who
9 -#set( $userNamePar = $request.user.trim() )
10 -#set( $firstNamePar = $request.name.trim() )
11 -#set( $lastNamePar = $request.surname.trim() )
12 -## GET PARAMETERS / END
13 -##
14 -#template('apice_boolean.vm')
15 -## HANDLE BIBTEX / START
16 16  ## default: false
17 17  #set( $showBibtex = false )
18 18  ## check $bibtexPar
... ... @@ -19,9 +19,11 @@
19 19  #if( $bibtexPar != "" && $trueStringList.contains($bibtexPar.toLowerCase()) )
20 20   #set( $showBibtex = true )
21 21  #end
22 -## HANDLE BIBTEX / END
13 +## BIBTEX / END
23 23  ##
24 -## HANDLE INLINE / START
15 +## INLINE / START
16 +## inline display
17 +#set( $inlinePar = $request.inline.trim().toLowerCase() )
25 25  ## default: true
26 26  #set( $showInline = true )
27 27  ## check $inlinePar
... ... @@ -28,10 +28,11 @@
28 28  #if( $inlinePar != "" && $falseStringList.contains($inlinePar) )
29 29   #set( $showInline = false )
30 30  #end
31 -## HANDLE INLINE / END
32 -##
33 -## HANDLE STATUS / START
24 +## INLINE / END
34 34  #template('apice_publications.vm')
26 +#template('apice_user_param.vm')
27 +##
28 +## STATUS / START
35 35  ## $oneStatus false gets a list of statuses, true just one
36 36  #set( $oneStatus = false )
37 37  #set( $showRejected = false )
... ... @@ -57,60 +57,9 @@
57 57   #set( $statusList = [$statusPar] )
58 58  #end
59 59  ##
60 -## HANDLE STATUS / END
61 -## HANDLE WHO / START
62 -#template('apice_macros.vm')
63 -#isuserspace()
64 -#if( $isUserSpace )
65 - #userspace()
66 -## from a personal page
67 - #set( $apiceUser = true )
68 - #set( $oneUser = true )
69 -#elseif( $userNamePar )
70 -## from the URL, "user=$userNamePar" parameter
71 - #if( $userNamePar.contains('XWiki.') )
72 - #set( $userName = "$userNamePar" )
73 - #else
74 - #set( $userName = "XWiki.$userNamePar" )
75 - #end
76 - #if( !$xwiki.exists( $userName ) )
77 - #if( $services.localization.currentLocale == 'it' )
78 -{{warning}}L'utente “$userNamePar” non esiste{{/warning}}
79 - #else
80 -{{warning}}User “$userNamePar” does not exist{{/warning}}
81 - #end
82 - #stop
83 - #end
84 - #set( $apiceUser = true )
85 - #set( $oneUser = true)
86 - #set( $userdoc = $xwiki.getDocument($userName) )
87 - #set( $userFirstName = $userdoc.display("first_name") )
88 - #set( $userLastName = $userdoc.display("last_name") )
89 -#elseif( $firstNamePar && $lastNamePar )
90 -## from the URL, "name=Firstname&surname=Lastname" parameter
91 - #set( $apiceUser = false )
92 - #set( $oneUser = true )
93 - #set( $userFirstName = $firstNamePar )
94 - #set( $userLastName = $lastNamePar )
95 -#else
96 - #set( $apiceUser = false )
97 - #set( $oneUser = false )
98 - #set( $userFirstName = "" )
99 - #set( $userLastName = "" )
100 -#end
101 -#if( $oneUser )
102 - #if( $apiceUser )
103 - #set( $userString = "%$userName%" )
104 - #else
105 - #set( $userString = "%$userFirstName $userLastName%" )
106 - #end
107 -#else
108 - #set( $userString = "%%" )
109 -#end
110 -## HANDLE WHO / END
54 +## STATUS / END
111 111  ##
112 -### query to structures
113 -## map & counter initialisation
56 +## DATA STRUCTURES / START
114 114  #set( $itemMap = {} )
115 115  #set( $itemNo = 0 )
116 116  ## cycle over statuses
... ... @@ -117,7 +117,7 @@
117 117  #foreach( $status in $statusList )
118 118   #if( $status != "published" && $status != "rejected" || $status == "published" && $showPublished || $status == "rejected" && $showRejected )
119 119   #set( $query = ", BaseObject as obj, #if( $oneUser ) LargeStringProperty as propAuthor, LargeStringProperty as propEditor, #end StringProperty as propStatus #if( !$hasEdit ), StringProperty as propAccess #end
120 - where obj.name = doc.fullName and obj.className = '${objectSpace}.${objectClass}' and obj.name <> '${objectPool}.${objectTemplate}' #if( $oneUser ) and propAuthor.id.id = obj.id and propEditor.id.id = obj.id and propAuthor.name = 'author' and propEditor.name = 'editor' and ( propAuthor.value like '$userString' or ( propAuthor.value = '' and propEditor.value like '$userString' ) ) #end and propStatus.id.id = obj.id and propStatus.name = 'status' and propStatus.value = '$status' #if( !$hasEdit ) and propAccess.id.id = obj.id and propAccess.name = 'access' and propAccess.value <> 'hidden' #end" )
63 + where obj.name = doc.fullName and obj.className = '${objectSpace}.Class' and obj.name <> '${objectPool}.Template' #if( $oneUser ) and propAuthor.id.id = obj.id and propEditor.id.id = obj.id and propAuthor.name = 'author' and propEditor.name = 'editor' and ( propAuthor.value like '$userString' or ( propAuthor.value = '' and propEditor.value like '$userString' ) ) #end and propStatus.id.id = obj.id and propStatus.name = 'status' and propStatus.value = '$status' #if( !$hasEdit ) and propAccess.id.id = obj.id and propAccess.name = 'access' and propAccess.value <> 'hidden' #end" )
121 121   #set( $itemFound = $xwiki.searchDocuments($query) )
122 122  ## set counters
123 123   #set( $itemStatusNo = $itemFound.size() )
... ... @@ -127,8 +127,9 @@
127 127   #end
128 128   #end
129 129  #end
73 +## DATA STRUCTURES / END
130 130  ##
131 -## output results
75 +## DISPLAY / START
132 132  ## page subtitle
133 133  <div style="display: flex">
134 134   <div class="mainheader">
... ... @@ -137,11 +137,11 @@
137 137   #if( $itemNo == 1 )
138 138   $services.localization.render('work').toLowerCase()
139 139   <span class="textsecondary">&ensp;/&ensp;</span>
140 - $services.localization.render("${objectSpace}.${objectClass}_status_${statusList[0]}").toLowerCase()
84 + $services.localization.render("${objectSpace}.Class_status_${statusList[0]}").toLowerCase()
141 141   #else
142 142   $services.localization.render('works').toLowerCase()
143 143   <span class="textsecondary">&ensp;/&ensp;</span>
144 - $services.localization.render("${objectSpace}.${objectClass}_status_${statusList[0]}_plural").toLowerCase() #end
88 + $services.localization.render("${objectSpace}.Class_status_${statusList[0]}_plural").toLowerCase() #end
145 145  #else
146 146   #if( $itemNo == 1 )
147 147   #if( $showPublished )
... ... @@ -166,7 +166,9 @@
166 166   </div>
167 167   <div>
168 168   <a class="basebutton" style="padding: .5em" href='$doc.getURL("view","bibtex=$showBibtex&inline=#if( $showInline )false#{else}true#end#if( $oneStatus )&status=${statusList[0]}#end#if( $apiceUser )&user=$userName#elseif( $oneUser )&name=$userFirstName&surname=$userLastName#end")'>#if( $showBibtex )#if( $showInline )formatted#{else}plain#end#else#if( $showInline )long#{else}short#end#end</a>
113 +#if( $showPublished )
169 169   <a class="basebutton" style="padding: .5em" href='$doc.getURL("view","inline=$showInline&bibtex=#if( $showBibtex )false#{else}true#end#if( $oneStatus )&status=${statusList[0]}#end#if( $apiceUser )&user=$userName#elseif( $oneUser )&name=$userFirstName&surname=$userLastName#end")'>#if( $showBibtex )text#{else}bib#end</a>
115 +#end
170 170   </div>
171 171  </div>
172 172  ## stop if no pubs are found
... ... @@ -183,7 +183,7 @@
183 183   #if( !$foreach.first )
184 184   &ensp;&bull;&ensp;
185 185   #end
186 - [[$services.localization.render("${objectSpace}.${objectClass}_status_${status}_short_plural").toLowerCase()>>||anchor="$status"]]
132 + [[$services.localization.render("${objectSpace}.Class_status_${status}_short_plural").toLowerCase()>>||anchor="$status"]]
187 187   #end
188 188  </div>
189 189  #end
... ... @@ -194,7 +194,7 @@
194 194  ## status top / start
195 195  <div class="mainselectseparator">
196 196   <a class="mainselectseparatorlink" id="$status" href=$xwiki.getURL($doc,"view","status=$status#if( $apiceUser )&user=$userName#elseif( $oneUser )&name=$userFirstName&surname=$userLastName#end")>
197 - $services.localization.render("${objectSpace}.${objectClass}_status_${status}_plural").toLowerCase()
143 + $services.localization.render("${objectSpace}.Class_status_${status}_plural").toLowerCase()
198 198   </a>
199 199  </div>
200 200  ## status top / end
... ... @@ -230,9 +230,10 @@
230 230  ## status bottom / start
231 231  <div #if( $foreach.last )id="bottom"#end class="mainselectbottom">
232 232   #set( $itemStatusNo = $itemMap[$status].size() )
233 -$itemStatusNo #if( $itemStatusNo == 1 )$services.localization.render("${objectSpace}.${objectClass}_status_${status}").toLowerCase()#{else}$services.localization.render("${objectSpace}.${objectClass}_status_${status}_plural").toLowerCase()#end &bull; [[{{stringEngIta eng='top' ita='in cima'/}}>>||anchor="top"]] &bull; [[{{stringEngIta eng='index' ita='indice'/}}>>||anchor="index"]] &bull; [[{{stringEngIta eng='bottom' ita='in fondo'/}}>>||anchor="bottom"]]
179 +$itemStatusNo #if( $itemStatusNo == 1 )$services.localization.render("${objectSpace}.Class_status_${status}").toLowerCase()#{else}$services.localization.render("${objectSpace}.Class_status_${status}_plural").toLowerCase()#end &bull; #anchorlinks()
234 234  </div>
235 235  ## status bottom / end
236 236  #end
183 +## DISPLAY / END
237 237  {{/html}}
238 238  {{/velocity}}{{pageDisplay sort="objectservice"/}}