bug fixes with search
This commit is contained in:
parent
2a7127485d
commit
93e6a03880
13
index.py
13
index.py
|
@ -146,8 +146,19 @@ def cms_page():
|
||||||
|
|
||||||
_html = e.render(**_args)
|
_html = e.render(**_args)
|
||||||
return _html,200
|
return _html,200
|
||||||
|
@_app.route('/page')
|
||||||
|
def _cms_page ():
|
||||||
|
global _config
|
||||||
|
_uri = request.args['uri']
|
||||||
|
_uri = os.sep.join([_config['layout']['root'],_uri])
|
||||||
|
_title = request.args['title'] if 'title' in request.args else ''
|
||||||
|
_args = {'system':_config['system']}
|
||||||
|
if 'plugins' in _config:
|
||||||
|
_args['routes'] = _config['plugins']
|
||||||
|
|
||||||
|
_html = cms.components.html(_uri,_title,_args)
|
||||||
|
e = Environment(loader=BaseLoader()).from_string(_html)
|
||||||
|
return e.render(**_args),200
|
||||||
#
|
#
|
||||||
# Let us bootup the application
|
# Let us bootup the application
|
||||||
SYS_ARGS = {}
|
SYS_ARGS = {}
|
||||||
|
|
|
@ -57,7 +57,7 @@ menu.apply_link =function(_args){
|
||||||
// redirect open new window
|
// redirect open new window
|
||||||
// dialog open in a dialog
|
// dialog open in a dialog
|
||||||
//
|
//
|
||||||
console.log(_args)
|
|
||||||
var url = _args['url']
|
var url = _args['url']
|
||||||
_args.type = (_args.type == null)? 'redirect' :_args.type
|
_args.type = (_args.type == null)? 'redirect' :_args.type
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,36 @@
|
||||||
var search = {}
|
var search = {}
|
||||||
search.find = function(id,_domid){
|
search.find = function(id,_domid,_attr){
|
||||||
|
var nodes = jx.dom.get.children(id)
|
||||||
|
jx.dom.set.focus(_domid)
|
||||||
|
var term = jx.dom.get.value(_domid).trim()
|
||||||
|
term = term == ''?'*':term
|
||||||
|
if (term.length < 2){
|
||||||
|
$(nodes).show()
|
||||||
|
jx.dom.set.value('found',nodes.length)
|
||||||
|
return ;}
|
||||||
|
$(nodes).hide()
|
||||||
|
term = RegExp(term.replace(/ /,'|'),'ig')
|
||||||
|
_count = 0
|
||||||
|
jx.utils.patterns.visitor (nodes,function(_node){
|
||||||
|
|
||||||
|
var _data = _node.getAttribute('data') ;
|
||||||
|
if (_data[0] == '{' || _data[0] == '['){
|
||||||
|
_data = JSON.parse(_data)
|
||||||
|
_found = 0
|
||||||
|
_attr.forEach(function(_name){
|
||||||
|
_found += _data[_name].match(term) !=null?1:0
|
||||||
|
})
|
||||||
|
}else{
|
||||||
|
_found = _data.match(term)!=null?1:0
|
||||||
|
}
|
||||||
|
_count += _found
|
||||||
|
if (_found > 0){
|
||||||
|
$(_node).show()
|
||||||
|
}
|
||||||
|
})
|
||||||
|
jx.dom.set.value('found',_count)
|
||||||
|
}
|
||||||
|
search._find = function(id,_domid){
|
||||||
var nodes = jx.dom.get.children(id)
|
var nodes = jx.dom.get.children(id)
|
||||||
$(nodes).hide()
|
$(nodes).hide()
|
||||||
jx.dom.set.focus(_domid)
|
jx.dom.set.focus(_domid)
|
||||||
|
@ -51,3 +82,4 @@ search.find = function(id,_domid){
|
||||||
|
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue