Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WIP] Jdaviz integration #1658

Open
wants to merge 24 commits into
base: develop
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
33ee243
First try at adding JDaviz to image explorer
york-stsci Nov 22, 2024
f82e328
Merge branch 'spacetelescope:develop' into jdaviz_integration
york-stsci Nov 25, 2024
a08fc7a
Updated image template to a different frame format
york-stsci Nov 25, 2024
f5256e3
Trying safe for the iframe
york-stsci Nov 25, 2024
7354f33
Trying a change to X-Frame-Options
york-stsci Nov 25, 2024
a2c8a7b
Removed X-Frame-Options because it doesn't help with this issue, and …
york-stsci Nov 25, 2024
be1437b
Trying to allow django to load this particular frame over non-https
york-stsci Nov 25, 2024
520bc6e
Trying reverse proxy
york-stsci Nov 25, 2024
36f6cdd
Hopefully fixing typo in setting up proxy as absolute page
york-stsci Nov 25, 2024
ee85845
Adding X-FRAME-OPTIONS setting to allow self-embed for reverse proxy
york-stsci Nov 25, 2024
9bcd5fd
Turned the quicklook into a regular expression path because the rever…
york-stsci Nov 25, 2024
5bd807f
Try to make the path bare to avoid route conflict issues
york-stsci Nov 25, 2024
a2935ea
Updating policies for django
york-stsci Nov 25, 2024
93c7dd0
Trying adding a forwarded header to solara
york-stsci Nov 25, 2024
e21f17d
Trying doing quickview as an explicit path
york-stsci Nov 26, 2024
b3923e5
Increasing size of iframe
york-stsci Nov 26, 2024
f258e0a
First attempt at image exploration with jdaviz nginx
york-stsci Nov 27, 2024
e037942
Trying another way to populate the frame
york-stsci Nov 27, 2024
55bafe3
Trying https version
york-stsci Nov 27, 2024
d4ceb12
Trying https version
york-stsci Nov 27, 2024
931470a
Trying a way to do pre-path
york-stsci Nov 27, 2024
a0b581f
Updated proxy
york-stsci Nov 30, 2024
8cd25fb
Updated proxy
york-stsci Nov 30, 2024
524ccc6
Removed double-jdaviz URL
york-stsci Dec 9, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Trying doing quickview as an explicit path
york-stsci committed Nov 26, 2024
commit e21f17d42a51dbdabff927860ccb9be486a72a5f
2 changes: 1 addition & 1 deletion jwql/website/jwql_proj/urls.py
Original file line number Diff line number Diff line change
@@ -65,5 +65,5 @@
urlpatterns = [
path('', include('jwql.website.apps.jwql.urls')),
path('admin/', admin.site.urls),
re_path(r'quickview(?P<path>.*)', ProxyView.as_view(upstream=f'http://{jdaviz_host}:{jdaviz_port}', add_x_forwarded=True))
re_path(r'(?P<path>quickview.*)', ProxyView.as_view(upstream=f'http://{jdaviz_host}:{jdaviz_port}', add_x_forwarded=True))
]