v2.0
Steve Nyemba 7 months ago
parent 7037b9dffd
commit 04e4cc8de5

@ -4,7 +4,7 @@ Reads from nextcloud
import nextcloud_client as nc import nextcloud_client as nc
import copy import copy
from mistune import markdown from mistune import markdown #version 0.8.4
import time import time
import json import json

@ -185,10 +185,10 @@ def reload():
_systemKey = None _systemKey = None
elif 'key' in _system['source'] and _system['source']['key']: elif 'key' in _system['source'] and _system['source']['key']:
_systemKey = _system['source']['key'] _systemKey = _system['source']['key']
print ([_key,_systemKey,_systemKey == _key]) print ([_key,_systemKey,_systemKey == _key])
if _key and _systemKey and _systemKey == _key : if _key and _systemKey and _systemKey == _key :
_handler.reload() _handler.reload()
return "",200 return "",200
pass pass
return "",403 return "",403
@_app.route('/page',methods=['POST']) @_app.route('/page',methods=['POST'])

@ -18,10 +18,10 @@ bootup.CMSObserver = function(_sysId,_domId,_fileURI){
var uri = '/page' var uri = '/page'
} }
try{ try{
var _domElement = jx.dom.get.instance('div') // var _domElement = jx.dom.get.instance('div')
_domElement.className = 'busy-loading' // _domElement.className = 'busy-loading'
jx.dom.append(_domId, _domElement) // jx.dom.append(_domId, _domElement)
http.post(uri,function(x){ http.post(uri,function(x){
// console.log(jx.dom.exists(_domId)) // console.log(jx.dom.exists(_domId))
// var _domElement = jx.dom.get.instance('div') // var _domElement = jx.dom.get.instance('div')
@ -34,8 +34,21 @@ bootup.CMSObserver = function(_sysId,_domId,_fileURI){
setTimeout(function(){ setTimeout(function(){
_domElement.innerHTML = x.responseText // _domElement.innerHTML = x.responseText
_domElement.className = null // _domElement.className = null
// $(_domElement).html(x.responseText)
$('#'+_domId).append(x.responseText)
// $(_domElement).attr('class',_domId)
//
// If there is a script associated it must be extracted and executed
// menu.runScript(_domId)
// console.log([_domId, ' **** ',$(_domId + ' script')])
},1500) },1500)

Loading…
Cancel
Save