Aggregatore Risorse

Si è verificato un errore nell'elaborarazione del modello.
The following has evaluated to null or missing:
==> httpUtil.decodeURL  [in template "10154#10194#14805" at line 58, column 27]

----
Tip: It's the step after the last dot that caused this error, not those before it.
----
Tip: If the failing expression is known to legally refer to something that's sometimes null or missing, either specify a default value like myOptionalVar!myDefault, or use <#if myOptionalVar??>when-present<#else>when-missing</#if>. (These only cover the last step of the expression; to cover the whole expression, use parenthesis: (myOptionalVar.foo)!myDefault, (myOptionalVar.foo)??
----

----
FTL stack trace ("~" means nesting-related):
	- Failed at: ${httpUtil.decodeURL(fname)}  [in template "10154#10194#14805" at line 58, column 25]
----
1<#-- 
2    Web content templates are used to lay out the fields defined in a web 
3    content structure. 
4    Please use the left panel to quickly add commonly used variables. 
5    Autocomplete is also available and can be invoked by typing "${". 
6--> 
7  <div class="titolo-pers-pers"> 
8							 ${titolo.getData()} 
9	</div> 
10    <#if immagine?? && immagine.getData()?has_content> 
11     <img class=" scala" alt="" src="${immagine.getData()}" /> 
12</#if> 
13<div class="sfondo-pers-pers divContent"> 
14    <#if contenuto.getData()?has_content> 
15        <div class="consob-intro"> 
16            ${contenuto.getData()} 
17        </div> 
18    </#if> 
19    <#if dettaglio?? && dettaglio.getData()?has_content> 
20        <div class="consob-dett"> 
21            ${dettaglio.getData()} 
22        </div> 
23    </#if> 
24    <div class="clearer"> </div> 
25    <#if etichettaLink?? && etichettaLink.getSiblings()?has_content && etichettaLink.getData()? has_content> 
26        <strong>Link</strong> 
27        <div class="lineLinkAll"> 
28            <#list etichettaLink.getSiblings() as cur_etichettaLink> 
29                <#list cur_etichettaLink.getChildren() as itemData> 
30                    <#assign link="" /> 
31                    <#assign target="" /> 
32                    <#if ( itemData.getName()=="indirizzoLink" && itemData.getData()?has_content)> 
33                        <#assign link=itemData.getData() /> 
34                        <#if (link?starts_with("http"))> 
35                            <#assign target="target='_blank'" /> 
36                        </#if> 
37                        <#break> 
38                    </#if> 
39                </#list> 
40                <#if link!=""> 
41                    <a href="${link}" ${target}> 
42                        ${cur_etichettaLink.getData()} 
43                    </a> 
44                    <#if cur_etichettaLink_has_next> 
45                        <span> | </span> 
46                    </#if> 
47                </#if> 
48            </#list> 
49        </div> 
50    </#if> 
51    <#if allegato?? && allegato.getSiblings()?has_content && allegato.getData()? has_content> 
52        <strong>Allegati</strong> 
53        <div class="lineLinkAll"> 
54            <#list allegato.getSiblings() as cur_allegato> 
55                <#assign sappo=cur_allegato.getData()?substring(0, cur_allegato.getData()?last_index_of("/"))> 
56                    <#assign fname=sappo?substring(sappo?last_index_of("/")+1) /> 
57                    <a href="${cur_allegato.getData()}" target="_blank"> 
58                        ${httpUtil.decodeURL(fname)} 
59                        <span class="download"> </span> </a> 
60                    <#if cur_allegato_has_next> 
61                        <span> | </span> 
62                    </#if> 
63            </#list> 
64        </div> 
65    </#if> 
66    <#if dataNews?? && dataNews.getData()?has_content> 
67        <#assign dataNews_DateObj = dateUtil.parseDate("yyyy-MM-dd", getterUtil.getString(dataNews.getData()), locale)> 
68            <div class="consob-dett-data"> 
69                ${dateUtil.getDate(dataNews_DateObj, "dd MMMM yyyy ", locale)} 
70                <#if oraNews?? && oraNews.getData()?has_content> 
71                    ${oraNews.getData()} 
72                </#if> 
73            </div> 
74    </#if> 
75</div>