working on publish template command #4
This commit is contained in:
parent
12f483c263
commit
5ddd69cfd3
|
@ -54,7 +54,8 @@ def tyto(target):
|
||||||
' - Create article\'s file in articles/ directory\n'
|
' - Create article\'s file in articles/ directory\n'
|
||||||
' - Use these actions on article\'s file: Check > wip > publish\n'
|
' - Use these actions on article\'s file: Check > wip > publish\n'
|
||||||
' ! Config\'s files are in _configs/ directory\n'
|
' ! Config\'s files are in _configs/ directory\n'
|
||||||
' and used to create HTML file in your template\n\n'
|
' and used to create HTML file in your template\n'
|
||||||
|
' Your template files (css, logo...) go to wip/template/ server\n\n'
|
||||||
'# Usage: tyto [action] [target] \n'
|
'# Usage: tyto [action] [target] \n'
|
||||||
' - [action] according to [target]:\n'
|
' - [action] according to [target]:\n'
|
||||||
' edit : Edit article\'s file\n'
|
' edit : Edit article\'s file\n'
|
||||||
|
|
|
@ -142,11 +142,29 @@ def create_template(option):
|
||||||
if not res in ['y', 'Y']:
|
if not res in ['y', 'Y']:
|
||||||
logs.out("255", '', True)
|
logs.out("255", '', True)
|
||||||
|
|
||||||
|
# Create new file from _configs/ files
|
||||||
html.create_sidebar('www')
|
html.create_sidebar('www')
|
||||||
html.create_navbar('www')
|
html.create_navbar('www')
|
||||||
html.create_user_metas('www')
|
html.create_user_metas('www')
|
||||||
html.create_user_footer('www')
|
html.create_user_footer('www')
|
||||||
|
|
||||||
|
# Copy all file in wip server template, except "nofiles"
|
||||||
|
nofiles = (
|
||||||
|
'footer.html',
|
||||||
|
'metas.html',
|
||||||
|
'navbar.html',
|
||||||
|
'sidebar.html'
|
||||||
|
)
|
||||||
|
|
||||||
|
for item in os.listdir(db.srv_wip_tpl):
|
||||||
|
if item.startswith(nofiles):
|
||||||
|
continue
|
||||||
|
|
||||||
|
item_src = '%s%s'%(db.srv_wip_tpl, item)
|
||||||
|
item_dst = '%s%s'%(db.srv_www_tpl, item)
|
||||||
|
if shutil.copy2(item_src, item_dst):
|
||||||
|
print(' ├ Create file:', item_dst)
|
||||||
|
|
||||||
#================================#
|
#================================#
|
||||||
# Publish template in www server #
|
# Publish template in www server #
|
||||||
#--------------------------------#
|
#--------------------------------#
|
||||||
|
|
Loading…
Reference in New Issue