Commit af30c59b107e087b18dd2d2bb88456115ac75b13
Fix html validation errors
cel committed on 7/16/2017, 1:31:50 AMParent: ed8701f65d925aa33b1623cb287a7cb11b357fa0
Files changed
dat.dpi | changed |
package.json | changed |
dat.dpi | ||
---|---|---|
@@ -167,9 +167,9 @@ | ||
167 | 167 … | name: '..', |
168 | 168 … | type: 'updir' |
169 | 169 … | }) |
170 | 170 … | } |
171 | - self.socket.end(h('html', [ | |
171 … | + self.socket.end('<!doctype html>' + h('html', [ | |
172 | 172 … | h('head', [ |
173 | 173 … | h('title', pathname) |
174 | 174 … | ]), |
175 | 175 … | h('body', [ |
@@ -285,14 +285,14 @@ | ||
285 | 285 … | return process.exit(0) |
286 | 286 … | } |
287 | 287 … | |
288 | 288 … | this.writeHeader('text/html') |
289 | - self.socket.end(h('html', [ | |
289 … | + self.socket.end('<!doctype html>' + h('html', [ | |
290 | 290 … | h('head', [ |
291 | 291 … | h('title', 'Dat') |
292 | 292 … | ]), |
293 | 293 … | h('body', [ |
294 | - h('form', [ | |
294 … | + h('form', {action: ''}, [ | |
295 | 295 … | h('input', {type: 'submit', name: 'restart', value: 'Restart'}), |
296 | 296 … | h('input', {type: 'hidden', name: 'reload', value: self.url}) |
297 | 297 … | ]), |
298 | 298 … | h('h3', 'Archives'), |
@@ -314,9 +314,9 @@ | ||
314 | 314 … | 'None' |
315 | 315 … | ] : archive.swarm.connections.map(function (stream) { |
316 | 316 … | return h('div', h('code', stream.address)) |
317 | 317 … | }), |
318 | - h('form', [ | |
318 … | + h('form', {action: ''}, [ | |
319 | 319 … | h('input', {type: 'hidden', name: 'key', value: key}), |
320 | 320 … | h('input', {type: 'hidden', name: 'reload', value: self.url}), |
321 | 321 … | h('input', {type: 'submit', name: 'unswarm', value: 'unswarm'}), |
322 | 322 … | ]) |
Built with git-ssb-web