Skip to content

Latest commit

 

History

History
40 lines (29 loc) · 1.46 KB

TODO.rst

File metadata and controls

40 lines (29 loc) · 1.46 KB

TODO

  • Re-implement faux-multiple inheritance.

Porting Django Modules / Changesets

These are not exhaustive lists. They're for quick reference when I have a bit of time free to port more of the changes which have been made since the original port was done in June 2008 (of which there are many!)

Change histories for the most relevant Django modules can be found here:

Changesets

http://code.djangoproject.com/changeset/7967 (partial)

Media classes - changes to forms.js and widgets.js, but won't be ported until js-forms can be run on the backend.

Python-to-JavaScript: Missing Pieces

IDNA Encoder
Needed for validating Unicode URLs. The free implementation (from a StackOverflow answer) which was previously being used didn't work.
Decimal Implementation
Is there a good imlementation out there, or is validating strings, using floats for min/max validation and returning strings good enough for the frontend?