-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c1b2422
commit 588e74a
Showing
10 changed files
with
40 additions
and
16 deletions.
There are no files selected for viewing
8 changes: 0 additions & 8 deletions
8
repository/OrbeonFormXmlReader.package/OrbeonFormBuilder.class/class/for.orbeonVersion..st
This file was deleted.
Oops, something went wrong.
6 changes: 6 additions & 0 deletions
6
repository/OrbeonFormXmlReader.package/OrbeonFormBuilder.class/class/newOn.for..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
instance creation | ||
newOn: anOrbeonSystemRoot for: xmlOrbeonFormDefinition | ||
|
||
^self new | ||
setRoot: anOrbeonSystemRoot | ||
xmlDefinition: xmlOrbeonFormDefinition |
5 changes: 5 additions & 0 deletions
5
repository/OrbeonFormXmlReader.package/OrbeonFormBuilder.class/class/newOn.for.with..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
instance creation | ||
newOn: anOrbeonSystemRoot for: xmlOrbeonFormDefinition with: xmlOrbeonInstance | ||
|
||
^self new | ||
setRoot: anOrbeonSystemRoot xmlDefinition: xmlOrbeonFormDefinition xmlInstanceDocument: xmlOrbeonInstance |
2 changes: 1 addition & 1 deletion
2
.../OrbeonFormBuilder.class/instance/getFormLibraryDefinition_from2019_1_0_format_For.in..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...age/OrbeonFormBuilder.class/instance/getFormLibraryDefinition_from4_0_0_format_For.in..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
data format version | ||
getFormLibraryDefinition_from4_0_0_format_For: anOrbeonPublishedFormDefinition in: appName | ||
|
||
^self getOrbeonApplicationClass formDefinitionNamed: 'library' in: appName | ||
^systemRoot formDefinitionNamed: 'library' in: appName |
7 changes: 7 additions & 0 deletions
7
...ry/OrbeonFormXmlReader.package/OrbeonFormBuilder.class/instance/setRoot.xmlDefinition..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
private | ||
setRoot: anOrbeonSystemRoot xmlDefinition: xmlOrbeonFormDefinition | ||
|
||
systemRoot := anOrbeonSystemRoot. | ||
xmlDefinition := xmlOrbeonFormDefinition. | ||
|
||
self parseXMLDefinition |
10 changes: 10 additions & 0 deletions
10
...er.package/OrbeonFormBuilder.class/instance/setRoot.xmlDefinition.xmlInstanceDocument..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
private | ||
setRoot: anOrbeonSystemRoot xmlDefinition: xmlOrbeonFormDefinition xmlInstanceDocument: xmlOrbeonInstance | ||
|
||
systemRoot := anOrbeonSystemRoot. | ||
|
||
xmlDefinition := xmlOrbeonFormDefinition. | ||
|
||
self parseXMLDefinition. | ||
|
||
self parseXMLInstance: xmlOrbeonInstance |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.