Changes for page Per Status

From version 91.1
edited by Andrea Omicini
on 22/06/2023 13:09
Change comment: There is no comment for this version
To version 94.2
edited by Andrea Omicini
on 22/06/2023 15:14
Change comment: There is no comment for this version

Summary

Details

Page properties
Content
... ... @@ -29,6 +29,8 @@
29 29   #set( $showInline = false )
30 30  #end
31 31  ## HANDLE INLINE / END
32 +inline $showInline
33 +bibtext $showBibtex
32 32  ##
33 33  ## HANDLE STATUS / START
34 34  #template('apice_publications.vm')
... ... @@ -53,8 +53,8 @@
53 53   #set( $showRejected = true )
54 54  #elseif( $publicationStatuses.contains($statusPar) )
55 55  ## 'status' parameter is an admissible publication status value
56 - #set( $oneStatus = true )
57 - #set( $statusList = [$statusPar] )
58 + #set( $oneStatus = true )
59 + #set( $statusList = [$statusPar] )
58 58  #end
59 59  ##
60 60  ## HANDLE STATUS / END
... ... @@ -116,14 +116,15 @@
116 116  ## cycle over statuses
117 117  #foreach( $status in $statusList )
118 118   #if( $status != "published" && $status != "rejected" || $status == "published" && $showPublished || $status == "rejected" && $showRejected )
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" )
121 - #set( $itemFound = $xwiki.searchDocuments($query) )
121 + #set( $query = ", BaseObject as obj, #if( $oneUser ) LargeStringProperty as propAuthor, LargeStringProperty as propEditor, #end StringProperty as propStatus #if( !$hasEdit ), StringProperty as propAccess #end
122 + 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" )
123 + #set( $itemFound = $xwiki.searchDocuments($query) )
122 122  ## set counters
123 - #set( $itemStatusNo = $itemFound.size() )
124 - #if( $itemStatusNo > 0 )
125 - #set( $itemMap[$status] = $itemFound )
126 - #set( $itemNo = $itemNo + $itemStatusNo )
125 + #set( $itemStatusNo = $itemFound.size() )
126 + #if( $itemStatusNo > 0 )
127 + #set( $itemMap[$status] = $itemFound )
128 + #set( $itemNo = $itemNo + $itemStatusNo )
129 + #end
127 127   #end
128 128  #end
129 129  ##
... ... @@ -134,14 +134,26 @@
134 134  $itemNo
135 135  #if( $oneStatus )
136 136   #if( $itemNo == 1 )
140 + $services.localization.render('work').toLowerCase()
141 + <span class="textsecondary">&ensp;/&ensp;</span>
137 137   $services.localization.render("${objectSpace}.${objectClass}_status_${statusList[0]}").toLowerCase()
138 138   #else
139 -$services.localization.render("${objectSpace}.${objectClass}_status_${statusList[0]}_plural").toLowerCase() #end
144 + $services.localization.render('works').toLowerCase()
145 + <span class="textsecondary">&ensp;/&ensp;</span>
146 + $services.localization.render("${objectSpace}.${objectClass}_status_${statusList[0]}_plural").toLowerCase() #end
140 140  #else
141 141   #if( $itemNo == 1 )
142 - $services.localization.render('yetunpublished_singular').toLowerCase()
149 + #if( $showPublished )
150 + $services.localization.render('work').toLowerCase()
151 + #else
152 + $services.localization.render('yetunpublished_singular').toLowerCase()
153 + #end
143 143   #else
144 - $services.localization.render('yetunpublished').toLowerCase()
155 + #if( $showPublished )
156 + $services.localization.render('works').toLowerCase()
157 + #else
158 + $services.localization.render('yetunpublished').toLowerCase()
159 + #end
145 145   #end
146 146  #end
147 147  #if( $oneUser )
... ... @@ -191,12 +191,11 @@
191 191   #if( $showInline && !$showBibtex )
192 192   <ul>
193 193   #foreach( $item in $itemMap[$status] )
194 - <li>#publinked($item)</li>
195 -## <li>#pubperstatus($item)</li>
209 + <li>#pubperstatus($item)</li>
196 196   #end
197 197   </ul>
198 198   #else
199 - #foreach( $item in $itemMap[$sort] )
213 + #foreach( $item in $itemMap[$status] )
200 200   #if( $showBibtex)
201 201   #if( $showInline )
202 202   ((({{{ $xwiki.getDocument($item).getValue('bibtex') }}})))