bug fix ....

pull/17/head
Steve Nyemba 2 months ago
parent 338d9fe757
commit ef430ee3dc

@ -49,6 +49,28 @@ def make_folder (projectFolder, webroot):
_projectPath = os.sep.join([_path,folder])
if not os.path.exists(_projectPath) :
os.makedirs(_projectPath)
def _icode(_path,_root):
"""
This function will generate some default plugins to show the users how plugins work and can be used/written
:path location of the project
"""
_code = """
import cms
#
# register this in config.plugins: {"demo":["info"]}
@cms.plugins(mimetype='application/json') :
def info (**_args):
_request= _args['request']
_config = _args['config']
return {"version":_config['system']['version'],'title':_config['layout']['header']['title']}
pass
"""
loc = os.sep.join([_path,_root,'_plugins','demo.py'])
f = open(loc,'w')
f.write(_code)
f.close()
def _ilogo (_path):
"""
This function creates a default logo in a designated folder, after the project folder has been created
@ -143,13 +165,14 @@ def make (**_args) :
_config['plugins'] = {}
_folder = _args['folder']
_root = _config['layout']['root'] #-- web root folder
make_folder(_folder,_root)
f = open(os.sep.join([_folder,'qcms-manifest.json']),'w')
make_folder(_folder,_root) #-- creating the project folder structure
f = open(os.sep.join([_folder,'qcms-manifest.json']),'w') #-- adding the manifest file
f.write( json.dumps(_config))
f.close()
_ilogo(os.sep.join([_folder,_root]))
_ilogo(os.sep.join([_folder,_root])) #-- adding logo
print ([_folder,_root])
_index(os.sep.join([_folder,_root]),_root)
_itheme(_folder,_root)
_itheme(_folder,_root) #-- adding theme folder
_icode(_folder,_root) #-- adding the plugins sample code

Loading…
Cancel
Save