Changes for page Per Status

From version 89.1
edited by Andrea Omicini
on 22/06/2023 13:00
Change comment: There is no comment for this version
To version 86.1
edited by Andrea Omicini
on 03/01/2023 00:19
Change comment: There is no comment for this version

Summary

Details

Page properties
Title
... ... @@ -1,1 +1,0 @@
1 -$services.localization.render('perstatus')
Content
... ... @@ -1,65 +1,29 @@
1 -{{velocity}}
2 -{{html wiki="true" clean="false"}}
3 -## GET PARAMETERS / START
4 -## inline display
5 -#set( $inlinePar = $request.inline.trim().toLowerCase() )
6 -## show BibTeX
7 -#set( $bibtexPar = $request.bibtex.trim().toLowerCase() )
1 += {{italiano}}Per stato{{/italiano}}{{english}}Per Status{{/english}} =
2 +
3 +{{include reference="Publications.Environment" excludeFirstHeading="true"/}}{{velocity}}
4 +## a Publications page
5 +#set( $publicationMenu = true )
6 +#### get parameters
8 8  ## who
9 9  #set( $userNamePar = $request.user.trim() )
10 10  #set( $firstNamePar = $request.name.trim() )
11 11  #set( $lastNamePar = $request.surname.trim() )
12 -## GET PARAMETERS / END
13 -##
14 -#template('apice_boolean.vm')
15 -## HANDLE BIBTEX / START
16 -## default: false
17 -#set( $showBibtex = false )
18 -## check $bibtexPar
19 -#if( $bibtexPar != "" && $trueStringList.contains($bibtexPar.toLowerCase()) )
20 - #set( $showBibtex = true )
21 -#end
22 -## HANDLE BIBTEX / END
23 -##
24 -## HANDLE INLINE / START
25 -## default: true
26 -#set( $showInline = true )
27 -## check $inlinePar
28 -#if( $inlinePar != "" && $falseStringList.contains($inlinePar) )
29 - #set( $showInline = false )
30 -#end
31 -## HANDLE INLINE / END
32 -##
33 -## HANDLE STATUS / START
34 -## $oneStatus false gets a list of statuses, true just one
35 -#set( $oneStatus = false )
36 -#set( $showRejected = false )
37 -## $statusList gets the list of statuses to be shown
38 -#set( $statusList = $publicationStatuses )
39 -##
11 +## which status
40 40  #set( $statusPar = $request.status.trim() )
41 -#if( $statusPar.toLowerCase() == "all" )
42 -## 'all' value gets all unpublished papers including "Rejected" ones
43 - #set( $showRejected = true )
44 -#else
45 - #if( $publicationStatuses.contains($statusPar) )
46 - ## 'status' parameter is an admissible publication status value
47 - #set( $oneStatus = true )
48 - #set( $statusList = [$statusPar] )
49 - #end
50 -#end
51 51  ##
52 -## HANDLE STATUS / END
53 -## HANDLE WHO / START
54 -#template('apice_macros.vm')
55 -#isuserspace()
56 -#if( $isUserSpace )
57 - #userspace()
58 -## from a personal page
14 +#### handle who
15 +#if( $userName )
16 +## from a personal page, "XWiki.$userName" $userName form
17 + #if( !$xwiki.exists( $userName ) )
18 +{{warning}}User $userName does not exist{{/warning}}
19 + #stop
20 + #end
59 59   #set( $apiceUser = true )
60 60   #set( $oneUser = true )
61 -#elseif( $userNamePar )
62 -## from the URL, "user=$userNamePar" parameter
23 + #set( $userdoc = $xwiki.getDocument($userName) )
24 + #set( $userFirstName = $userdoc.display("first_name") )
25 + #set( $userLastName = $userdoc.display("last_name") )
26 +#elseif( $userNamePar ) ## from the URL, "user=$userNamePar" parameter
63 63   #if( $userNamePar.contains('XWiki.') )
64 64   #set( $userName = "$userNamePar" )
65 65   #else
... ... @@ -99,120 +99,62 @@
99 99  #else
100 100   #set( $userString = "%%" )
101 101  #end
102 -## HANDLE WHO / END
103 103  ##
104 -### query to structures
105 -## map & counter initialisation
106 -#set( $itemMap = {} )
107 -#set( $itemNo = 0 )
108 -## cycle over statuses
109 -#foreach( $status in $statusList )
110 - #set( $query = ", BaseObject as obj, #if( $oneUser ) LargeStringProperty as propAuthor, LargeStringProperty as propEditor, #end StringProperty as propStatus #if( !$hasEdit ), StringProperty as propAccess #end
111 - 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" )
112 - #set( $itemFound = $xwiki.searchDocuments($query) )
113 -## set counters
114 - #set( $itemStatusNo = $itemFound.size() )
115 - #if( $itemStatusNo > 0 )
116 - #set( $itemMap[$status] = $itemFound )
117 - #set( $itemNo = $itemNo + $itemStatusNo )
67 +#### handle status
68 +## $oneStatus false gets a list of statuses, true just one
69 +#set( $oneStatus = false )
70 +## $statusList gets the list of statuses to be shown
71 +#set( $statusList = [] )
72 +## default: all unpublished papers except Rejected ones
73 +#set( $discard = $statusList.addAll($unpublishedStatuses) )
74 +#if( $statusPar.toLowerCase() == "all" )
75 +## 'all' value gets all unpublished papers including "Rejected" ones
76 + #set( $discard = $statusList.add("rejected") )
77 +#else
78 + #if( $allStatusesPlus.contains($statusPar) )
79 + ## 'status' parameter is an admissible publication status value
80 + #set( $oneStatus = true )
81 + #set( $statusList = [$statusPar] )
118 118   #end
119 119  #end
120 -$itemStatusNo
121 121  ##
122 -## output results
123 -## page subtitle
124 -<div style="display: flex">
125 - <div class="mainheader">
126 -$itemNo
127 -#if( $oneStatus )
128 - #if( $itemNo == 1 )
129 - $services.localization.render("${objectSpace}.${objectClass}_status_${statusList[0]}").toLowerCase()
130 - #else
131 -$services.localization.render("${objectSpace}.${objectClass}_status_${statusList[0]}_plural").toLowerCase() #end
132 -#else
133 - #if( $itemNo == 1 )
134 - $services.localization.render('yetunpublished_singular').toLowerCase()
135 - #else
136 - $services.localization.render('yetunpublished').toLowerCase()
85 +## query to structures
86 +#set( $pubMap = {} )
87 +#set( $pubNo = 0 )
88 +#foreach( $status in $statusList )
89 + #set( $from = ", BaseObject as obj, LargeStringProperty as prop0, LargeStringProperty as prop1, StringProperty as prop2" )
90 + #set( $where = "obj.name = doc.fullName and obj.className = '${objectSpace}.${objectClass}' and obj.name <> '${objectSpace}.${objectTemplate}' and prop0.id.id = obj.id and prop1.id.id = obj.id and prop2.id.id = obj.id and prop0.name = 'author' and prop1.name = 'editor' and ( prop0.value like '$userString' or ( prop0.value = '' and prop1.value like '$userString' ) ) and prop2.name = 'status' and prop2.value = '$status'" )
91 + #set( $sql = $from + " where " + $where )
92 + #set( $pubFound = $xwiki.searchDocuments($sql) )
93 + #set( $pubStatusNo = $pubFound.size() )
94 + #if( $pubStatusNo > 0 )
95 + #set( $pubMap[$status] = $pubFound )
96 + #set( $pubNo = $pubNo + $pubStatusNo )
137 137   #end
138 138  #end
139 -#if( $oneUser )
140 - <span class="textsecondary">&ensp;/&ensp;</span>
141 - $userFirstName $userLastName
142 -#end
143 - </div>
144 - <div style="flex-grow: 1">
145 - </div>
146 - <div">
147 - <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>
148 - <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>
149 - </div>
150 -</div>
99 +## output results
100 +## page subtitle
101 +{{id name="top"/}}
102 +>(%%)$pubNo #if( $pubNo == 1 ){{stringEngIta eng="$objectEngSingular.toLowerCase()" ita="$objectItaSingular.toLowerCase()"/}}#{else}{{stringEngIta eng="$objectEngPlural.toLowerCase()" ita="$objectItaPlural.toLowerCase()"/}}#{end} / #if( $oneStatus ){{pubStatus uppercase='false' plural='true'}}$statusPar{{/pubStatus}}#{else}{{pubStatus uppercase='false' plural='true'}}unpublished{{/pubStatus}}#{end}#if( $oneUser ) / $userFirstName $userLastName#{end}(%%)
151 151  ## stop if no pubs are found
152 -#if( $itemNo == 0 || $itemMap.keySet().size() == 0 )
104 +#if( $pubNo == 0 || $pubMap.keySet().size() == 0 )
153 153  ## redundant double check
154 154   #stop
155 155  #end
156 156  ## some pubs found
157 157  ## page index
158 -#if( $itemMap.keySet().size() > 1 )
110 +#if( $pubMap.keySet().size() > 1 )
159 159  ## found more than one status
160 -<div class="mainselectbar" id="index">
161 - #foreach( $status in $itemMap.keySet() )
162 - #if( !$foreach.first )
163 - &ensp;&bull;&ensp;
164 - #end
165 - [[$services.localization.render("${objectSpace}.${objectClass}_status_${status}_short_plural").toLowerCase()>>||anchor="$status"]]
166 - #end
167 -</div>
112 +{{id name="index"/}}
113 +(% style="font-size:smaller; text-align:right; padding:1em 1.5em 0.25em 1.5em; background-color:$theme.highlightColor" %)(((#foreach( $status in $pubMap.keySet() )#if( !$foreach.first ) | #end[[{{pubStatus uppercase='false' plural='true'}}$status{{/pubStatus}}>>||anchor="$status"]]#end)))
168 168  #end
169 -##
170 -#template('apice_publication_macros.vm')
171 -##
172 -#foreach( $status in $itemMap.keySet() )
173 -## status top / start
174 -<div class="mainselectseparator">
175 - <a class="mainselectseparatorlink" id="$status" href=$xwiki.getURL($doc,"view","status=$status#if( $apiceUser )&user=$userName#elseif( $oneUser )&name=$userFirstName&surname=$userLastName#end")>
176 - $services.localization.render("${objectSpace}.${objectClass}_status_${status}_plural").toLowerCase()
177 - </a>
178 -</div>
179 -## status top / end
180 -##
181 -## status display / start
182 -<div>
183 - #if( $showInline && !$showBibtex )
184 - <ul>
185 - #foreach( $item in $itemMap[$status] )
186 - <li>#publinked($item)</li>
187 -## <li>#pubperstatus($item)</li>
188 - #end
189 - </ul>
190 - #else
191 - #foreach( $item in $itemMap[$sort] )
192 - #if( $showBibtex)
193 - #if( $showInline )
194 - ((({{{ $xwiki.getDocument($item).getValue('bibtex') }}})))
195 - #else
196 - ((({{code language="bibtex"}}$xwiki.getDocument($item).getValue('bibtex'){{/code}})))
197 - #end
198 - #else
199 - <div style="border-style:hidden hidden hidden hidden; font-size:smaller; line-height: 1.25em; margin-bottom: .5em">
200 - #pubauthed($item)<br/>
201 - #pubtitle($item)<br/>
202 - <span class="textsecondary">(#pubstatus($item))</span> {{pubVenue linked="false"}}$item{{/pubVenue}}
203 - </div>
204 - #end
205 - #end
115 +## pubs displayed per year
116 +#foreach( $status in $pubMap.keySet() )
117 +(% style="border-style:solid hidden hidden solid; border-color:$theme.borderColor; text-align:left; font-style:oblique" %)|{{id name='$status'/}}[[{{pubStatus uppercase='false' plural='true'}}$status{{/pubStatus}}>>$doc.name||queryString='status=$status#if( $oneUser )#if( $apiceUser )&user=$userName#{else}&name=$userFirstName&surname=$userLastName#end#end']]
118 + #foreach( $pub in $pubMap[$status] )
119 +(% style="border-style:hidden hidden hidden hidden" %)|{{pub inline='false' linked='title'}}$pub{{/pub}}
206 206   #end
207 -</div>
208 -## status display / end
209 -##
210 -## status bottom / start
211 -<div #if( $foreach.last )id="bottom"#end class="mainselectbottom">
212 - #set( $itemStatusNo = $itemMap[$status].size() )
213 -$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"]]
214 -</div>
215 -## status bottom / end
121 + #set( $pubStatusNo = $pubMap[$status].size() )
122 +(% style="border-style:hidden solid solid hidden; border-color:$theme.borderColor; text-align:right; font-style:oblique; font-size:smaller" %)|($pubStatusNo #if( $pubStatusNo == 1 ){{stringEngIta eng='publication' ita='pubblicazione'/}} {{pubStatus uppercase='false' plural='false'}}$status{{/pubStatus}}#{else}{{stringEngIta eng='publications' ita='pubblicazioni'/}} {{pubStatus uppercase='false' plural='true'}}$status{{/pubStatus}}#end) [[[{{stringEngIta eng='top' ita='in cima'/}}]>>||anchor="top"]] [[[{{stringEngIta eng='bottom' ita='in fondo'/}}]>>||anchor="bottom"]]
216 216  #end
217 -{{/html}}
218 -{{/velocity}}{{pageDisplay sort="objectservice"/}}
124 +{{/velocity}}