Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
71c5a8e
#2345 added function that removes tags around abstract
Jan 27, 2026
426a783
Remove formatting within subjects of emails #2356
geofranzi Jan 27, 2026
20cf228
Links to non-open datasets (datasets without release/major tag) - cha…
geofranzi Jan 27, 2026
20a9265
Metadata API: Add update/change comment #2360
geofranzi Jan 28, 2026
c67ba7c
Update core ui #2321
geofranzi Jan 28, 2026
3b824d7
Fix Publications added via API are shown under datasets and not under…
geofranzi Jan 28, 2026
9a02321
Add operation for PUM and metadiff #2295 #2164
geofranzi Jan 28, 2026
0be1233
Merge branches 'rc' and 'rc' of https://github.com/BEXIS2/Core into rc
geofranzi Jan 28, 2026
3678597
Dataset Versions API: Add change description #2362
geofranzi Jan 28, 2026
1d5eda4
Merge branch 'rc' of https://github.com/BEXIS2/Core into rc
Jan 29, 2026
5af333a
Curation Tool: Feature permissions missing in update script - add ope…
geofranzi Jan 29, 2026
10c8257
2299 remove module help links and add custom help links in generals
DavidBlaa Jan 30, 2026
5784f96
Merge branch 'rc' of https://github.com/BEXIS2/Core into rc
DavidBlaa Jan 30, 2026
094fc5b
Merge branch 'rc' of https://github.com/BEXIS2/Core into rc
geofranzi Jan 30, 2026
41098a3
Merge branch 'rc' of https://github.com/BEXIS2/Core into rc
geofranzi Jan 30, 2026
8b3ff47
update workspace link #2299
geofranzi Jan 30, 2026
3d9bcf3
Add minimal tag request workflow #1735
geofranzi Jan 30, 2026
f0d0b85
Check for non-unique variables names #2336
geofranzi Jan 30, 2026
9c67ade
Change text for optional values #1998
geofranzi Jan 30, 2026
0def661
Add minimal tag request workflow - add missing csproj changes #1735
geofranzi Jan 30, 2026
5c53f86
#2364 fixed bugs
Jan 30, 2026
7e8b5dc
Merge branch 'rc' of https://github.com/BEXIS2/Core into rc
Jan 30, 2026
ab1eae9
#702 imporvae save metadata
DavidBlaa Feb 2, 2026
8bd3a43
Add page #2296
geofranzi Feb 2, 2026
0d15643
Merge branch 'rc' of https://github.com/BEXIS2/Core into rc
geofranzi Feb 2, 2026
4f9d02f
Fix Dataset landing page: Text not centered in entity and DOI label #…
geofranzi Feb 2, 2026
cf0ec3e
Add controller and view for ComponentConfig; read & write to workspac…
geofranzi Feb 2, 2026
be5f915
Add operations to enable testing #2296
geofranzi Feb 2, 2026
c4dbfed
Load schema based on entity template #2296
geofranzi Feb 2, 2026
160bc00
Load schema based on entity template #2296
geofranzi Feb 2, 2026
4c0d1c4
Change single manifest config into array of #2296
geofranzi Feb 2, 2026
4157bec
#702 fix is valid issue
DavidBlaa Feb 3, 2026
8e45d82
#2367 added function
Feb 3, 2026
d3d10e6
Merge branch 'rc' of https://github.com/BEXIS2/Core into rc
Feb 3, 2026
f55c674
#702 prevent to click more then one save
DavidBlaa Feb 3, 2026
d1b0927
Merge branch 'rc' of https://github.com/BEXIS2/Core into rc
DavidBlaa Feb 3, 2026
1d77870
#2363 open datastructure and link view hook
DavidBlaa Feb 3, 2026
6e5b380
merge rc
EleonoraPetzold Feb 3, 2026
eb899cd
merge rc
EleonoraPetzold Feb 3, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ public static string GetSendRequestMessage(long datasetid, string title, string

public static string GetWithdrawRequestHeader(long datasetid, string requester)
{
return $"Data request from {requester} for dataset with ID <b>{datasetid}</b> withdrawn";
return $"Data request from {requester} for dataset with ID {datasetid} withdrawn";
}

public static string GetWithdrawRequestMessage(long datasetid, string title, string requester)
Expand All @@ -173,7 +173,7 @@ public static string GetWithdrawRequestMessage(long datasetid, string title, str

public static string GetAcceptRequestHeader(long datasetid, string requester)
{
return $"Data request from {requester} for dataset with ID <b>{datasetid}</b> granted";
return $"Data request from {requester} for dataset with ID {datasetid} granted";
}

public static string GetAcceptRequestMessage(long datasetid, string title)
Expand All @@ -186,7 +186,7 @@ public static string GetAcceptRequestMessage(long datasetid, string title)

public static string GetRejectedRequestHeader(long datasetid, string requester)
{
return $"Data request from {requester} for dataset with ID <b>{datasetid}</b> rejected";
return $"Data request from {requester} for dataset with ID {datasetid} rejected";
}

public static string GetRejectedRequestMessage(long datasetid, string title)
Expand Down Expand Up @@ -342,7 +342,7 @@ public static string GetUnsetPublicMessage(string userName, long datasetid, stri

public static string GetPushApiStoreHeader(long datasetid, string title)
{
return $"Receive data for dataset '{title}' with ID <b>{datasetid}</b>";
return $"Receive data for dataset '{title}' with ID {datasetid}";
}

public static string GetPushApiStoreMessage(long datasetid, string userName, string[] errors = null)
Expand Down Expand Up @@ -386,7 +386,7 @@ public static string GetPushApiValidateMessage(long datasetid, string userName,

public static string GetPushApiUploadSuccessHeader(long datasetid, string title)
{
return $"Upload <b>completed</b> for dataset: '{title}' with ID <b>{datasetid}</b>";
return $"Upload completed for dataset: '{title}' with ID {datasetid}";
}

public static string GetPushApiUploadSuccessMessage(long datasetid, string userName)
Expand All @@ -396,7 +396,7 @@ public static string GetPushApiUploadSuccessMessage(long datasetid, string userN

public static string GetPushApiUploadFailHeader(long datasetid, string title)
{
return $"Upload was not successful for dataset '{title}' with ID <b>{datasetid}</b>";
return $"Upload was not successful for dataset '{title}' with ID {datasetid}";
}

public static string GetPushApiUploadFailMessage(long datasetid, string userName, string[] errors)
Expand Down
2 changes: 1 addition & 1 deletion Console/BExIS.Web.Shell.Svelte/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
},
"type": "module",
"dependencies": {
"@bexis2/bexis2-core-ui": "0.4.64",
"@bexis2/bexis2-core-ui": "0.4.65",
"@sveltejs/adapter-static": "3.0.2",
"buffer": "6.0.3",
"gray-matter": "4.0.3",
Expand Down
9 changes: 9 additions & 0 deletions Console/BExIS.Web.Shell/App_Data/BExIS.Web.Shell.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 1 addition & 4 deletions Console/BExIS.Web.Shell/Areas/BAM/BAM.Manifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,7 @@
title="Get partyTypes for account" description="Get partyTypes for account which are defined in setting.xml" icon=""
controller="PartyService" action="GetPartyTypesForAccount"
extends="" />
<Export tag="lunchbar" id="helpBam" order="2"
title="Account / Parties" description="Parties Help Manual" icon=""
controller="Help" action="index"
extends="./lunchbarRoot/help" />

<!-- Settings Example-->
<!--<Export tag="settings" id="manageMetadata" order="1"
title="Manage Metadata Structure" description="Edit or Importa new Metadata Structure" icon=""
Expand Down
3 changes: 0 additions & 3 deletions Console/BExIS.Web.Shell/Areas/BAM/BExIS.Modules.Bam.UI.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,6 @@
<Compile Include="Controllers\API\PartyRelationshipsController.cs" />
<Compile Include="Controllers\API\PartyRelationshipTypesController.cs" />
<Compile Include="Controllers\API\PartyTypesController.cs" />
<Compile Include="Controllers\HelpController.cs" />
<Compile Include="Controllers\PartyController.cs" />
<Compile Include="Controllers\PartyServiceController.cs" />
<Compile Include="Helpers\BAMSeedDataGenerator.cs" />
Expand Down Expand Up @@ -187,7 +186,6 @@
<Content Include="Scripts\respond.matchmedia.addListener.min.js" />
<Content Include="Scripts\respond.min.js" />
<Content Include="Scripts\_references.js" />
<Content Include="Views\Help\Informations.xml" />
<Content Include="Views\Web.config" />
<Content Include="Views\_ViewStart.cshtml" />
<Content Include="Views\Party\Index.cshtml" />
Expand All @@ -199,7 +197,6 @@
<Content Include="Views\Party\_relationshipEditViewPartial.cshtml" />
<Content Include="Views\Party\_addPartyRelationshipPartial.cshtml" />
<Content Include="Views\PartyService\_userRegisterationPartial.cshtml" />
<Content Include="Views\Help\Index.cshtml" />
<Content Include="Views\PartyService\_customAttributesPartial.cshtml" />
<Content Include="Views\PartyService\Edit.cshtml" />
<Content Include="Views\Party\_addPartyTypePair.cshtml" />
Expand Down
7 changes: 0 additions & 7 deletions Console/BExIS.Web.Shell/Areas/BAM/Bam.Settings.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,6 @@
{
"description": "...",
"entries": [
{
"description": "URL to the manual. If empty, it links to the latest manual from BEXIS2",
"key": "help",
"title": "Help URL",
"type": "String",
"value": ""
},
{
"description": "Defined AccountPartyTypes value in web config format is like PartyType1:PartyTypePairTitle1-PartyTypePairTitle2,PartyType2",
"key": "AccountPartyRelationshipTypes",
Expand Down
19 changes: 0 additions & 19 deletions Console/BExIS.Web.Shell/Areas/BAM/Controllers/HelpController.cs

This file was deleted.

98 changes: 0 additions & 98 deletions Console/BExIS.Web.Shell/Areas/BAM/Views/Help/Index.cshtml

This file was deleted.

16 changes: 0 additions & 16 deletions Console/BExIS.Web.Shell/Areas/BAM/Views/Help/Informations.xml

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
"@types/node": "22.0.2",
"@typescript-eslint/eslint-plugin": "8.0.0",
"@typescript-eslint/parser": "8.0.0",
"@ts4nfdi/terminology-service-suite-js": "^6.0.0",
"autoprefixer": "10.4.19",
"eslint": "9.8.0",
"eslint-config-prettier": "9.1.0",
Expand All @@ -50,7 +51,7 @@
},
"type": "module",
"dependencies": {
"@bexis2/bexis2-core-ui": "0.4.64",
"@bexis2/bexis2-core-ui": "0.4.65",
"@bexis2/bexis2-rpm-ui": "0.2.15",
"@floating-ui/dom": "1.6.8",
"@fortawesome/free-solid-svg-icons": "6.6.0",
Expand Down
Loading