Browse Source

added possibility to exclude directories with --exclude-directory option

pull/3/head
RRA 5 years ago
parent
commit
d5335f3212
  1. 6
      distribusi/cli.py
  2. 10
      distribusi/distribusi.py

6
distribusi/cli.py

@ -59,6 +59,12 @@ def build_argparser():
help="Removes previously made index.html. Warning: this will remove ALL index.html files in the directories listed",
action="store_true")
parser.add_argument(
'-e',
'--exclude-directory',
help="Exclude one or multiple directories from indexing",
nargs="*")
return parser

10
distribusi/distribusi.py

@ -70,8 +70,17 @@ def div(args, type_, subtype, tag, name):
def distribusify(args, directory): # noqa
for root, dirs, files in os.walk(directory):
if args.exclude_directory:
if args.verbose:
print('Excluding directory:', ", ".join(args.exclude_directory))
dirs[:] = [d for d in dirs if d not in args.exclude_directory]
if not args.remove_index:
html = []
if args.verbose:
print('Generating directory listing for', root)
@ -147,6 +156,7 @@ def distribusify(args, directory): # noqa
if not args.no_template:
f.write(html_footer)
if args.remove_index:
index = os.path.join(root, 'index.html')
if 'index.html' in files:

Loading…
Cancel
Save