-
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
cfcc3fa
commit 5cd3c91
Showing
28 changed files
with
87 additions
and
28 deletions.
There are no files selected for viewing
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
4 changes: 4 additions & 0 deletions
4
repository/Orbeon.package/FormDefinitionRegistry.class/instance/systemRoot.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,4 @@ | ||
system root | ||
systemRoot | ||
|
||
^orbeonApplication systemRoot |
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
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
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
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
4 changes: 4 additions & 0 deletions
4
repository/Orbeon.package/OrbeonAbstractFormDefinition.class/instance/systemRoot.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,4 @@ | ||
system root | ||
systemRoot | ||
|
||
^application systemRoot |
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
4 changes: 4 additions & 0 deletions
4
repository/Orbeon.package/OrbeonFormInstance.class/instance/systemRoot.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,4 @@ | ||
system root | ||
systemRoot | ||
|
||
^definition systemRoot |
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
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
repository/Orbeon.package/OrbeonSystemRoot.class/instance/formDefinitionNamed.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
7 changes: 7 additions & 0 deletions
7
.../Orbeon.package/OrbeonSystemRoot.class/instance/formDefinitionNamed.version.in.ifNone..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 @@ | ||
forms - published | ||
formDefinitionNamed: aString version: versionNumber in: appName ifNone: aBlock | ||
| app | | ||
|
||
app := self applicationNamed: appName ifNone: [^nil]. | ||
|
||
^app definitionNamed: aString version: versionNumber ifNone: aBlock |
4 changes: 2 additions & 2 deletions
4
repository/Orbeon.package/OrbeonSystemRoot.class/instance/getAllFormDefinitions.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,8 +1,8 @@ | ||
charts | ||
forms - published | ||
getAllFormDefinitions | ||
| definitions | | ||
|
||
definitions := OrderedCollection new. | ||
applications do: [:application | definitions addAll: application getAllDefinitions]. | ||
self doInCache: [:each | definitions addAll: each getAllDefinitions]. | ||
|
||
^definitions |
8 changes: 8 additions & 0 deletions
8
repository/Orbeon.package/OrbeonSystemRoot.class/instance/getAllInstances.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,8 @@ | ||
forms - instances | ||
getAllInstances | ||
| instances | | ||
|
||
instances := OrderedCollection new. | ||
self doInCache: [:each | instances addAll: each getAllInstances]. | ||
|
||
^instances |
8 changes: 8 additions & 0 deletions
8
repository/Orbeon.package/OrbeonSystemRoot.class/instance/getAllSavedDefinitions.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,8 @@ | ||
forms - saved | ||
getAllSavedDefinitions | ||
| all | | ||
|
||
all := OrderedCollection new. | ||
self doInCache: [:each | all addAll: each getAllSavedDefinitions]. | ||
|
||
^all |
2 changes: 1 addition & 1 deletion
2
...lass/instance/getLastPublishedDefinitionNamed.fromApplicationNamed.withVersion.ifNone..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
...ry/Orbeon.package/OrbeonSystemRoot.class/instance/getLatestSavedDefinition.app.ifNone..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
7 changes: 7 additions & 0 deletions
7
repository/Orbeon.package/OrbeonSystemRoot.class/instance/includesDefinitionNamed.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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
forms - published | ||
includesDefinitionNamed: aString in: appName | ||
| app | | ||
|
||
app := self applicationNamed: appName ifNone: [^false]. | ||
|
||
^(app definitionNamed: aString) ifNil: [false] ifNotNil: [true] |
4 changes: 4 additions & 0 deletions
4
repository/Orbeon.package/OrbeonSystemRoot.class/instance/newFormBuilderFor..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,4 @@ | ||
forms - builder | ||
newFormBuilderFor: xmlOrbeonFormDefinition | ||
|
||
^OrbeonFormBuilder newOn: self for: xmlOrbeonFormDefinition |
4 changes: 4 additions & 0 deletions
4
repository/Orbeon.package/OrbeonSystemRoot.class/instance/newFormBuilderFor.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,4 @@ | ||
forms - builder | ||
newFormBuilderFor: xmlOrbeonFormDefinition with: xmlOrbeonInstance | ||
|
||
^OrbeonFormBuilder newOn: self for: xmlOrbeonFormDefinition with: 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
Large diffs are not rendered by default.
Oops, something went wrong.