VQmod writing for opencar (part 2)
vQmod using *. fundamental xml as follows:
<modification>
<id>Mô tả vQmod</id>
<version>Phiên bản của file *.xml</version>
<vqmver>Phiên bản vQmod sử dụng</vqmver>
<author>Tác giả</author>
<file name="đường dẫn file cần sửa bằng vQmod">
<operation>
<search position="replace"><!]></search>
<add><!]></add>
</operation>
</file>
</modification>
Example 1
1. Create a new file named "replace-demo.xml"
2. Save the file with the following code:
<modification>
<id>Replace ABC with 123</id>
<version>1.0</version>
<vqmver>1.0.8</vqmver>
<author>xxx</author>
<file name="path/to/myfile.php">
<operation>
<search position="replace"><!]></search>
<add><!]></add>
</operation>
</file>
</modification>
This code means finding the code...