Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
ProxyApi
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor 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
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Coscine
backend
libraries
ProxyApi
Compare revisions
v3.0.2 to v3.0.3
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/libraries/proxyapi
Select target project
No results found
v3.0.3
Select Git revision
Branches
Issue/1910-MigrationtoNET6.0
Issue/2259-updatePids
Issue/2309-docs
Issue/2463-newCoscinePIDTypes
Product/1287-dotnet5Sharepoint
Product/407-net5migration
Sprint/2021-01
Sprint/2021-03
Sprint/2022-01
Topic/1226-proxyApiLibraryMigration
Topic/1334-dotnet5migration
dev
gitkeep
master
Tags
v1.0.0
v1.1.0
v1.2.0
v1.2.1
v1.3.0
v1.4.0
v2.0.0
v2.1.0
v3.0.0
v3.0.1
v3.0.2
v3.0.3
26 results
Swap
Target
coscine/backend/libraries/proxyapi
Select target project
coscine/backend/libraries/proxyapi
1 result
v3.0.2
Select Git revision
Branches
Issue/1910-MigrationtoNET6.0
Issue/2259-updatePids
Issue/2309-docs
Issue/2463-newCoscinePIDTypes
Product/1287-dotnet5Sharepoint
Product/407-net5migration
Sprint/2021-01
Sprint/2021-03
Sprint/2022-01
Topic/1226-proxyApiLibraryMigration
Topic/1334-dotnet5migration
dev
gitkeep
master
Tags
v1.0.0
v1.1.0
v1.2.0
v1.2.1
v1.3.0
v1.4.0
v2.0.0
v2.1.0
v3.0.0
v3.0.1
v3.0.2
v3.0.3
26 results
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (2)
Fix: No infinite loop on search
· 9cbf3b59
Benedikt Heinrichs
authored
1 year ago
9cbf3b59
Chore: 3.0.3
· d948f555
CoscineBot
authored
1 year ago
# [3.0.3](
v3.0.2...v3.0.3
) (2023-12-11) ## Fix * No infinite loop on search
d948f555
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/ProxyApi.Tests/ProxyApi.Tests.csproj
+1
-1
1 addition, 1 deletion
src/ProxyApi.Tests/ProxyApi.Tests.csproj
src/ProxyApi/ProxyApi.csproj
+1
-1
1 addition, 1 deletion
src/ProxyApi/ProxyApi.csproj
src/ProxyApi/Utils/EpicClient.cs
+2
-2
2 additions, 2 deletions
src/ProxyApi/Utils/EpicClient.cs
with
4 additions
and
4 deletions
src/ProxyApi.Tests/ProxyApi.Tests.csproj
View file @
d948f555
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
<RootNamespace>Coscine.ProxyApi.Tests</RootNamespace>
<RootNamespace>Coscine.ProxyApi.Tests</RootNamespace>
<AssemblyName>Coscine.ProxyApi.Tests</AssemblyName>
<AssemblyName>Coscine.ProxyApi.Tests</AssemblyName>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net6.0</TargetFramework>
<Version>3.0.
2
</Version></PropertyGroup>
<Version>3.0.
3
</Version></PropertyGroup>
<ItemGroup>
<ItemGroup>
<ProjectReference Include="..\ProxyApi\ProxyApi.csproj" />
<ProjectReference Include="..\ProxyApi\ProxyApi.csproj" />
</ItemGroup>
</ItemGroup>
...
...
This diff is collapsed.
Click to expand it.
src/ProxyApi/ProxyApi.csproj
View file @
d948f555
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
<RootNamespace>Coscine.ProxyApi</RootNamespace>
<RootNamespace>Coscine.ProxyApi</RootNamespace>
<AssemblyName>Coscine.ProxyApi</AssemblyName>
<AssemblyName>Coscine.ProxyApi</AssemblyName>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net6.0</TargetFramework>
<Version>3.0.
2
</Version>
<Version>3.0.
3
</Version>
</PropertyGroup>
</PropertyGroup>
<PropertyGroup>
<PropertyGroup>
<Authors>RWTH Aachen University</Authors>
<Authors>RWTH Aachen University</Authors>
...
...
This diff is collapsed.
Click to expand it.
src/ProxyApi/Utils/EpicClient.cs
View file @
d948f555
...
@@ -95,7 +95,7 @@ namespace Coscine.ProxyApi.Utils
...
@@ -95,7 +95,7 @@ namespace Coscine.ProxyApi.Utils
var
content
=
result
.
Content
.
ReadAsStringAsync
().
Result
;
var
content
=
result
.
Content
.
ReadAsStringAsync
().
Result
;
content
.
Split
(
'\n'
).
ToList
().
ForEach
(
e
=>
pidList
.
Add
(
new
EpicData
()
{
EpicPid
=
e
}));
content
.
Split
(
'\n'
).
ToList
().
ForEach
(
e
=>
pidList
.
Add
(
new
EpicData
()
{
EpicPid
=
e
}));
}
}
return
pidList
;
return
pidList
.
Where
(
x
=>
!
string
.
IsNullOrWhiteSpace
(
x
.
EpicPid
))
;
}
}
public
IEnumerable
<
EpicData
>
SearchAll
(
string
searchUrl
,
int
limit
=
1000
,
int
startPage
=
1
)
public
IEnumerable
<
EpicData
>
SearchAll
(
string
searchUrl
,
int
limit
=
1000
,
int
startPage
=
1
)
...
@@ -140,7 +140,7 @@ namespace Coscine.ProxyApi.Utils
...
@@ -140,7 +140,7 @@ namespace Coscine.ProxyApi.Utils
{
{
Console
.
WriteLine
();
Console
.
WriteLine
();
}
}
return
pidList
;
return
pidList
.
Where
(
x
=>
!
string
.
IsNullOrWhiteSpace
(
x
.
EpicPid
))
;
}
}
public
IEnumerable
<
EpicData
>
ListAll
(
int
limit
=
1000
,
int
startPage
=
1
)
public
IEnumerable
<
EpicData
>
ListAll
(
int
limit
=
1000
,
int
startPage
=
1
)
...
...
This diff is collapsed.
Click to expand it.