Subversion Repositories eFlore/Applications.cel

Rev

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

Rev 1293 Rev 1317
Line 157... Line 157...
157
		for (Iterator<String> listIt = li.keySet().iterator(); listIt.hasNext();) {
157
		for (Iterator<String> listIt = li.keySet().iterator(); listIt.hasNext();) {
158
			String postData = "";
158
			String postData = "";
Line 159... Line 159...
159
 
159
 
Line 160... Line -...
160
			ImageCarnet enCours = li.get(listIt.next());
-
 
161
 
160
			ImageCarnet enCours = li.get(listIt.next());
162
			// pour chaque image on extrait les informations
-
 
163
			for (Iterator<String> imgIt = enCours.keySet().iterator(); imgIt
-
 
164
					.hasNext();) {
-
 
165
				// qu'on place dans le poste
161
 
166
				String key = imgIt.next();
-
 
167
				String valeur = enCours.renvoyerValeurCorrecte(key);
162
			String[][] champsModifiables = enCours.obtenirChampsModifiablesImage();
168
				valeur.replaceAll("'", "\'");
-
 
169
				postData += "&" + key + "="
-
 
170
						+ enCours.renvoyerValeurCorrecte(key);
163
			for (int i = 0; i < champsModifiables.length; i++) {
Line 171... Line 164...
171
 
164
				postData += "&"+champsModifiables[i][0]+"="+champsModifiables[i][1];
172
			}
165
			}
173
 
166