Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
TrellisMigrator
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
Releases
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
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Coscine
backend
scripts
TrellisMigrator
Compare revisions
v0.1.8 to v0.1.9
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
coscine/backend/scripts/trellismigrator
Select target project
No results found
v0.1.9
Select Git revision
Branches
Issue/2518-docs
Issue/2668-remainingCron
dev
gitkeep
main
Tags
v0.1.0
v0.1.1
v0.1.2
v0.1.3
v0.1.4
v0.1.5
v0.1.6
v0.1.7
v0.1.8
v0.1.9
15 results
Swap
Target
coscine/backend/scripts/trellismigrator
Select target project
coscine/backend/scripts/trellismigrator
1 result
v0.1.8
Select Git revision
Branches
Issue/2518-docs
Issue/2668-remainingCron
dev
gitkeep
main
Tags
v0.1.0
v0.1.1
v0.1.2
v0.1.3
v0.1.4
v0.1.5
v0.1.6
v0.1.7
v0.1.8
v0.1.9
15 results
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (2)
Fix: Remove unnecessary assertion
· 0b57938e
Benedikt Heinrichs
authored
2 years ago
0b57938e
Chore: 0.1.9
· 0871b7fe
CoscineBot
authored
2 years ago
# [0.1.9](
v0.1.8...v0.1.9
) (2022-12-19) ## Fix * Remove unnecessary assertion
0871b7fe
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/TrellisMigrator/Implementations/ResourceStructuralData.cs
+0
-24
0 additions, 24 deletions
...TrellisMigrator/Implementations/ResourceStructuralData.cs
src/TrellisMigrator/TrellisMigrator.csproj
+1
-1
1 addition, 1 deletion
src/TrellisMigrator/TrellisMigrator.csproj
with
1 addition
and
25 deletions
src/TrellisMigrator/Implementations/ResourceStructuralData.cs
View file @
0871b7fe
...
@@ -118,30 +118,6 @@ namespace TrellisMigrator.Implementations
...
@@ -118,30 +118,6 @@ namespace TrellisMigrator.Implementations
AddModifiedDate
(
graph
,
dctermsModifiedNode
,
baseNode
);
AddModifiedDate
(
graph
,
dctermsModifiedNode
,
baseNode
);
}
}
var
fileGraphs
=
WrapRequest
(()
=>
ListFileGraphs
(
resourceGraphName
+
"/"
));
foreach
(
var
fileGraph
in
fileGraphs
)
{
if
(
fileGraph
.
ToString
()
!=
resourceGraphName
+
"/"
)
{
var
fileNode
=
graph
.
CreateUriNode
(
fileGraph
);
var
triple
=
new
Triple
(
fileNode
,
partOfNode
,
resourceNode
);
if
(!
graph
.
ContainsTriple
(
triple
))
{
graph
.
Assert
(
triple
);
graph
.
Assert
(
new
Triple
(
fileNode
,
aNode
,
basicContainerNode
));
AddModifiedDate
(
graph
,
dctermsModifiedNode
,
fileNode
);
}
}
}
var
resourceACLGraphName
=
$"
{
resourceUrlPrefix
}
/
{
entry
.
Id
}
?ext=acl"
;
var
resourceACLGraphName
=
$"
{
resourceUrlPrefix
}
/
{
entry
.
Id
}
?ext=acl"
;
var
entryAlreadyExists
=
WrapRequest
(()
=>
HasGraph
(
resourceACLGraphName
));
var
entryAlreadyExists
=
WrapRequest
(()
=>
HasGraph
(
resourceACLGraphName
));
...
...
This diff is collapsed.
Click to expand it.
src/TrellisMigrator/TrellisMigrator.csproj
View file @
0871b7fe
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Nullable>enable</Nullable>
<Version>0.1.
8
</Version></PropertyGroup>
<Version>0.1.
9
</Version></PropertyGroup>
<ItemGroup>
<ItemGroup>
<PackageReference Include="Coscine.Database" Version="2.*-*" />
<PackageReference Include="Coscine.Database" Version="2.*-*" />
...
...
This diff is collapsed.
Click to expand it.