Subversion Repositories eFlore/Applications.coel

Rev

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

Rev 1023 Rev 1108
Line 83... Line 83...
83
			"<div class='{css_corps}'>"+
83
			"<div class='{css_corps}'>"+
84
			"	<h2>{appli_nom}</h2>"+
84
			"	<h2>{appli_nom}</h2>"+
85
			"	<p>"+
85
			"	<p>"+
86
			"		<span class='{css_label}'>{i18n_code}{label_separateur}</span> {code}<br />"+
86
			"		<span class='{css_label}'>{i18n_code}{label_separateur}</span> {code}<br />"+
87
			"		<span class='{css_label}'>{i18n_version}{label_separateur}</span> {version}<br />"+
87
			"		<span class='{css_label}'>{i18n_version}{label_separateur}</span> {version}<br />"+
-
 
88
			"		<span class='{css_label}'>{i18n_version_nom}{label_separateur}</span> {version_nom}<br />"+
88
			"		<span class='{css_label}'>{i18n_revision}{label_separateur}</span> {revision}<br />"+
89
			"		<span class='{css_label}'>{i18n_revision}{label_separateur}</span> {revision}<br />"+
89
			"		<span class='{css_label}'>{i18n_licence}{label_separateur}</span> {licence}"+
90
			"		<span class='{css_label}'>{i18n_licence}{label_separateur}</span> {licence}"+
90
			"	</p>"+
91
			"	</p>"+
91
			"	<hr />"+
92
			"	<hr />"+
92
			"	<h2>{i18n_titre_compilation}</h2>"+
93
			"	<h2>{i18n_titre_compilation}</h2>"+
Line 127... Line 128...
127
	private void initialiserParamApropos() {
128
	private void initialiserParamApropos() {
128
		aproposParams = new Params();
129
		aproposParams = new Params();
Line 129... Line 130...
129
		
130
		
130
		aproposParams.set("i18n_code", i18nC.aproposCode());
131
		aproposParams.set("i18n_code", i18nC.aproposCode());
-
 
132
		aproposParams.set("i18n_version", i18nC.aproposVersion());
131
		aproposParams.set("i18n_version", i18nC.aproposVersion());
133
		aproposParams.set("i18n_version_nom", i18nC.aproposVersionNom());
132
		aproposParams.set("i18n_revision", i18nC.aproposRevision());
134
		aproposParams.set("i18n_revision", i18nC.aproposRevision());
133
		aproposParams.set("i18n_licence", i18nC.aproposLicence());
135
		aproposParams.set("i18n_licence", i18nC.aproposLicence());
134
		aproposParams.set("i18n_titre_compilation", i18nC.aproposTitreCompilation());
136
		aproposParams.set("i18n_titre_compilation", i18nC.aproposTitreCompilation());
135
		aproposParams.set("i18n_compilation_date", i18nC.aproposCompilationDate());
137
		aproposParams.set("i18n_compilation_date", i18nC.aproposCompilationDate());
Line 141... Line 143...
141
		aproposParams.set("i18n_navigateur", i18nC.aproposNavigateur());
143
		aproposParams.set("i18n_navigateur", i18nC.aproposNavigateur());
Line 142... Line 144...
142
		
144
		
143
		aproposParams.set("appli_nom", (String) Registry.get(RegistreId.APPLI_NOM));
145
		aproposParams.set("appli_nom", (String) Registry.get(RegistreId.APPLI_NOM));
144
		aproposParams.set("code", (String) Registry.get(RegistreId.APPLI_CODE));
146
		aproposParams.set("code", (String) Registry.get(RegistreId.APPLI_CODE));
-
 
147
		aproposParams.set("version", (String) Registry.get(RegistreId.APPLI_VERSION));
145
		aproposParams.set("version", (String) Registry.get(RegistreId.APPLI_VERSION));
148
		aproposParams.set("version_nom", (String) Registry.get(RegistreId.APPLI_VERSION_NOM));
146
		aproposParams.set("revision", (String) Registry.get(RegistreId.APPLI_REVISION));
149
		aproposParams.set("revision", (String) Registry.get(RegistreId.APPLI_REVISION));
147
		aproposParams.set("licence", (String) Registry.get(RegistreId.APPLI_LICENCE));
150
		aproposParams.set("licence", (String) Registry.get(RegistreId.APPLI_LICENCE));
148
		aproposParams.set("compilation_date", (String) Registry.get(RegistreId.APPLI_COMPILATION_DATE_HEURE));
151
		aproposParams.set("compilation_date", (String) Registry.get(RegistreId.APPLI_COMPILATION_DATE_HEURE));
149
		aproposParams.set("version_java", (String) Registry.get(RegistreId.APPLI_COMPILATION_JAVA_VERSION));
152
		aproposParams.set("version_java", (String) Registry.get(RegistreId.APPLI_COMPILATION_JAVA_VERSION));