mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-24 14:25:00 +00:00
fix: Update file processing logic in testsr.py
This commit is contained in:
parent
8b1113dd2d
commit
892f0b9a9d
1 changed files with 11 additions and 16 deletions
27
testsr.py
27
testsr.py
|
@ -27,7 +27,7 @@ def process_markdown(filename):
|
||||||
with open(filename, "r") as file:
|
with open(filename, "r") as file:
|
||||||
content = file.read()
|
content = file.read()
|
||||||
except FileNotFoundError:
|
except FileNotFoundError:
|
||||||
print(json.dumps({"error": f"File '{filename}' not found."}, indent=4))
|
print(f"*** File '{filename}' not found.", "*" * 20)
|
||||||
return
|
return
|
||||||
|
|
||||||
# Split the content into sections based on '####' headers
|
# Split the content into sections based on '####' headers
|
||||||
|
@ -45,7 +45,7 @@ def process_markdown(filename):
|
||||||
# Get the content (everything after the header)
|
# Get the content (everything after the header)
|
||||||
content = "".join(section.splitlines(keepends=True)[1:])
|
content = "".join(section.splitlines(keepends=True)[1:])
|
||||||
|
|
||||||
for fence in all_fences:
|
for fence in all_fences[1:] + all_fences[:1]:
|
||||||
if "\n" + fence[0] in content:
|
if "\n" + fence[0] in content:
|
||||||
break
|
break
|
||||||
|
|
||||||
|
@ -62,21 +62,16 @@ def process_markdown(filename):
|
||||||
|
|
||||||
for block in blocks:
|
for block in blocks:
|
||||||
if block[0] is None: # This is a shell command block
|
if block[0] is None: # This is a shell command block
|
||||||
section_result["blocks"].append({"type": "shell", "content": block[1]})
|
print("*** SHELL", "*" * 20)
|
||||||
|
print(block[1], end="")
|
||||||
|
print("*** ENDSHELL", "*" * 20)
|
||||||
|
|
||||||
else: # This is a SEARCH/REPLACE block
|
else: # This is a SEARCH/REPLACE block
|
||||||
section_result["blocks"].append(
|
print("*** SEARCH:", block[0], "*" * 20)
|
||||||
{
|
print(block[1], end="")
|
||||||
"type": "search_replace",
|
print("*" * 20)
|
||||||
"filename": block[0],
|
print(block[2], end="")
|
||||||
"original": block[1],
|
print("*** REPLACE", "*" * 20)
|
||||||
"updated": block[2],
|
|
||||||
}
|
|
||||||
)
|
|
||||||
|
|
||||||
results.append(section_result)
|
|
||||||
|
|
||||||
# Output the results as JSON
|
|
||||||
print(json.dumps(results, indent=4))
|
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue