You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lexonomy_custom_editor/src/main.py

32 lines
589 B

from browser import window
5 years ago
from model import Model
from view import View
from update import update
from export import export_to_xml
from message.simple_messages import Reset
5 years ago
model = Model()
def plugin_init(div, _entry, editable):
view = View(div)
5 years ago
update.set_model(model)
update.set_view(view)
def plugin_render(_div, entry):
model.import_xml(entry.content)
update.update_model(Reset())
5 years ago
def plugin_save(_div):
return export_to_xml(model)
# export!
window.plugin_init = plugin_init
window.plugin_render = plugin_render
window.plugin_save = plugin_save
5 years ago