-
Notifications
You must be signed in to change notification settings - Fork 157
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
15 changed files
with
196 additions
and
113 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
Enhancement: Option to enable Vue history mode | ||
|
||
We've added the option to use vue's history mode. All configuration is done automatically by the system. | ||
To enable it, add a `<base src="PATH">` header tag to `index.html`, `oidc-callback.html` and `oidc-silent-redirect.html`. | ||
Adding `<base>` is not needed for ocis. | ||
|
||
https://github.com/owncloud/web/issues/6363 | ||
https://github.com/owncloud/web/issues/6277 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
Enhancement: Run web as oc10 sidecar | ||
|
||
We've added the option to run web in oc10 sidecar mode. | ||
Copy `config/config.json.sample-oc10` to `config/config.json`, run `yarn server` and then `docker compose up oc10`. | ||
|
||
https://github.com/owncloud/web/issues/6363 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
ARG OC10_IMAGE | ||
FROM ${OC10_IMAGE} | ||
|
||
RUN apt -qqy update \ | ||
&& apt -qqy --no-install-recommends install \ | ||
bash \ | ||
&& rm -rf /var/lib/apt/lists/* \ | ||
&& apt -qyy clean |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,13 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<body> | ||
<script> | ||
window.onload = function() { | ||
window.location.href = window.location.origin + | ||
window.location.pathname.substr(0, window.location.pathname.length - 18) + | ||
"index.html#/oidc-callback" + window.location.search; | ||
} | ||
window.onload = function () { | ||
const base = document.querySelector('base') | ||
const path = base ? new URL(base.href).pathname.split('/') : [...window.location.pathname.split('/').slice(0, -1), 'index.html#'] | ||
const url = new URL([...path, 'oidc-callback'].filter(Boolean).join('/'), window.location.origin) | ||
window.location.href = url.href + window.location.search | ||
} | ||
</script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,13 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<body> | ||
<script> | ||
window.onload = function() { | ||
window.location.href = window.location.origin + | ||
window.location.pathname.substr(0, window.location.pathname.length - 25) + | ||
"index.html#/oidc-silent-redirect" + window.location.search; | ||
} | ||
window.onload = function () { | ||
const base = document.querySelector('base') | ||
const path = base ? new URL(base.href).pathname.split('/') : [...window.location.pathname.split('/').slice(0, -1), 'index.html#'] | ||
const url = new URL([...path, 'oidc-silent-redirect'].filter(Boolean).join('/'), window.location.origin) | ||
window.location.href = url.href + window.location.search | ||
} | ||
</script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.