Subversion Repositories eFlore/Applications.coel

Rev

Rev 1130 | Rev 1369 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1130 Rev 1329
Line 94... Line 94...
94
		enteteParams.set("auteurs", publication.getAuteur());
94
		enteteParams.set("auteurs", publication.getAuteur());
95
		enteteParams.set("annee", publication.getAnneeParution());
95
		enteteParams.set("annee", publication.getAnneeParution());
96
		enteteParams.set("id", publication.getId());
96
		enteteParams.set("id", publication.getId());
97
		enteteParams.set("guid", getGuid());
97
		enteteParams.set("guid", getGuid());
98
		enteteParams.set("projet", construireTxtProjet(publication.getIdProjet()));
98
		enteteParams.set("projet", construireTxtProjet(publication.getIdProjet()));
99
		GWT.log("entete généré", null);
-
 
-
 
99
 
100
		String eHtml = Format.substitute(enteteTpl, enteteParams);
100
		String eHtml = Format.substitute(enteteTpl, enteteParams);
101
		entete.getElement().setInnerHTML(eHtml);
101
		entete.getElement().setInnerHTML(eHtml);
102
	}
102
	}
Line 103... Line 103...
103
	
103
	
Line 140... Line 140...
140
			publication = (Publication) nouvellesDonnees;
140
			publication = (Publication) nouvellesDonnees;
141
			publicationChargementOk = true;
141
			publicationChargementOk = true;
142
		} else if (nouvellesDonnees instanceof ProjetListe) {
142
		} else if (nouvellesDonnees instanceof ProjetListe) {
143
			projets = (ProjetListe) nouvellesDonnees;
143
			projets = (ProjetListe) nouvellesDonnees;
144
			projetsChargementOk = true;
144
			projetsChargementOk = true;
145
			GWT.log("projets recu", null);
-
 
146
		} else {
145
		} else {
147
			GWT.log(Mediateur.i18nM.erreurRafraichir(nouvellesDonnees.getClass(), this.getClass()), null);
146
			GWT.log(Mediateur.i18nM.erreurRafraichir(nouvellesDonnees.getClass(), this.getClass()), null);
148
		}
147
		}
Line 149... Line 148...
149
		
148