WSL/SLF GitLab Repository
Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
EnviDat
S3_Browsing
Commits
278b1471
Commit
278b1471
authored
Oct 01, 2020
by
Dominik
Browse files
increased version 1.2.1 with the "insane prefix" bugfix
parent
25a8f03f
Changes
3
Hide whitespace changes
Inline
Side-by-side
package-lock.json
View file @
278b1471
{
"name": "s3_browsing",
"version": "1.2.
0
",
"version": "1.2.
1
",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
...
...
package.json
View file @
278b1471
{
"name"
:
"s3_browsing"
,
"version"
:
"1.2.
0
"
,
"private"
:
tru
e
,
"version"
:
"1.2.
1
"
,
"private"
:
fals
e
,
"description"
:
"Web app for browsing through S3 XML and provide it's links."
,
"author"
:
{
"name"
:
"Dominik Haas-Artho"
...
...
src/views/Home.vue
View file @
278b1471
...
...
@@ -68,6 +68,8 @@ import {
GET_S3_CONTENT
,
}
from
'
@/store/mutationsConsts
'
;
import
{
sanitaizePrefix
}
from
'
@/store/s3Factory
'
;
import
TreeCard
from
'
@/components/TreeCard
'
;
import
DownloadToolsCard
from
'
@/components/DownloadToolsCard
'
;
...
...
@@ -216,13 +218,14 @@ export default {
extractUrlParameters
()
{
let
params
=
this
.
$route
.
query
;
this
.
urlP
refix
=
params
?.
prefix
||
''
;
let
p
refix
=
params
?.
prefix
||
''
;
if
(
!
this
.
urlP
refix
)
{
if
(
!
p
refix
)
{
params
=
this
.
$route
.
params
;
this
.
urlPrefix
=
params
?.
prefix
||
''
;
prefix
=
params
?.
prefix
||
''
;
}
this
.
urlPrefix
=
sanitaizePrefix
(
prefix
);
},
getCyberduckXML
(
urlPrefix
)
{
return
`<?xml version="1.0" encoding="UTF-8"?>
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment