Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
Organization Parser
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Coscine
backend
scripts
Organization Parser
Merge requests
!17
New: Added missing contact information generation for the RWTH Aachen
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
New: Added missing contact information generation for the RWTH Aachen
Hotfix/2562-organizations
into
master
Overview
0
Commits
1
Pipelines
1
Changes
1
Merged
Petar Hristov
requested to merge
Hotfix/2562-organizations
into
master
1 year ago
Overview
0
Commits
1
Pipelines
1
Changes
1
Expand
coscine/issues#2562
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
e57316c2
1 commit,
1 year ago
1 file
+
7
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
src/OrganizationLoader/Program.cs
+
7
−
1
Options
@@ -325,7 +325,7 @@ namespace Coscine.OrganizationLoader
streamWriter
.
WriteLine
();
streamWriter
.
WriteLine
(
$"<
{
rorId
}
>"
);
streamWriter
.
WriteLine
(
@" dcterms:publisher <https://itc.rwth-aachen.de/> ;"
);
streamWriter
.
WriteLine
(
@" dcterms:rights ""Copyright © 202
0
IT Center, RWTH Aachen University"" ;"
);
streamWriter
.
WriteLine
(
@" dcterms:rights ""Copyright © 202
3
IT Center, RWTH Aachen University"" ;"
);
streamWriter
.
WriteLine
(
@" dcterms:title ""RWTH Aachen University""@en ;"
);
streamWriter
.
WriteLine
();
streamWriter
.
WriteLine
(
@" a org:FormalOrganization ;"
);
@@ -396,6 +396,12 @@ namespace Coscine.OrganizationLoader
streamWriter
.
WriteLine
(
$@"<
{
organizationMapping
.
RorId
}
> org:identifier ""
{
organizationMapping
.
EntityId
}
"" ."
);
}
// Contact Information
streamWriter
.
WriteLine
(
$"<
{
rorId
}
> coscineresource:contactInformation ["
);
streamWriter
.
WriteLine
(
@" foaf:name ""Service Desk"";"
);
streamWriter
.
WriteLine
(
@" foaf:mbox <mailto:servicedesk@rwth-aachen.de>;"
);
streamWriter
.
WriteLine
(
"]."
);
streamWriter
.
Flush
();
return
Encoding
.
UTF8
.
GetString
(
memoryStream
.
ToArray
());
Loading