balder
Advanced tools
@@ -1,65 +0,97 @@ | ||
| <!DOCTYPE html> | ||
| <!-- | ||
| # Copyright (C) DATADVANCE, 2010-2020 | ||
| # | ||
| # Permission is hereby granted, free of charge, to any person obtaining | ||
| # a copy of this software and associated documentation files (the | ||
| # "Software"), to deal in the Software without restriction, including | ||
| # without limitation the rights to use, copy, modify, merge, publish, | ||
| # distribute, sublicense, and/or sell copies of the Software, and to | ||
| # permit persons to whom the Software is furnished to do so, subject to | ||
| # the following conditions: | ||
| # | ||
| # The above copyright notice and this permission notice shall be | ||
| # included in all copies or substantial portions of the Software. | ||
| # | ||
| # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, | ||
| # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF | ||
| # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. | ||
| # IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY | ||
| # CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, | ||
| # TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE | ||
| # SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | ||
| * Copyright (c) 2021 GraphQL Contributors | ||
| * All rights reserved. | ||
| * | ||
| * This source code is licensed under the license found in the | ||
| * LICENSE file in the root directory of this source tree. | ||
| --> | ||
| <!DOCTYPE html> | ||
| <html> | ||
| <head> | ||
| <style> | ||
| body { | ||
| height: 100%; | ||
| margin: 0; | ||
| width: 100%; | ||
| overflow: hidden; | ||
| } | ||
| <head> | ||
| <style> | ||
| html, | ||
| body { | ||
| height: 100%; | ||
| margin: 0; | ||
| overflow: hidden; | ||
| width: 100%; | ||
| } | ||
| #graphiql { | ||
| height: 100vh; | ||
| } | ||
| </style> | ||
| <link href="//cdn.jsdelivr.net/npm/graphiql@0.11.11/graphiql.css" rel="stylesheet" /> | ||
| <script src="//cdn.jsdelivr.net/react/15.4.2/react.min.js"></script> | ||
| <script src="//cdn.jsdelivr.net/react/15.4.2/react-dom.min.js"></script> | ||
| <script src="//cdn.jsdelivr.net/npm/graphiql@0.11.11/graphiql.min.js"></script> | ||
| <!-- | ||
| This GraphiQL example depends on Promise and fetch, which are available in | ||
| modern browsers, but can be "polyfilled" for older browsers. | ||
| GraphiQL itself depends on React DOM. | ||
| If you do not want to rely on a CDN, you can host these files locally or | ||
| include them directly in your favored resource bunder. | ||
| --> | ||
| <script | ||
| crossorigin | ||
| src="https://unpkg.com/react@16/umd/react.development.js" | ||
| ></script> | ||
| <script | ||
| crossorigin | ||
| src="https://unpkg.com/react-dom@16/umd/react-dom.development.js" | ||
| ></script> | ||
| <!-- | ||
| These two files can be found in the npm module, however you may wish to | ||
| copy them directly into your environment, or perhaps include them in your | ||
| favored resource bundler. | ||
| --> | ||
| <link rel="stylesheet" href="https://unpkg.com/graphiql/graphiql.min.css" /> | ||
| <script src="//cdn.jsdelivr.net/npm/graphql-transport-ws@0.8.3/browser/client.js"></script> | ||
| </head> | ||
| </head> | ||
| <body> | ||
| <body> | ||
| <div id="graphiql">Loading...</div> | ||
| <script | ||
| src="https://unpkg.com/graphiql/graphiql.min.js" | ||
| type="application/javascript" | ||
| ></script> | ||
| <script src="/renderExample.js" type="application/javascript"></script> | ||
| <script> | ||
| // Setup subscription client. | ||
| const GRAPHQL_ENDPOINT = | ||
| (location.protocol === 'https' ? 'wss' : 'ws') | ||
| + '://' + location.host + "{% url 'graphql' %}"; | ||
| let subClient = new window.SubscriptionsTransportWs.SubscriptionClient( | ||
| GRAPHQL_ENDPOINT, | ||
| { reconnect: true } | ||
| const GRAPHQL_ENDPOINT = (location.protocol === 'https' ? 'https' : 'http') | ||
| + '://' + location.host + "{% url 'graphql' %}" | ||
| let subClient = new window.SubscriptionsTransportWs.SubscriptionClient( | ||
| (location.protocol === 'https' ? 'wss' : 'ws') | ||
| + '://' + location.host + "{% url 'graphql' %}" | ||
| , | ||
| { reconnect: true } | ||
| ); | ||
| subFetcher = subClient.request.bind(subClient) | ||
| subFetcher = subClient.request.bind(subClient) | ||
| // Render <GraphiQL /> into the body. | ||
| ReactDOM.render( | ||
| React.createElement(GraphiQL, { | ||
| fetcher: subFetcher, //graphQLFetcher | ||
| }), | ||
| document.body | ||
| ); | ||
| function graphQLFetcher(graphQLParams) { | ||
| return fetch( | ||
| GRAPHQL_ENDPOINT, | ||
| { | ||
| method: 'post', | ||
| headers: { | ||
| Accept: 'application/json', | ||
| 'Content-Type': 'application/json', | ||
| }, | ||
| body: JSON.stringify(graphQLParams), | ||
| credentials: 'omit', | ||
| }, | ||
| ).then(function (response) { | ||
| return response.json().catch(function () { | ||
| return response.text(); | ||
| }); | ||
| }); | ||
| } | ||
| ReactDOM.render( | ||
| React.createElement(GraphiQL, { | ||
| fetcher: subFetcher, | ||
| defaultVariableEditorOpen: true, | ||
| }), | ||
| document.getElementById('graphiql'), | ||
| ); | ||
| </script> | ||
| </body> | ||
| </body> | ||
| </html> |
+1
-1
| Metadata-Version: 2.1 | ||
| Name: balder | ||
| Version: 0.1.20 | ||
| Version: 0.1.21 | ||
| Summary: | ||
@@ -5,0 +5,0 @@ Author: jhnnsrs |
+1
-1
| [tool.poetry] | ||
| name = "balder" | ||
| version = "0.1.20" | ||
| version = "0.1.21" | ||
| description = "" | ||
@@ -5,0 +5,0 @@ authors = ["jhnnsrs <jhnnsrs@gmail.com>"] |
+1
-1
@@ -28,3 +28,3 @@ # -*- coding: utf-8 -*- | ||
| 'name': 'balder', | ||
| 'version': '0.1.20', | ||
| 'version': '0.1.21', | ||
| 'description': '', | ||
@@ -31,0 +31,0 @@ 'long_description': None, |
Alert delta unavailable
Currently unable to show alert delta for PyPI packages.
41965
1.05%