diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2019-03-01 16:59:46 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2019-03-01 16:59:51 -0800 |
commit | bef21bc18191c7a24b8c8aecb8b5926fddfe60f8 (patch) | |
tree | 82125a51f480b40bc40573efb42ee5ee275cf05b | |
parent | e09b40e4938e5559e47052b9a4b54c88755f5a66 (diff) | |
download | fatcat-bef21bc18191c7a24b8c8aecb8b5926fddfe60f8.tar.gz fatcat-bef21bc18191c7a24b8c8aecb8b5926fddfe60f8.zip |
remove raw object embeddings
These were HTML commented out, but could have had an encoding escape or
other issue; also bloated response sizes.
-rw-r--r-- | python/fatcat_web/templates/container_view.html | 5 | ||||
-rw-r--r-- | python/fatcat_web/templates/creator_view.html | 5 | ||||
-rw-r--r-- | python/fatcat_web/templates/file_view.html | 5 | ||||
-rw-r--r-- | python/fatcat_web/templates/work_view.html | 5 |
4 files changed, 0 insertions, 20 deletions
diff --git a/python/fatcat_web/templates/container_view.html b/python/fatcat_web/templates/container_view.html index 3e69be34..c8f51f5f 100644 --- a/python/fatcat_web/templates/container_view.html +++ b/python/fatcat_web/templates/container_view.html @@ -49,11 +49,6 @@ </table> {% endif %} -<!-- -Raw Object: -{{ container|safe }} ---> - </div> <div class="five wide column"> <div class="ui segment top attached"> diff --git a/python/fatcat_web/templates/creator_view.html b/python/fatcat_web/templates/creator_view.html index 03fcfc74..16f74f0a 100644 --- a/python/fatcat_web/templates/creator_view.html +++ b/python/fatcat_web/templates/creator_view.html @@ -66,11 +66,6 @@ This creator has not contributed to any releases. {% endif %} -<!-- -Raw Object: -{{ creator|safe }} ---> - </div> <div class="five wide column"> <div class="ui segment top attached"> diff --git a/python/fatcat_web/templates/file_view.html b/python/fatcat_web/templates/file_view.html index c2497040..4bb6d75a 100644 --- a/python/fatcat_web/templates/file_view.html +++ b/python/fatcat_web/templates/file_view.html @@ -88,11 +88,6 @@ No known public URL, mirror, or archive for this file. {% endif %} </table> -<!-- -Raw Object: -{{ file|safe }} ---> - </div> <div class="five wide column"> diff --git a/python/fatcat_web/templates/work_view.html b/python/fatcat_web/templates/work_view.html index b81293ce..6a409542 100644 --- a/python/fatcat_web/templates/work_view.html +++ b/python/fatcat_web/templates/work_view.html @@ -23,11 +23,6 @@ {% endfor %} {% endif %} -<!-- -Raw Object: -{{ work|safe }} ---> - <h3>Releases</h3> {% if releases != [] %} <table class="ui very basic celled table"> |