This is an experimental copy for testing Poikilos' issue mirroring system. Note that Gitea's migration tool can import issues, but the "Issues" checkbox is disabled when "This repository will be a mirror" is enabled (it is for this repo).
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

51 lines
1.6 KiB

#!/usr/bin/env python
"""
Make a copy of any files in the given paths, replacing
spaces with " \", newline, then indent. This is useful for creating
intermediate files for the purpose of running meld or diff on files
with long lines (such as cmake commands pasted into files for
comparison purposes and link.txt files).
"""
import sys
import os
def continuify(inPath, outPath, continueStr=" \\", indent=" ",
sep=" "):
with open(outPath, 'w') as outs:
with open(inPath) as ins:
rawLine = True
while rawLine:
rawLine = ins.readline()
line = rawLine.rstrip()
parts = line.split(sep)
starter = ""
ender = continueStr
for i in range(len(parts)):
part = parts[i]
if i == len(parts) - 1:
ender = ""
outs.write(indent + part.strip(sep) + ender + "\n")
if i >= 0:
starter = indent
def main():
if len(sys.argv) < 2:
print("You must specify file(s).")
return 1
for i in range(1, len(sys.argv)):
arg = sys.argv[i]
if not os.path.isfile(arg):
print("ERROR: {} is not a file.".format(arg))
return 2
# parts = os.path.splitext(arg)
# outPath = parts[0] + ".tmp" + parts[1]
outPath = arg + ".continuified.tmp"
continuify(arg, outPath)
print("* wrote \"{}\"".format(outPath))
return 0
if __name__ == "__main__":
sys.exit(main())