bgruening / galaxy-ipython

:microscope::books: IPython Integration into Galaxy
MIT License
31 stars 14 forks source link

HTTP/S needs to be configurable #6

Closed hexylena closed 10 years ago

hexylena commented 10 years ago
(03:43:18 PM) jmchilton: erasche2: You are passing the password over clear-text HTTP - so yes I would call this a problem.
(03:43:29 PM) jmchilton: Proxying the traffic though Galaxy should fix that.
(03:43:31 PM) erasche2: We work under the assumption of galaxy being under SSL endpoint
(03:43:44 PM) jmchilton: notebook_access_url = "http://%s/ipython/%s/notebooks/ipython_galaxy_notebook.ipynb" % ( HOST, PORT )
(03:43:59 PM) erasche2: oh crap, you're right. That does need an S.
(03:44:28 PM) erasche2: Thanks for catching that!
hexylena commented 10 years ago

MathJAX fails to load when main site is served over HTTPS

hexylena commented 10 years ago

The password login fails to work when the notebook is specified as running under an HTTP url -- the variables are POSTed and gets a 302 found, however variables are NOT reposted across redirects. In this case it identified the bug John found.

bgruening commented 10 years ago

Please see this patch: https://github.com/ipython/ipython/pull/6273 Also note that from IPython.external import mathjax; mathjax.install_mathjax('2.4.0') is working.