-
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
b4ddba6
commit fa97c8a
Showing
48 changed files
with
211 additions
and
71 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
2 changes: 1 addition & 1 deletion
2
repository/Orbeon.package/AppBackup.extension/methodProperties.json
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,5 +1,5 @@ | ||
{ | ||
"class" : { | ||
"fullBackupOrbeonPersistenceLayerTo:externalFilesTo:" : "brunobb 06/14/2020 11:01" }, | ||
"fullBackupOrbeonPersistenceLayerTo:externalFilesTo:systemRoot:" : "brunobb 08/16/2021 12:40" }, | ||
"instance" : { | ||
} } |
6 changes: 2 additions & 4 deletions
6
repository/Orbeon.package/Date.extension/class/fromOrbeonString..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,6 @@ | ||
*orbeon | ||
fromOrbeonString: aString | ||
"Create an instance of the receiver from Orbeon formated string date <aString>. | ||
The Orbeon <oxf.xforms.format.input.date> configuration in XML file properties-loca.xml MUST be equal to: | ||
self getOrbeonWebServerConfiguration dateFormat" | ||
Orbeon Persistence Layer use a fixed default format to store dates: ISO format: y-m-d" | ||
|
||
^self fromOrbeonString: aString | ||
format: self getOrbeonWebServerConfiguration dateFormat | ||
^self fromOrbeonString: aString format: 'y-m-d'. |
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: 2 additions & 2 deletions
4
repository/Orbeon.package/Date.extension/methodProperties.json
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 @@ | ||
{ | ||
"class" : { | ||
"fromOrbeonString:" : "BrunoBB 04/09/2016 13:38", | ||
"fromOrbeonString:" : "brunobb 08/17/2021 14:07", | ||
"fromOrbeonString:format:" : "BrunoBB 04/22/2016 11:13" }, | ||
"instance" : { | ||
"printMySqlString" : "BrunoBB 07/02/2014 18:14", | ||
"printOrbeonString" : "BrunoBB 04/09/2016 13:38", | ||
"printOrbeonString" : "brunobb 08/17/2021 14:12", | ||
"printOrbeonStringFormat:" : "BrunoBB 04/09/2016 13:36" } } |
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/DateTime.extension/methodProperties.json
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
3 changes: 0 additions & 3 deletions
3
repository/Orbeon.package/OrbeonServerConfiguration.class/instance/baseUrlDocumentation..st
This file was deleted.
Oops, something went wrong.
3 changes: 0 additions & 3 deletions
3
repository/Orbeon.package/OrbeonServerConfiguration.class/instance/baseUrlDocumentation.st
This file was deleted.
Oops, something went wrong.
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/OrbeonServerConfiguration.class/instance/migrateAll.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 @@ | ||
migration | ||
migrateAll | ||
|
||
^databaseMigrator migrateAll |
4 changes: 4 additions & 0 deletions
4
...Orbeon.package/OrbeonServerConfiguration.class/instance/migrateFormDefinitionNamed.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,4 @@ | ||
migration | ||
migrateFormDefinitionNamed: formName in: applicationName | ||
|
||
^databaseMigrator migrateFormDefinitionNamed: formName in: applicationName |
4 changes: 4 additions & 0 deletions
4
...beon.package/OrbeonServerConfiguration.class/instance/migrateInstancesOf.version.from..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 @@ | ||
migration | ||
migrateInstancesOf: form version: version from: timeStamp | ||
|
||
^databaseMigrator migrateInstancesOf: form version: version from: timeStamp |
4 changes: 4 additions & 0 deletions
4
...e/OrbeonServerConfiguration.class/instance/updateFormDefinitionNamed.app.version.from..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 @@ | ||
migration | ||
updateFormDefinitionNamed: formName app: applicationName version: version from: timeStamp | ||
|
||
^databaseMigrator updateFormDefinitionNamed: formName app: applicationName version: version from: timeStamp |
84 changes: 43 additions & 41 deletions
84
repository/Orbeon.package/OrbeonServerConfiguration.class/methodProperties.json
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,44 +1,46 @@ | ||
{ | ||
"class" : { | ||
"default" : "brunobb 04/15/2021 14:31", | ||
"initializeDateFormat" : "brunobb 04/15/2021 14:31", | ||
"initializeTimeFormat" : "brunobb 04/15/2021 14:31" }, | ||
"default" : "brunobb 08/19/2021 11:52", | ||
"initializeDateFormat" : "brunobb 08/19/2021 11:52", | ||
"initializeTimeFormat" : "brunobb 08/19/2021 11:52" }, | ||
"instance" : { | ||
"baseUrlDocumentation" : "brunobb 04/15/2021 14:31", | ||
"baseUrlDocumentation:" : "brunobb 04/15/2021 14:31", | ||
"databaseMigrator" : "brunobb 04/15/2021 14:31", | ||
"dateFormat" : "brunobb 04/15/2021 14:31", | ||
"dateFormat:" : "brunobb 04/15/2021 14:31", | ||
"disableDefinitionAuditFor:in:" : "brunobb 04/15/2021 14:31", | ||
"disableDraftAuditFor:in:" : "brunobb 04/15/2021 14:31", | ||
"disableInstanceAuditFor:in:" : "brunobb 04/15/2021 14:31", | ||
"enableDefinitionAuditFor:in:" : "brunobb 04/15/2021 14:31", | ||
"enableDraftAuditFor:in:" : "brunobb 04/15/2021 14:31", | ||
"enableInstanceAuditFor:in:" : "brunobb 04/15/2021 14:31", | ||
"existDirectoryStructureForAttachments" : "brunobb 04/15/2021 14:31", | ||
"getAllAttachmentsPaths" : "brunobb 04/15/2021 14:31", | ||
"getBasePathFor:in:" : "brunobb 04/15/2021 14:31", | ||
"getDraftsPathFor:in:" : "brunobb 04/15/2021 14:31", | ||
"getInstancesPathFor:in:" : "brunobb 04/15/2021 14:31", | ||
"getPublishedDefinitionsPathFor:in:" : "brunobb 04/15/2021 14:31", | ||
"getSavedDefinitionsPathFor:in:" : "brunobb 04/15/2021 14:31", | ||
"getTempPath" : "brunobb 04/15/2021 14:31", | ||
"initialize" : "brunobb 04/15/2021 14:32", | ||
"isDeferredProcessing:in:" : "brunobb 04/15/2021 14:31", | ||
"isDefinitionAuditEnableFor:in:" : "brunobb 04/15/2021 14:31", | ||
"isDraftAuditEnableFor:in:" : "brunobb 04/15/2021 14:31", | ||
"isInstanceAuditEnableFor:in:" : "brunobb 04/15/2021 14:31", | ||
"isOnDemandProcessing:in:" : "brunobb 04/15/2021 14:31", | ||
"orbeonIP" : "brunobb 04/15/2021 14:31", | ||
"orbeonIP:" : "brunobb 04/15/2021 14:31", | ||
"printBaseAttachmentPath" : "brunobb 04/15/2021 14:31", | ||
"setAndTypeSearchFor:in:" : "brunobb 04/15/2021 14:31", | ||
"setDatabaseReaderFromDatabaseName:" : "brunobb 04/15/2021 14:31", | ||
"setDeferredProcessingFor:in:" : "brunobb 04/15/2021 14:31", | ||
"setOnDemandProcessingFor:in:" : "brunobb 04/15/2021 14:31", | ||
"setOrTypeSearchFor:in:" : "brunobb 04/15/2021 14:31", | ||
"setPath:for:in:" : "brunobb 04/15/2021 14:31", | ||
"timeFormat" : "brunobb 04/15/2021 14:31", | ||
"timeFormat:" : "brunobb 04/15/2021 14:31", | ||
"typeSearchIsAnd:in:" : "brunobb 04/15/2021 14:31", | ||
"typeSearchIsOr:in:" : "brunobb 04/15/2021 14:31" } } | ||
"databaseMigrator" : "brunobb 08/19/2021 11:52", | ||
"dateFormat" : "brunobb 08/19/2021 11:52", | ||
"dateFormat:" : "brunobb 08/19/2021 11:52", | ||
"disableDefinitionAuditFor:in:" : "brunobb 08/19/2021 11:52", | ||
"disableDraftAuditFor:in:" : "brunobb 08/19/2021 11:52", | ||
"disableInstanceAuditFor:in:" : "brunobb 08/19/2021 11:52", | ||
"enableDefinitionAuditFor:in:" : "brunobb 08/19/2021 11:52", | ||
"enableDraftAuditFor:in:" : "brunobb 08/19/2021 11:52", | ||
"enableInstanceAuditFor:in:" : "brunobb 08/19/2021 11:52", | ||
"existDirectoryStructureForAttachments" : "brunobb 08/19/2021 11:52", | ||
"getAllAttachmentsPaths" : "brunobb 08/19/2021 11:52", | ||
"getBasePathFor:in:" : "brunobb 08/19/2021 11:52", | ||
"getDraftsPathFor:in:" : "brunobb 08/19/2021 11:52", | ||
"getInstancesPathFor:in:" : "brunobb 08/19/2021 11:52", | ||
"getPublishedDefinitionsPathFor:in:" : "brunobb 08/19/2021 11:52", | ||
"getSavedDefinitionsPathFor:in:" : "brunobb 08/19/2021 11:52", | ||
"getTempPath" : "brunobb 08/19/2021 11:52", | ||
"initialize" : "brunobb 08/19/2021 11:52", | ||
"isDeferredProcessing:in:" : "brunobb 08/19/2021 11:52", | ||
"isDefinitionAuditEnableFor:in:" : "brunobb 08/19/2021 11:52", | ||
"isDraftAuditEnableFor:in:" : "brunobb 08/19/2021 11:52", | ||
"isInstanceAuditEnableFor:in:" : "brunobb 08/19/2021 11:52", | ||
"isOnDemandProcessing:in:" : "brunobb 08/19/2021 11:52", | ||
"migrateAll" : "brunobb 08/19/2021 11:52", | ||
"migrateFormDefinitionNamed:in:" : "brunobb 08/19/2021 11:52", | ||
"migrateInstancesOf:version:from:" : "brunobb 08/19/2021 11:52", | ||
"orbeonIP" : "brunobb 08/19/2021 11:52", | ||
"orbeonIP:" : "brunobb 08/19/2021 11:52", | ||
"printBaseAttachmentPath" : "brunobb 08/19/2021 11:52", | ||
"setAndTypeSearchFor:in:" : "brunobb 08/19/2021 11:52", | ||
"setDatabaseReaderFromDatabaseName:" : "brunobb 08/19/2021 11:52", | ||
"setDeferredProcessingFor:in:" : "brunobb 08/19/2021 11:52", | ||
"setOnDemandProcessingFor:in:" : "brunobb 08/19/2021 11:52", | ||
"setOrTypeSearchFor:in:" : "brunobb 08/19/2021 11:52", | ||
"setPath:for:in:" : "brunobb 08/19/2021 11:52", | ||
"timeFormat" : "brunobb 08/19/2021 11:52", | ||
"timeFormat:" : "brunobb 08/19/2021 11:52", | ||
"typeSearchIsAnd:in:" : "brunobb 08/19/2021 11:52", | ||
"typeSearchIsOr:in:" : "brunobb 08/19/2021 11:52", | ||
"updateFormDefinitionNamed:app:version:from:" : "brunobb 08/19/2021 11:52" } } |
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/OrbeonSystemRoot.class/instance/generateEditUrlFor..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 @@ | ||
url generation | ||
generateEditUrlFor: anOrbeonFormInstance | ||
|
||
^serverConfiguration orbeonIP, '/orbeon/fr/', anOrbeonFormInstance getApplicationName, '/', anOrbeonFormInstance getFormName, '/edit/', anOrbeonFormInstance id |
4 changes: 4 additions & 0 deletions
4
repository/Orbeon.package/OrbeonSystemRoot.class/instance/generateEditUrlForDefinition..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 @@ | ||
url generation | ||
generateEditUrlForDefinition: anOrbeonPublishedFormDefinition | ||
|
||
^serverConfiguration orbeonIP, '/orbeon/fr/orbeon/builder/edit/', anOrbeonPublishedFormDefinition id |
4 changes: 4 additions & 0 deletions
4
repository/Orbeon.package/OrbeonSystemRoot.class/instance/generateNewUrlForDefinition..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 @@ | ||
url generation | ||
generateNewUrlForDefinition: anOrbeonPublishedFormDefinition | ||
|
||
^serverConfiguration orbeonIP, '/orbeon/fr/orbeon/builder/new' |
4 changes: 4 additions & 0 deletions
4
repository/Orbeon.package/OrbeonSystemRoot.class/instance/generateViewPdfUrlFor..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 @@ | ||
url generation | ||
generateViewPdfUrlFor: anOrbeonFormInstance | ||
|
||
^serverConfiguration orbeonIP, '/orbeon/fr/', anOrbeonFormInstance getApplicationName, '/', anOrbeonFormInstance getFormName, '/pdf/', anOrbeonFormInstance id |
4 changes: 4 additions & 0 deletions
4
repository/Orbeon.package/OrbeonSystemRoot.class/instance/generateViewUrlFor..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 @@ | ||
url generation | ||
generateViewUrlFor: anOrbeonFormInstance | ||
|
||
^serverConfiguration orbeonIP, '/orbeon/fr/', anOrbeonFormInstance getApplicationName, '/', anOrbeonFormInstance getFormName, '/view/', anOrbeonFormInstance id |
4 changes: 4 additions & 0 deletions
4
repository/Orbeon.package/OrbeonSystemRoot.class/instance/getAllAttachmentsPaths.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 @@ | ||
external path | ||
getAllAttachmentsPaths | ||
|
||
^serverConfiguration getAllAttachmentsPaths |
4 changes: 4 additions & 0 deletions
4
repository/Orbeon.package/OrbeonSystemRoot.class/instance/getDatabaseReaderName.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 @@ | ||
database reader | ||
getDatabaseReaderName | ||
|
||
^serverConfiguration getDatabaseReaderName |
4 changes: 4 additions & 0 deletions
4
repository/Orbeon.package/OrbeonSystemRoot.class/instance/getDraftsPathFor.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,4 @@ | ||
external path | ||
getDraftsPathFor: formName in: appName | ||
|
||
^serverConfiguration getDraftsPathFor: formName in: appName |
4 changes: 4 additions & 0 deletions
4
repository/Orbeon.package/OrbeonSystemRoot.class/instance/getInstancesPathFor.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,4 @@ | ||
external path | ||
getInstancesPathFor: formName in: appName | ||
|
||
^serverConfiguration getInstancesPathFor: formName in: appName |
4 changes: 4 additions & 0 deletions
4
...tory/Orbeon.package/OrbeonSystemRoot.class/instance/getPublishedDefinitionsPathFor.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,4 @@ | ||
external path | ||
getPublishedDefinitionsPathFor: formName in: appName | ||
|
||
^serverConfiguration getPublishedDefinitionsPathFor: formName in: appName |
4 changes: 4 additions & 0 deletions
4
repository/Orbeon.package/OrbeonSystemRoot.class/instance/getSavedDefinitionsPathFor.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,4 @@ | ||
external path | ||
getSavedDefinitionsPathFor: formName in: appName | ||
|
||
^serverConfiguration getSavedDefinitionsPathFor: formName in: appName |
4 changes: 4 additions & 0 deletions
4
repository/Orbeon.package/OrbeonSystemRoot.class/instance/getTempPath.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 @@ | ||
external path | ||
getTempPath | ||
|
||
^serverConfiguration getTempPath |
4 changes: 4 additions & 0 deletions
4
repository/Orbeon.package/OrbeonSystemRoot.class/instance/isDeferredProcessing.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,4 @@ | ||
audit | ||
isDeferredProcessing: formName in: appName | ||
|
||
^serverConfiguration isDeferredProcessing: formName in: appName |
4 changes: 4 additions & 0 deletions
4
repository/Orbeon.package/OrbeonSystemRoot.class/instance/isDefinitionAuditEnableFor.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,4 @@ | ||
audit | ||
isDefinitionAuditEnableFor: formName in: appName | ||
|
||
^serverConfiguration isDefinitionAuditEnableFor: formName in: appName |
4 changes: 4 additions & 0 deletions
4
repository/Orbeon.package/OrbeonSystemRoot.class/instance/isDraftAuditEnableFor.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,4 @@ | ||
audit | ||
isDraftAuditEnableFor: formName in: appName | ||
|
||
^serverConfiguration isDraftAuditEnableFor: formName in: appName |
4 changes: 4 additions & 0 deletions
4
repository/Orbeon.package/OrbeonSystemRoot.class/instance/isInstanceAuditEnableFor.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,4 @@ | ||
audit | ||
isInstanceAuditEnableFor: formName in: appName | ||
|
||
^serverConfiguration isInstanceAuditEnableFor: formName in: appName |
4 changes: 4 additions & 0 deletions
4
repository/Orbeon.package/OrbeonSystemRoot.class/instance/migrateAll.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 @@ | ||
migration | ||
migrateAll | ||
|
||
^serverConfiguration migrateAll |
4 changes: 4 additions & 0 deletions
4
repository/Orbeon.package/OrbeonSystemRoot.class/instance/migrateFormDefinitionNamed.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,4 @@ | ||
migration | ||
migrateFormDefinitionNamed: formName in: applicationName | ||
|
||
^serverConfiguration migrateFormDefinitionNamed: formName in: applicationName |
4 changes: 4 additions & 0 deletions
4
...sitory/Orbeon.package/OrbeonSystemRoot.class/instance/migrateInstancesOf.version.from..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 @@ | ||
migration | ||
migrateInstancesOf: form version: version from: timeStamp | ||
|
||
^serverConfiguration migrateInstancesOf: form version: version from: timeStamp |
4 changes: 4 additions & 0 deletions
4
repository/Orbeon.package/OrbeonSystemRoot.class/instance/orbeonDateFormat.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 @@ | ||
audit | ||
orbeonDateFormat | ||
|
||
^serverConfiguration dateFormat |
4 changes: 4 additions & 0 deletions
4
repository/Orbeon.package/OrbeonSystemRoot.class/instance/orbeonIP..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 @@ | ||
configuration | ||
orbeonIP: stringIP | ||
|
||
^serverConfiguration orbeonIP: stringIP |
4 changes: 4 additions & 0 deletions
4
repository/Orbeon.package/OrbeonSystemRoot.class/instance/orbeonIP.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 @@ | ||
configuration | ||
orbeonIP | ||
|
||
^serverConfiguration orbeonIP |
4 changes: 4 additions & 0 deletions
4
...on.package/OrbeonSystemRoot.class/instance/orbeonServerConfigurationPerform.with.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 @@ | ||
external path | ||
orbeonServerConfigurationPerform: pathSelector with: form with: app | ||
|
||
^serverConfiguration perform: pathSelector with: form with: app. |
4 changes: 4 additions & 0 deletions
4
repository/Orbeon.package/OrbeonSystemRoot.class/instance/printBaseAttachmentPath.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 @@ | ||
external path | ||
printBaseAttachmentPath | ||
|
||
^serverConfiguration printBaseAttachmentPath |
4 changes: 4 additions & 0 deletions
4
...tory/Orbeon.package/OrbeonSystemRoot.class/instance/setDatabaseReaderFromDatabaseName..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 @@ | ||
database reader | ||
setDatabaseReaderFromDatabaseName: databaseNameName | ||
|
||
^serverConfiguration setDatabaseReaderFromDatabaseName: databaseNameName |
4 changes: 4 additions & 0 deletions
4
repository/Orbeon.package/OrbeonSystemRoot.class/instance/typeSearchIsOr.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,4 @@ | ||
search options | ||
typeSearchIsOr: formName in: appName | ||
|
||
^serverConfiguration typeSearchIsOr: formName in: appName |
4 changes: 4 additions & 0 deletions
4
...on.package/OrbeonSystemRoot.class/instance/updateFormDefinitionNamed.app.version.from..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 @@ | ||
migration | ||
updateFormDefinitionNamed: formName app: applicationName version: version from: timeStamp | ||
|
||
^serverConfiguration updateFormDefinitionNamed: formName app: applicationName version: version from: timeStamp |
Oops, something went wrong.