# # Collective Knowledge (index of CK programs) # # See CK LICENSE.txt for licensing details # See CK COPYRIGHT.txt for copyright details # # Developer: Grigori Fursin # cfg={} # Will be updated by CK (meta description of this module) work={} # Will be updated by CK (temporal data) ck=None # Will be updated by CK (initialized CK kernel) # Local settings ############################################################################## # Initialize module def init(i): """ Input: {} Output: { return - return code = 0, if successful > 0, if error (error) - error text if return > 0 } """ return {'return':0} ############################################################################## # add index def add_index(i): """ Input: { dict - index dict meta - original CK entry meta } Output: { return - return code = 0, if successful > 0, if error (error) - error text if return > 0 } """ import copy d=i['dict'] m=i['meta'] dd=d.get('dict',{}) # import json # print (json.dumps(i, indent=2)) # input('xyz') if 'misc' not in d: d['misc']={} misc=d['misc'] repo_url1_full=misc.get('repo_url1','') data_uoa=misc.get('data_uoa','') data_uid=misc.get('data_uid','') module_uoa=misc.get('module_uoa','') module_uid=misc.get('module_uid','') name=dd.get('soft_name','') misc['soft_name']=name cus=dd.get('customize',{}) ver=cus.get('version','') misc['version']=ver xhos=dd.get('only_for_host_os_tags',[]) xtos=dd.get('only_for_target_os_tags',[]) tmpl=dd.get('template','') template=dd.get('template_type','') if tmpl=='yes' and template=='': template='yes' misc['template']=template tags=dd.get('tags',[]) ytags=','.join(tags) misc['tags']=tags misc['stags']=ytags yhos='' ytos='' for q in xhos: if yhos!='': yhos+=',' yhos+=q for q in xtos: if ytos!='': ytos+=',' ytos+=q if yhos=='': yhos='any' else: yhos=yhos.replace('linux','linux,macos') if ytos=='': ytos='any' else: ytos=ytos.replace('linux','linux,macos') misc['host_os']=yhos misc['target_os']=ytos return {'return':0} ############################################################################## # generate html def html(i): """ Input: { (skip_cid_predix) - if 'yes', skip "?cid=" prefix when creating URLs } Output: { return - return code = 0, if successful > 0, if error (error) - error text if return > 0 } """ d=i.get('dict',{}) scp=i.get('skip_cid_prefix','') bscp=(scp=="yes") llm=d.get('meta',{}) llmisc=llm.get('misc',{}) lldict=llm.get('dict',{}) template=llmisc.get('template','') repo_url1=llmisc.get('repo_url1','') repo_url2=llmisc.get('repo_url2','') repo_url3=llmisc.get('repo_url3','') desc=lldict.get('desc','') duoa=llmisc.get('data_uoa','') duid=llmisc.get('data_uid','') ruoa=llmisc.get('repo_uoa','') ruid=llmisc.get('repo_uid','') muoa=llmisc.get('module_uoa','') host_os=llmisc.get('host_os','') target_os=llmisc.get('target_os','') stags=llmisc.get('stags','').replace(',',', ') h='' if desc!='': h+=' - '+desc+'\n' run_cmds=lldict.get('run_cmds',{}) h+='