When preparing for class just now, I think I found a bug in the flask
sage notebook file browser.
Visit http://test.sagenb.org/src/libs and click on a directory or up.
In both cases "/src/" vanishes from the URL. Basically all the links
in the source browser are missing /src, which wrecks browse-ability.
-- William
--
William Stein
Professor of Mathematics
University of Washington
http://wstein.org
http://test.sagenb.org/src/rings/integer.pxd
I think this is a significant new regression in the notebook, which
wasn't in the old version.
This is a one-character (nay, a one-bit) typo in flask_version/base.py
(it says 'pyd', but should say 'pxd').
I'll look into the /src problem...
Thanks,
Jason
Okay, both this bug and the pxd bug are fixed and live on sagenb.org.
The problem with the /src/ URL was that the autoindex documentation was
wrong. It said that it defaulted to not creating any URLs, but in fact
the code defaults to creating mappings for /. That meant that the
generated URLs used / instead of /src.
Both of these bugs were fixed in
https://github.com/sagemath/sagenb/commit/2a6f2726822e0537bf0947a426500f8fc9a186ee
Thanks,
Jason