You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Docs/README.egosoft
+19-8Lines changed: 19 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -214,22 +214,33 @@ For example, if the original XML file is [b]vanilla.xml[/b] and the output direc
214
214
215
215
[size=125][u]How to apply a tools to a directories[/u][/size]
216
216
217
-
You can apply the tools to directories. In this case, the tools will apply the diff or patch to all XML files in the directory.
218
-
The logic will be a next:
217
+
[size=120][u]Applying XMLDiff to directories[/u][/size]
218
+
219
+
You can apply the XMLDiff tool to directories. In this case, the tool will traverse the directory structure and create diff files for XML files with identical names and relative paths. The process is as follows:
219
220
[list]
220
-
[*] all input parameters are directories - the tools will apply the diff or patch to all XML files in the directories.
221
-
[*] it will recursively gro thru the diff or changed XML files in the directories, respectively to the tool.
222
-
[*] for each diff or changed files will be checked a corresponding original XML file in the original directory with the same relative path.
223
-
[*] if the original XML file is not found - the diff or changed file will be skipped.
224
-
[*] if the original XML file is found - the diff or changed file will be patched with the original XML file and created a new patched XML file in the output directory with the same relative path.
221
+
[*] If all input parameters are directories, the tool will create diff files for all XML files in the directories.
222
+
[*] The tool will recursively go through the directory structure, using modified files as a "keys" for it
223
+
[*] For each changed file, the corresponding original XML file in the original directory with the same relative path will be checked.
224
+
[*] If the original XML file is not found, the operation will be skipped.
225
+
[*] If the original XML file is found, the diff file will be created in the output directory with the same relative path.
[size=120][u]Applying XMLPatch to directories[/u][/size]
234
+
235
+
You can apply the XMLPatch tool to directories. In this case, the tool will traverse the directory structure and apply the patch to XML files with identical names and relative paths. The process is as follows:
236
+
[list]
237
+
[*] If all input parameters are directories, the tool will apply the patch to all XML files in the directories.
238
+
[*] The tool will recursively go through the directory structure, using diff files as a "keys" for it
239
+
[*] For each diff file, the corresponding original XML file in the original directory with the same relative path will be checked.
240
+
[*] If the original XML file is not found, the operation will be skipped.
241
+
[*] If the original XML file is found, the diff file will be patched with the original XML file, and a new patched XML file will be created in the output directory with the same relative path.
Copy file name to clipboardExpand all lines: Docs/README.nexus
+19-8Lines changed: 19 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -214,22 +214,33 @@ For example, if the original XML file is [b]vanilla.xml[/b] and the output direc
214
214
215
215
[size=3][u][i]How to apply a tools to a directories[/i][/u][/size]
216
216
217
-
You can apply the tools to directories. In this case, the tools will apply the diff or patch to all XML files in the directory.
218
-
The logic will be a next:
217
+
[size=3][u]Applying XMLDiff to directories[/u][/size]
218
+
219
+
You can apply the XMLDiff tool to directories. In this case, the tool will traverse the directory structure and create diff files for XML files with identical names and relative paths. The process is as follows:
219
220
[list]
220
-
[*] all input parameters are directories - the tools will apply the diff or patch to all XML files in the directories.
221
-
[*] it will recursively gro thru the diff or changed XML files in the directories, respectively to the tool.
222
-
[*] for each diff or changed files will be checked a corresponding original XML file in the original directory with the same relative path.
223
-
[*] if the original XML file is not found - the diff or changed file will be skipped.
224
-
[*] if the original XML file is found - the diff or changed file will be patched with the original XML file and created a new patched XML file in the output directory with the same relative path.
221
+
[*] If all input parameters are directories, the tool will create diff files for all XML files in the directories.
222
+
[*] The tool will recursively go through the directory structure, using modified files as a "keys" for it
223
+
[*] For each changed file, the corresponding original XML file in the original directory with the same relative path will be checked.
224
+
[*] If the original XML file is not found, the operation will be skipped.
225
+
[*] If the original XML file is found, the diff file will be created in the output directory with the same relative path.
[size=3][u]Applying XMLPatch to directories[/u][/size]
234
+
235
+
You can apply the XMLPatch tool to directories. In this case, the tool will traverse the directory structure and apply the patch to XML files with identical names and relative paths. The process is as follows:
236
+
[list]
237
+
[*] If all input parameters are directories, the tool will apply the patch to all XML files in the directories.
238
+
[*] The tool will recursively go through the directory structure, using diff files as a "keys" for it
239
+
[*] For each diff file, the corresponding original XML file in the original directory with the same relative path will be checked.
240
+
[*] If the original XML file is not found, the operation will be skipped.
241
+
[*] If the original XML file is found, the diff file will be patched with the original XML file, and a new patched XML file will be created in the output directory with the same relative path.
Copy file name to clipboardExpand all lines: README.md
+19-8Lines changed: 19 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -212,22 +212,33 @@ For example, if the original XML file is `vanilla.xml` and the output directory
212
212
213
213
### How to apply a tools to a directories
214
214
215
-
You can apply the tools to directories. In this case, the tools will apply the diff or patch to all XML files in the directory.
216
-
The logic will be a next:
215
+
#### Applying XMLDiff to directories
217
216
218
-
- all input parameters are directories - the tools will apply the diff or patch to all XML files in the directories.
219
-
- it will recursively gro thru the diff or changed XML files in the directories, respectively to the tool.
220
-
- for each diff or changed files will be checked a corresponding original XML file in the original directory with the same relative path.
221
-
- if the original XML file is not found - the diff or changed file will be skipped.
222
-
- if the original XML file is found - the diff or changed file will be patched with the original XML file and created a new patched XML file in the output directory with the same relative path.
217
+
You can apply the XMLDiff tool to directories. In this case, the tool will traverse the directory structure and create diff files for XML files with identical names and relative paths. The process is as follows:
218
+
219
+
- If all input parameters are directories, the tool will create diff files for all XML files in the directories.
220
+
- The tool will recursively go through the directory structure, using modified files as a "keys" for it
221
+
- For each changed file, the corresponding original XML file in the original directory with the same relative path will be checked.
222
+
- If the original XML file is not found, the operation will be skipped.
223
+
- If the original XML file is found, the diff file will be created in the output directory with the same relative path.
You can apply the XMLPatch tool to directories. In this case, the tool will traverse the directory structure and apply the patch to XML files with identical names and relative paths. The process is as follows:
234
+
235
+
- If all input parameters are directories, the tool will apply the patch to all XML files in the directories.
236
+
- The tool will recursively go through the directory structure, using diff files as a "keys" for it
237
+
- For each diff file, the corresponding original XML file in the original directory with the same relative path will be checked.
238
+
- If the original XML file is not found, the operation will be skipped.
239
+
- If the original XML file is found, the diff file will be patched with the original XML file, and a new patched XML file will be created in the output directory with the same relative path.
0 commit comments