- Fixed references to Factory / Executor
- Added more row-value-expression sections
This commit is contained in:
parent
82a0d99b92
commit
25c57493dd
@ -83,10 +83,10 @@ public class Transform {
|
||||
System.out.println("-------------------------------");
|
||||
singlePage();
|
||||
|
||||
System.out.println();
|
||||
System.out.println("Transforming PDF manual");
|
||||
System.out.println("-------------------------------");
|
||||
pdf();
|
||||
// System.out.println();
|
||||
// System.out.println("Transforming PDF manual");
|
||||
// System.out.println("-------------------------------");
|
||||
// pdf();
|
||||
}
|
||||
|
||||
private static String file(String name) {
|
||||
@ -114,7 +114,7 @@ public class Transform {
|
||||
}
|
||||
|
||||
private static void replaceVariables(Match manual) {
|
||||
manual.find("content").each(new Each() {
|
||||
manual.find("content").add(manual.find("title")).each(new Each() {
|
||||
@Override
|
||||
public void each(Context context) {
|
||||
String content = $(context.element()).content();
|
||||
@ -133,6 +133,21 @@ public class Transform {
|
||||
changed = true;
|
||||
}
|
||||
|
||||
if (content.contains("{codegen-xsd-version}")) {
|
||||
content = content.replace("{codegen-xsd-version}", "3.0.0");
|
||||
changed = true;
|
||||
}
|
||||
|
||||
if (content.contains("{export-xsd-version}")) {
|
||||
content = content.replace("{export-xsd-version}", "2.6.0");
|
||||
changed = true;
|
||||
}
|
||||
|
||||
if (content.contains("{runtime-xsd-version}")) {
|
||||
content = content.replace("{runtime-xsd-version}", "3.0.0");
|
||||
changed = true;
|
||||
}
|
||||
|
||||
if (changed) {
|
||||
$(context.element()).content(content);
|
||||
}
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user