Mercurial > lada > lada-client
comparison app/view/window/ImportResponse.js @ 1223:4c443efd5587
Added html tags for more valid html in download file.
author | Raimund Renkert <raimund.renkert@intevation.de> |
---|---|
date | Thu, 27 Oct 2016 16:33:05 +0200 |
parents | 4e62bc6e7250 |
children | 531db469779f |
comparison
equal
deleted
inserted
replaced
1222:4e62bc6e7250 | 1223:4c443efd5587 |
---|---|
141 out.push('Der Import der Datei ' + this.fileName + | 141 out.push('Der Import der Datei ' + this.fileName + |
142 ' war nicht erfolgreich. Der Importvorgang konnte ' + | 142 ' war nicht erfolgreich. Der Importvorgang konnte ' + |
143 'aufgrund eines Fehlers im Server nicht beendet werden.'); | 143 'aufgrund eines Fehlers im Server nicht beendet werden.'); |
144 } | 144 } |
145 else { | 145 else { |
146 out.push('<!DOCTYPE html>' + | |
147 '<head><meta charset="utf-8"></head><body>'); | |
146 if (numErrors > 0) { | 148 if (numErrors > 0) { |
147 out.push('Folgende Proben konnten nicht erfolgreich ' + | 149 out.push('Folgende Proben konnten nicht erfolgreich ' + |
148 'importiert werden:'); | 150 'importiert werden:'); |
149 out.push('<br/>'); | 151 out.push('<br/>'); |
150 out.push('<ol>'); | 152 out.push('<ol>'); |
206 out.push('</li>'); | 208 out.push('</li>'); |
207 } | 209 } |
208 out.push('</ol>'); | 210 out.push('</ol>'); |
209 } | 211 } |
210 out.push('<br/>'); | 212 out.push('<br/>'); |
213 out.push('</body></html>') | |
211 if (numWarnings > 0 || numErrors > 0) { | 214 if (numWarnings > 0 || numErrors > 0) { |
212 this.down('button[name=download]').enable(); | 215 this.down('button[name=download]').enable(); |
213 } | 216 } |
214 } | 217 } |
215 return out.join(''); | 218 return out.join(''); |