mirror of https://github.com/dirtbags/moth.git
HTML5 input patterns, plus jas djb2hash fix
This commit is contained in:
parent
caa957a08d
commit
60277f6a7e
|
@ -75,6 +75,7 @@ class Puzzle:
|
||||||
self.authors = []
|
self.authors = []
|
||||||
self.answers = []
|
self.answers = []
|
||||||
self.scripts = []
|
self.scripts = []
|
||||||
|
self.pattern = None
|
||||||
self.hint = None
|
self.hint = None
|
||||||
self.files = {}
|
self.files = {}
|
||||||
self.body = io.StringIO()
|
self.body = io.StringIO()
|
||||||
|
@ -104,6 +105,8 @@ class Puzzle:
|
||||||
self.summary = val
|
self.summary = val
|
||||||
elif key == 'answer':
|
elif key == 'answer':
|
||||||
self.answers.append(val)
|
self.answers.append(val)
|
||||||
|
elif key == 'pattern':
|
||||||
|
self.pattern = val
|
||||||
elif key == 'hint':
|
elif key == 'hint':
|
||||||
self.hint = val
|
self.hint = val
|
||||||
elif key == 'name':
|
elif key == 'name':
|
||||||
|
@ -271,6 +274,7 @@ class Puzzle:
|
||||||
'hashes': self.hashes(),
|
'hashes': self.hashes(),
|
||||||
'files': files,
|
'files': files,
|
||||||
'scripts': self.scripts,
|
'scripts': self.scripts,
|
||||||
|
'pattern': self.pattern,
|
||||||
'body': self.html_body(),
|
'body': self.html_body(),
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -11,7 +11,7 @@ This page has an associated `helpers.js` script
|
||||||
you can include to assist with input formatting,
|
you can include to assist with input formatting,
|
||||||
so people aren't confused about how to enter an answer.
|
so people aren't confused about how to enter an answer.
|
||||||
|
|
||||||
You could also write your own JavaScript to validate things
|
You could also write your own JavaScript to validate things.
|
||||||
|
|
||||||
This is just a demonstration page.
|
This is just a demonstration page.
|
||||||
You will probably only want one of these in a page,
|
You will probably only want one of these in a page,
|
||||||
|
|
|
@ -50,6 +50,9 @@ iframe#body {
|
||||||
img {
|
img {
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
}
|
}
|
||||||
|
input:invalid {
|
||||||
|
border-color: red;
|
||||||
|
}
|
||||||
#messages {
|
#messages {
|
||||||
min-height: 3em;
|
min-height: 3em;
|
||||||
border: solid black 2px;
|
border: solid black 2px;
|
||||||
|
|
|
@ -44,11 +44,15 @@ function devel_addin(obj, e) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// The routine used to hash answers in compiled puzzle packages
|
// The routine used to hash answers in compiled puzzle packages
|
||||||
function djb2hash(buf) {
|
function djb2hash(buf) {
|
||||||
let h = 5381
|
let h = 5381
|
||||||
for (let c of (new TextEncoder).encode(buf)) { // JavaScript is weird.
|
for (let c of (new TextEncoder).encode(buf)) { // Encode as UTF-8 and read in each byte
|
||||||
h = ((h * 33) + c) & 0xffffffff
|
// JavaScript converts everything to a signed 32-bit integer when you do bitwise operations.
|
||||||
|
// So we have to do "unsigned right shift" by zero to get it back to unsigned.
|
||||||
|
h = (((h * 33) + c) & 0xffffffff) >>> 0
|
||||||
}
|
}
|
||||||
return h
|
return h
|
||||||
}
|
}
|
||||||
|
@ -132,6 +136,11 @@ function loadPuzzle(categoryName, points, puzzleId) {
|
||||||
for (let se of doc.querySelectorAll("[src],[href]")) {
|
for (let se of doc.querySelectorAll("[src],[href]")) {
|
||||||
se.outerHTML = se.outerHTML.replace(/(src|href)="([^/]+)"/i, "$1=\"" + base + "$2\"")
|
se.outerHTML = se.outerHTML.replace(/(src|href)="([^/]+)"/i, "$1=\"" + base + "$2\"")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// If a validation pattern was provided, set that
|
||||||
|
if (obj.pattern) {
|
||||||
|
document.querySelector("#answer").pattern = obj.pattern
|
||||||
|
}
|
||||||
|
|
||||||
// Replace puzzle children with what's in `doc`
|
// Replace puzzle children with what's in `doc`
|
||||||
Array.from(puzzle.childNodes).map(e => e.remove())
|
Array.from(puzzle.childNodes).map(e => e.remove())
|
||||||
|
|
Loading…
Reference in New Issue