Archives du magazine

null magazine avril 2009

Une erreur s'est produite lors du traitement du gabarit.
The following has evaluated to null or missing:
==> pdfcomplet  [in template "10108#1166444#MOD_PUBLICATIONS_SIMPLE" at line 43, column 47]

----
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: ${pdfcomplet.getData()}  [in template "10108#1166444#MOD_PUBLICATIONS_SIMPLE" at line 43, column 45]
----
1<style type="text/css"> 
2div#BlocGeneral { 
3    display: block; 
4    overflow: hidden; 
5
6 
7div#BlocPhoto{ 
8    float: left; 
9    overflow: hidden; 
10    display: block; 
11
12 
13div#BlocTexte{ 
14    padding-left: 20px; 
15    overflow: hidden; 
16    display: block; 
17
18 
19.clearboth{      
20    clear: both; 
21
22 
23.img_mp3{ 
24clear: both; 
25border:0px; 
26
27@media (max-width: 979px) { 
28div#BlocPhoto{ 
29    float: none !important; 
30	text-align: center; 
31	width: 100% !important; 
32
33
34 
35</style> 
36 
37<div id="BlocGeneral_mp3droite"> 
38    <div id="BlocPhoto"> 
39		<img src="${couverture.getData()}" alt=""/> 
40		<#if pdfintegral.getData() != "" > 
41         	<p><br /><a href = "${pdfintegral.getData()}">Télécharger au format pdf</a></p> 
42        <#else> 
43			<p><br /><a href = "${pdfcomplet.getData()}">Télécharger au format pdf</a></p> 
44        </#if> 
45 
46        <#if feuilleter_mag.getData() != "" > 
47			<p><a href="http://${feuilleter_mag.getData()}" target="_blank">Feuilleter en ligne</a></p> 
48        </#if> 
49	</div> 
50	 
51	<div id="BlocTexte"> 
52	    <div id="BlocTitre"> 
53			<#if numero.getData() != "" > 
54                | ${numero.getData()} | 
55			</#if> 
56	    </div> 
57		<#if dossierdumois.getData() != "" > 
58            <h2>${dossierdumois.getData()}</h2> 
59		</#if> 
60 
61	    <h3>Au sommaire</h3> 
62		<#list entreesommaire.getSiblings() as sommaire> 
63			<ul> 
64			<#if sommaire.getData() != "" > 
65				<li> 
66					${sommaire.getData()} 
67                    <#if sommaire.mp3.getData()!= "" > 
68				        <a href="${sommaire.mp3.getData()}" title="Ecouter ${sommaire.getData()} (Nouvel onglet)" target="_blank" style="border:none;"> 
69							<img class="img_mp3" style="border:none;float: none;" src="/image/image_gallery?uuid=8a8a4a0c-b34c-4bb1-9c6d-e7d4e9fc85e3&groupId=10437&t=1285232174280" alt="Logo Mp3"/> 
70						</a> 
71					<#else> 
72						<a href="${sommaire.audio.getData()}" title="Ecouter ${sommaire.getData()} (Nouvel onglet)" target="_blank" style="border:none;"> 
73							<img class="img_mp3" style="border:none;float: none;" src="/image/image_gallery?uuid=8a8a4a0c-b34c-4bb1-9c6d-e7d4e9fc85e3&groupId=10437&t=1285232174280" alt="Logo Mp3"/> 
74						</a> 
75					</#if> 
76				</li> 
77			</#if> 
78			</ul> 
79		</#list> 
80	</div> 
81</div>