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

Feature/pivot export #517

Merged
merged 4 commits into from
Dec 23, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
27 changes: 14 additions & 13 deletions docs/dependencies.rst
Original file line number Diff line number Diff line change
Expand Up @@ -34,19 +34,20 @@ Name Version

JavaScript

============================================================ ======== ================
Name Version License
============================================================ ======== ================
`Twitter Boostrap <http://getbootstrap.com/>`_ 3.4.1 MIT
`jQuery <http://jquery.com/>`_ 3.6.0 MIT
`jQuery Cookie <https://github.com/carhartl/jquery-cookie>`_ 1.4.1 MIT
`jQuery UI <https://jqueryui.com>`_ 1.13.1 MIT
`Underscore <http://underscorejs.org/>`_ 1.13.2 MIT
`Codemirror <http://codemirror.net/>`_ 5.65.1 MIT
`floatThead <http://mkoryak.github.io/floatThead/>`_ 1.4.0 MIT
`list.js <http://listjs.com>`_ 1.2.0 MIT
`pivottable.js <http://nicolas.kruchten.com/pivottable/>`_ 2.0.2 MIT
============================================================ ======== ================
============================================================== ======== ================
Name Version License
============================================================== ======== ================
`Twitter Boostrap <http://getbootstrap.com/>`_ 3.4.1 MIT
`jQuery <http://jquery.com/>`_ 3.6.0 MIT
`jQuery Cookie <https://github.com/carhartl/jquery-cookie>`_ 1.4.1 MIT
`jQuery UI <https://jqueryui.com>`_ 1.13.1 MIT
`Underscore <http://underscorejs.org/>`_ 1.13.2 MIT
`Codemirror <http://codemirror.net/>`_ 5.65.1 MIT
`floatThead <http://mkoryak.github.io/floatThead/>`_ 1.4.0 MIT
`list.js <http://listjs.com>`_ 1.2.0 MIT
`pivottable.js <http://nicolas.kruchten.com/pivottable/>`_ 2.0.2 MIT
`sheetjs <https://git.sheetjs.com/sheetjs/sheetjs>`_ 0.19.1 APACHE 2.0
============================================================== ======== ================

- All are served locally, with jQuery UI being a custom build.

Expand Down
10 changes: 10 additions & 0 deletions explorer/static/explorer/js/xlsx.mini.min.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions explorer/templates/explorer/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@
<script src="{% static 'explorer/js/comment.min.js' %}"></script>
<script src="{% static 'explorer/js/jquery.floatThead.min.js' %}"></script>
<script src="{% static 'explorer/js/pivot.min.js' %}"></script>
<script src="{% static 'explorer/js/xlsx.mini.min.js' %}"></script>
{% block sql_explorer_scripts %}{% endblock %}
</body>

Expand Down
Loading