You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The current structure of the module makes it hard to maintain. Bugs are becoming harder to track and there's lots of recursion going on.
The module will be separated in different parts: PyTypes will handle serialization (this time more efficiently, using a custom JSONEncoder and JSONDecoder), PaperServer will run the server which will take care of the AJAX requests done by JavaScript, PaperUtils will contain utilities both for Python and JavaScript.
The JavaScript won't have to change, as it's already pretty well structured (which surprises me).
The text was updated successfully, but these errors were encountered:
The current structure of the module makes it hard to maintain. Bugs are becoming harder to track and there's lots of recursion going on.
The module will be separated in different parts:
PyTypes
will handle serialization (this time more efficiently, using a customJSONEncoder
andJSONDecoder
),PaperServer
will run the server which will take care of the AJAX requests done by JavaScript,PaperUtils
will contain utilities both for Python and JavaScript.The JavaScript won't have to change, as it's already pretty well structured (which surprises me).
The text was updated successfully, but these errors were encountered: