Martin Zimmermann

Results 27 issues of Martin Zimmermann

Hi, it would be awesome to have nested objects in includes (e.g. namespaces). The current implementation doesn't recognize them: ``` js Mark.includes = { a: "works", b: { does: "not"...

Implement a nice Web Interface

Feature
Web

it is too easy to remove everything.

… and do a migration for passwords salted+hashed as MD5.

Feature

Current way: SHA1 of some random but unique key + password. [PBKDF2](https://en.wikipedia.org/wiki/PBKDF2) is better suited for this. ``` python salt = r'\x14Q\xd4JbDk\x1bN\x84J\xd0\x05\x8a\x1b\x8b\xa6&V\x1b\xc5\x91\x97\xc4' return join(dir, (user + '.' + sha1(salt+passwd).hexdigest()[:16])) ```