-
Notifications
You must be signed in to change notification settings - Fork 4
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
5bc4bc5
commit e606f17
Showing
23 changed files
with
151 additions
and
2 deletions.
There are no files selected for viewing
Empty file.
4 changes: 4 additions & 0 deletions
4
...GemStoneAdministration.package/WABpmBackupDatabase.class/instance/getCurrentCollection.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 @@ | ||
other | ||
getCurrentCollection | ||
|
||
^#() |
5 changes: 5 additions & 0 deletions
5
...tory/BpmWebGemStoneAdministration.package/WABpmBackupDatabase.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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"class" : { | ||
}, | ||
"instance" : { | ||
"getCurrentCollection" : "brunobb 05/06/2020 16:30" } } |
14 changes: 14 additions & 0 deletions
14
repository/BpmWebGemStoneAdministration.package/WABpmBackupDatabase.class/properties.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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"category" : "BpmWebGemStoneAdministration", | ||
"classinstvars" : [ | ||
], | ||
"classvars" : [ | ||
], | ||
"commentStamp" : "", | ||
"instvars" : [ | ||
], | ||
"name" : "WABpmBackupDatabase", | ||
"pools" : [ | ||
], | ||
"super" : "SewafLateralListComposite", | ||
"type" : "normal" } |
8 changes: 8 additions & 0 deletions
8
...n.package/WABpmGemStoneAdministrationLogin.class/instance/checkAccessToApplicationFor..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 @@ | ||
other | ||
checkAccessToApplicationFor: aBpmUser | ||
"Answer wheter or not the user <aBpmUser> has access to the Backoffice application. | ||
1) <aBpmUser> is backoffice user in the selected environment --> true or: | ||
2) <aBpmUser> is registered in the the selected environment and belong to 'admins' environment with a backoffice role --> true" | ||
|
||
^(aBpmUser isBackofficeUserIn: self session bpmEnvironment) | ||
or: [(self defaultEnvironmentClass getAdminsEnvironment includesUserNamed: aBpmUser username) and: [(aBpmUser isBackofficeUserIn: self defaultEnvironmentClass getAdminsEnvironment)]] |
4 changes: 4 additions & 0 deletions
4
...eAdministration.package/WABpmGemStoneAdministrationLogin.class/instance/showPortalFor..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 @@ | ||
other | ||
showPortalFor: aBpmUser | ||
|
||
self show: (WABpmGemStoneAdministrationPortal on: aBpmUser) |
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
Empty file.
2 changes: 2 additions & 0 deletions
2
...dministration.package/WABpmGemStoneAdministrationPortal.class/instance/applicationIcon.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,2 @@ | ||
other | ||
applicationIcon |
4 changes: 4 additions & 0 deletions
4
...dministration.package/WABpmGemStoneAdministrationPortal.class/instance/applicationName.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 @@ | ||
other | ||
applicationName | ||
|
||
^'GemStone/S Administration' |
13 changes: 13 additions & 0 deletions
13
...stration.package/WABpmGemStoneAdministrationPortal.class/instance/initializeNavigation.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,13 @@ | ||
other | ||
initializeNavigation | ||
| subMenu1 subMenu2 subMenu3 subMenu4 | | ||
|
||
navigation := SewafPortalMenu new iconLibrary: SEWAFIconLibrary. | ||
subMenu1 := (SewafSubMenuItem label: 'Manage GemStone/S DB' icon: #openManageGemStone) | ||
addItem: (SewafCommandItem label: 'Backup Database' command: #openBackupDatabase); | ||
addItem: (SewafCommandItem label: 'Start Garbage Collection' command: #openStartGarbageCollection); | ||
addItem: (SewafCommandItem label: 'List Running Gems' command: #openListRunningGems); | ||
addItem: (SewafCommandItem label: 'Repository Statistics' command: #openRepositoryStatistics); | ||
yourself. | ||
|
||
navigation addItem: subMenu1. |
6 changes: 6 additions & 0 deletions
6
...GemStoneAdministration.package/WABpmGemStoneAdministrationPortal.class/instance/logout.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 @@ | ||
other | ||
logout | ||
|
||
self session logout. | ||
self session unregister. | ||
self requestContext redirectTo: (self getGemStoneServerConfiguration gemstoneIP, '/bpmflow') |
8 changes: 8 additions & 0 deletions
8
...nistration.package/WABpmGemStoneAdministrationPortal.class/instance/openBackupDatabase.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 @@ | ||
other | ||
openBackupDatabase | ||
|
||
(arena isKindOf: WABpmBackupDatabase) | ||
ifTrue: [^arena]. | ||
|
||
^(WABpmBackupDatabase parent: self) | ||
yourself |
8 changes: 8 additions & 0 deletions
8
...istration.package/WABpmGemStoneAdministrationPortal.class/instance/openListRunningGems.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 @@ | ||
other | ||
openListRunningGems | ||
|
||
(arena isKindOf: WABpmBackupDatabase) | ||
ifTrue: [^arena]. | ||
|
||
^(WABpmBackupDatabase parent: self) | ||
yourself |
8 changes: 8 additions & 0 deletions
8
...nistration.package/WABpmGemStoneAdministrationPortal.class/instance/openManageGemStone.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 @@ | ||
other | ||
openManageGemStone | ||
|
||
(arena isKindOf: WABpmBackupDatabase) | ||
ifTrue: [^arena]. | ||
|
||
^(WABpmBackupDatabase parent: self) | ||
yourself |
8 changes: 8 additions & 0 deletions
8
...tion.package/WABpmGemStoneAdministrationPortal.class/instance/openRepositoryStatistics.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 @@ | ||
other | ||
openRepositoryStatistics | ||
|
||
(arena isKindOf: WABpmBackupDatabase) | ||
ifTrue: [^arena]. | ||
|
||
^(WABpmBackupDatabase parent: self) | ||
yourself |
8 changes: 8 additions & 0 deletions
8
...on.package/WABpmGemStoneAdministrationPortal.class/instance/openStartGarbageCollection.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 @@ | ||
other | ||
openStartGarbageCollection | ||
|
||
(arena isKindOf: WABpmBackupDatabase) | ||
ifTrue: [^arena]. | ||
|
||
^(WABpmBackupDatabase parent: self) | ||
yourself |
2 changes: 2 additions & 0 deletions
2
...on.package/WABpmGemStoneAdministrationPortal.class/instance/renderSwitchPortalIconsOn..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,2 @@ | ||
other | ||
renderSwitchPortalIconsOn: html |
12 changes: 12 additions & 0 deletions
12
...oneAdministration.package/WABpmGemStoneAdministrationPortal.class/instance/updateRoot..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,12 @@ | ||
other | ||
updateRoot: anHtmlRoot | ||
|
||
super updateRoot: anHtmlRoot. | ||
|
||
SEWAFCssLibrary default updateRoot: anHtmlRoot. | ||
|
||
anHtmlRoot stylesheet url: (SEWAFCssLibrary / layout getBpmCssFileName). | ||
" | ||
'http://192.168.29.142:8787/files/SEWAFCssLibrary/main.css' | ||
" | ||
anHtmlRoot javascript contents: SEWAFJavaScriptLibrary default jsExpandCollapseFunctions. |
4 changes: 4 additions & 0 deletions
4
...oneAdministration.package/WABpmGemStoneAdministrationPortal.class/instance/versionName.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 @@ | ||
other | ||
versionName | ||
|
||
^'2020 q1 v3.6.6' |
16 changes: 16 additions & 0 deletions
16
...StoneAdministration.package/WABpmGemStoneAdministrationPortal.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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"class" : { | ||
}, | ||
"instance" : { | ||
"applicationIcon" : "brunobb 05/06/2020 16:18", | ||
"applicationName" : "brunobb 05/06/2020 16:19", | ||
"initializeNavigation" : "brunobb 05/06/2020 16:23", | ||
"logout" : "brunobb 05/06/2020 16:29", | ||
"openBackupDatabase" : "brunobb 05/06/2020 16:28", | ||
"openListRunningGems" : "brunobb 05/06/2020 16:28", | ||
"openManageGemStone" : "brunobb 05/06/2020 16:28", | ||
"openRepositoryStatistics" : "brunobb 05/06/2020 16:28", | ||
"openStartGarbageCollection" : "brunobb 05/06/2020 16:29", | ||
"renderSwitchPortalIconsOn:" : "brunobb 05/06/2020 16:24", | ||
"updateRoot:" : "brunobb 05/06/2020 16:25", | ||
"versionName" : "brunobb 05/06/2020 16:25" } } |
14 changes: 14 additions & 0 deletions
14
...WebGemStoneAdministration.package/WABpmGemStoneAdministrationPortal.class/properties.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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"category" : "BpmWebGemStoneAdministration", | ||
"classinstvars" : [ | ||
], | ||
"classvars" : [ | ||
], | ||
"commentStamp" : "", | ||
"instvars" : [ | ||
], | ||
"name" : "WABpmGemStoneAdministrationPortal", | ||
"pools" : [ | ||
], | ||
"super" : "SEWAFApplicationPortal", | ||
"type" : "normal" } |
2 changes: 1 addition & 1 deletion
2
repository/BpmWebGemStoneAdministration.package/monticello.meta/version
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 +1 @@ | ||
(name 'BpmWebGemStoneAdministration-brunobb.1' message '' id '57c8e082-ed8f-4cc6-8352-457f60c248d8' date '05/06/2020' time '15:27:17' author 'brunobb' ancestors () stepChildren ()) | ||
(name 'BpmWebGemStoneAdministration-brunobb.2' message '' id '6c705e4b-29ea-4c9e-b738-cba197a9bfed' date '05/06/2020' time '16:33:17' author 'brunobb' ancestors ((name 'BpmWebGemStoneAdministration-brunobb.1' message '' id '57c8e082-ed8f-4cc6-8352-457f60c248d8' date '05/06/2020' time '15:27:17' author 'brunobb' ancestors () stepChildren ())) stepChildren ()) |