86 lines
3.5 KiB
Python
Executable File
86 lines
3.5 KiB
Python
Executable File
#!/usr/bin/env python
|
|
|
|
#
|
|
# NopSCADlib Copyright Chris Palmer 2018
|
|
# nop.head@gmail.com
|
|
# hydraraptor.blogspot.com
|
|
#
|
|
# This file is part of NopSCADlib.
|
|
#
|
|
# NopSCADlib is free software: you can redistribute it and/or modify it under the terms of the
|
|
# GNU General Public License as published by the Free Software Foundation, either version 3 of
|
|
# the License, or (at your option) any later version.
|
|
#
|
|
# NopSCADlib is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
|
|
# without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
# See the GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License along with NopSCADlib.
|
|
# If not, see <https://www.gnu.org/licenses/>.
|
|
#
|
|
|
|
#
|
|
#! Finds projects and adds them to the gallery.
|
|
#
|
|
from __future__ import print_function
|
|
import os
|
|
from colorama import Fore, init
|
|
from tests import do_cmd
|
|
import re
|
|
from shutil import copyfile
|
|
from tests import update_image
|
|
import sys
|
|
import argparse
|
|
|
|
project_dirs = ['../..', 'examples']
|
|
target_dir = 'gallery'
|
|
output_name = target_dir + '/readme.md'
|
|
|
|
def gallery(force):
|
|
if not os.path.isdir(target_dir):
|
|
os.makedirs(target_dir)
|
|
|
|
paths = sorted([pdir + '/' + i for pdir in project_dirs for i in os.listdir(pdir) if os.path.isdir(pdir + '/' + i + '/assemblies')], key = lambda s: os.path.basename(s))
|
|
with open(output_name, 'wt') as output_file:
|
|
print("# A gallery of projects made with NopSCADlib", file = output_file)
|
|
for path in paths:
|
|
project = os.path.basename(path)
|
|
print(project)
|
|
document = path + '/readme.md'
|
|
if force:
|
|
os.system('cd %s && make_all' % path)
|
|
if os.path.isfile(document):
|
|
with open(document, 'rt') as readme:
|
|
for line in readme.readlines():
|
|
match = re.search(r"!(\[.*\]\(.*\))", line)
|
|
if match:
|
|
image = match.group(0)
|
|
if image.startswith('![Main Assembly](assemblies/'):
|
|
file = image[17 : -1]
|
|
line = line.replace(image, '![](%s.png)' % project)
|
|
tmp_name = 'tmp.png'
|
|
target_name = '%s/%s.png' %(target_dir, project)
|
|
copyfile(path + '/' + file, tmp_name)
|
|
update_image(tmp_name, target_name)
|
|
else:
|
|
line = line.replace(image, '')
|
|
else:
|
|
match = re.match(r"^(#+).*$", line)
|
|
if match:
|
|
line = '#' + line
|
|
if line == '---\n':
|
|
break;
|
|
print(line[:-1], file = output_file)
|
|
else:
|
|
print(Fore.MAGENTA + "Can't find", document, Fore.WHITE);
|
|
with open(target_dir + "/readme.html", "wt") as html_file:
|
|
do_cmd(("python -m markdown -x tables " + output_name).split(), html_file)
|
|
|
|
if __name__ == '__main__':
|
|
init()
|
|
parser = argparse.ArgumentParser(description='Creates a galley of projects by copying the top level image and description to gallery/readme.md.')
|
|
parser.add_argument("-f", help = "run make_all in each project to force update", action="store_true")
|
|
args = parser.parse_args()
|
|
|
|
gallery(force = args.f)
|