geo-activity-playground 0.34.0__py3-none-any.whl → 0.34.2__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (21) hide show
  1. geo_activity_playground/webui/static/Leaflet.fullscreen.min.js +1 -0
  2. geo_activity_playground/webui/static/MarkerCluster.Default.css +60 -0
  3. geo_activity_playground/webui/static/MarkerCluster.css +14 -0
  4. geo_activity_playground/webui/static/bootstrap.bundle.min.js +7 -0
  5. geo_activity_playground/webui/static/bootstrap.min.css +6 -0
  6. geo_activity_playground/webui/static/fullscreen.png +0 -0
  7. geo_activity_playground/webui/static/fullscreen@2x.png +0 -0
  8. geo_activity_playground/webui/static/leaflet.css +661 -0
  9. geo_activity_playground/webui/static/leaflet.fullscreen.css +40 -0
  10. geo_activity_playground/webui/static/leaflet.js +6 -0
  11. geo_activity_playground/webui/static/leaflet.markercluster.js +3 -0
  12. geo_activity_playground/webui/static/table-sort.min.js +8 -0
  13. geo_activity_playground/webui/static/vega-embed@6 +7 -0
  14. geo_activity_playground/webui/static/vega-lite@4 +2 -0
  15. geo_activity_playground/webui/static/vega@5 +2 -0
  16. geo_activity_playground/webui/templates/page.html.j2 +15 -17
  17. {geo_activity_playground-0.34.0.dist-info → geo_activity_playground-0.34.2.dist-info}/METADATA +1 -1
  18. {geo_activity_playground-0.34.0.dist-info → geo_activity_playground-0.34.2.dist-info}/RECORD +21 -6
  19. {geo_activity_playground-0.34.0.dist-info → geo_activity_playground-0.34.2.dist-info}/LICENSE +0 -0
  20. {geo_activity_playground-0.34.0.dist-info → geo_activity_playground-0.34.2.dist-info}/WHEEL +0 -0
  21. {geo_activity_playground-0.34.0.dist-info → geo_activity_playground-0.34.2.dist-info}/entry_points.txt +0 -0
@@ -8,33 +8,31 @@
8
8
  <title>Geo Activity Playground</title>
9
9
 
10
10
  <!-- Bootstrap CSS. -->
11
- <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet"
11
+ <link href="/static/bootstrap.min.css" rel="stylesheet"
12
12
  integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
13
13
 
14
14
  <!-- Leaflet for interactive maps. -->
15
- <link rel="stylesheet" href="https://unpkg.com/leaflet@1.9.4/dist/leaflet.css"
16
- integrity="sha256-p4NxAoJBhIIN+hmNHrzRCf9tD/miZyoHS5obTRR9BMY=" crossorigin="" />
17
- <script src="https://unpkg.com/leaflet@1.9.4/dist/leaflet.js"
18
- integrity="sha256-20nQCchB9co0qIjJZRGuk2/Z9VM+kNiyxNV1lvTlZBo=" crossorigin=""></script>
15
+ <link rel="stylesheet" href="/static/leaflet.css" integrity="sha256-p4NxAoJBhIIN+hmNHrzRCf9tD/miZyoHS5obTRR9BMY="
16
+ crossorigin="" />
17
+ <script src="/static/leaflet.js" integrity="sha256-20nQCchB9co0qIjJZRGuk2/Z9VM+kNiyxNV1lvTlZBo="
18
+ crossorigin=""></script>
19
19
 
20
20
  <!-- Fullscreen button for Leaflet. -->
21
- <link href='https://api.mapbox.com/mapbox.js/plugins/leaflet-fullscreen/v1.0.1/leaflet.fullscreen.css'
22
- rel='stylesheet' />
23
- <script src='https://api.mapbox.com/mapbox.js/plugins/leaflet-fullscreen/v1.0.1/Leaflet.fullscreen.min.js'></script>
21
+ <link href='/static/leaflet.fullscreen.css' rel='stylesheet' />
22
+ <script src='/static/Leaflet.fullscreen.min.js'></script>
24
23
 
25
- <link rel="stylesheet" href="https://unpkg.com/leaflet.markercluster@1.4.1/dist/MarkerCluster.css" crossorigin="" />
26
- <link rel="stylesheet" href="https://unpkg.com/leaflet.markercluster@1.4.1/dist/MarkerCluster.Default.css"
27
- crossorigin="" />
28
- <script src="https://unpkg.com/leaflet.markercluster@1.4.1/dist/leaflet.markercluster.js"></script>
24
+ <link rel="stylesheet" href="/static/MarkerCluster.css" crossorigin="" />
25
+ <link rel="stylesheet" href="/static/MarkerCluster.Default.css" crossorigin="" />
26
+ <script src="/static/leaflet.markercluster.js"></script>
29
27
 
30
28
  <!-- Vega for plots.-->
31
- <script src="https://cdn.jsdelivr.net/npm/vega@5"></script>
32
- <script src="https://cdn.jsdelivr.net/npm/vega-lite@4"></script>
33
- <script src="https://cdn.jsdelivr.net/npm/vega-embed@6"></script>
29
+ <script src="/static/vega@5"></script>
30
+ <script src="/static/vega-lite@4"></script>
31
+ <script src="/static/vega-embed@6"></script>
34
32
 
35
33
  <script src="/static/bootstrap-dark-mode.js"></script>
36
34
 
37
- <script src="https://cdn.jsdelivr.net/npm/table-sort-js/table-sort.min.js"></script>
35
+ <script src="/static/table-sort.min.js"></script>
38
36
 
39
37
  <!-- Favicon. -->
40
38
  <link rel="apple-touch-icon" sizes="180x180" href="/static/apple-touch-icon.png">
@@ -206,7 +204,7 @@
206
204
  </div>
207
205
  </div>
208
206
 
209
- <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"
207
+ <script src="/static/bootstrap.bundle.min.js"
210
208
  integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL"
211
209
  crossorigin="anonymous"></script>
212
210
  </body>
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: geo-activity-playground
3
- Version: 0.34.0
3
+ Version: 0.34.2
4
4
  Summary: Analysis of geo data activities like rides, runs or hikes.
5
5
  License: MIT
6
6
  Author: Martin Ueding
@@ -84,18 +84,33 @@ geo_activity_playground/webui/square_planner/__init__.py,sha256=47DEQpj8HBSa-_TI
84
84
  geo_activity_playground/webui/square_planner/blueprint.py,sha256=r2VkSM547chX85g6c1BQ8NC-tkdqGdYp-2ZALBiiDTc,1320
85
85
  geo_activity_playground/webui/square_planner/controller.py,sha256=ML6ftOyr3tTh7D4DBcRP76CvkyTxqI5QWgMeG9wC8FE,3561
86
86
  geo_activity_playground/webui/square_planner/templates/square_planner/index.html.j2,sha256=xFbYBQtkOl3U4WGkvIuU_5uazGHn8ObvQfNgPGq0Gqg,6469
87
+ geo_activity_playground/webui/static/Leaflet.fullscreen.min.js,sha256=MMWj_yFOercjzhk8wKIIKyDCK7olXrwk_7R7TjDhGYs,3677
88
+ geo_activity_playground/webui/static/MarkerCluster.Default.css,sha256=LWhzWaQGZRsWFrrJxg-6Zn8TT84k0_trtiHBc6qcGpY,1346
89
+ geo_activity_playground/webui/static/MarkerCluster.css,sha256=-bdWuWOXMFkX0v9Cvr3OWClPiYefDQz9GGZP_7xZxdc,886
87
90
  geo_activity_playground/webui/static/android-chrome-192x192.png,sha256=yxZgo8Jw4hrgOgrn3tvi9G0AXWGFD29kjCuxC07WoT4,17610
88
91
  geo_activity_playground/webui/static/android-chrome-512x512.png,sha256=Uiv62gQpUjMOdp9d6exzd6IyOi5zgQdgjIVVWYw5m98,38891
89
92
  geo_activity_playground/webui/static/apple-touch-icon.png,sha256=TNLa0YIS1mbWajvIQthC2bGve6ET3DbJzrAbs6Pf3Ps,13046
90
93
  geo_activity_playground/webui/static/bootstrap-dark-mode.js,sha256=XfyhxIFgjDc6aEj0kYgKpG5zjS5gvyhWCJmNfUG4HJY,2622
94
+ geo_activity_playground/webui/static/bootstrap.bundle.min.js,sha256=gvZPYrsDwbwYJLD5yeBfcNujPhRoGOY831wwbIzz3t0,80663
95
+ geo_activity_playground/webui/static/bootstrap.min.css,sha256=MBffSnbbXwHCuZtgPYiwMQbfE7z-GOZ7fBPCNB06Z98,232948
91
96
  geo_activity_playground/webui/static/browserconfig.xml,sha256=u5EvU6U1jKSDiXHW0i4rXrs0lT_tmS82otbJnvmccrk,253
92
97
  geo_activity_playground/webui/static/favicon-16x16.png,sha256=Yy8lRjGB7itDaeUI_l_Toq3OO0gzgPGnqIfM3CqcQy0,1419
93
98
  geo_activity_playground/webui/static/favicon-32x32.png,sha256=K52R99pLGgWHnjFPPkVieBm051Er-sTCiMvgLr9Alrg,2587
94
99
  geo_activity_playground/webui/static/favicon-48x48.png,sha256=NIIuC1OV1umv2pETJH2yDUZhhzJDk0TERsbwA5tQM9A,2008
95
100
  geo_activity_playground/webui/static/favicon.ico,sha256=zAkbToeh1fq8rh6osWyEjr-cgdX-ec5viI0vPAwLn7A,15086
96
101
  geo_activity_playground/webui/static/favicon.svg,sha256=gwESIDvoxOpg3tHvbiAc-wVEM4fY0pFzWnX_guQcv1c,52247
102
+ geo_activity_playground/webui/static/fullscreen.png,sha256=yDtz-dhjuAoo6q9xc00-_XNTrGwEWrN80pOneFdol4g,299
103
+ geo_activity_playground/webui/static/fullscreen@2x.png,sha256=HVi2guZO6sekf2NggilbzjUTvJDweXpSMBS81fhtnX0,420
104
+ geo_activity_playground/webui/static/leaflet.css,sha256=p4NxAoJBhIIN-hmNHrzRCf9tD_miZyoHS5obTRR9BMY,14806
105
+ geo_activity_playground/webui/static/leaflet.fullscreen.css,sha256=YTbhDGEH5amI_JfotPMN7IByFpsN9e4tCBnv5oNdvHU,994
106
+ geo_activity_playground/webui/static/leaflet.js,sha256=20nQCchB9co0qIjJZRGuk2_Z9VM-kNiyxNV1lvTlZBo,147552
107
+ geo_activity_playground/webui/static/leaflet.markercluster.js,sha256=WL6HHfYfbFEkZOFdsJQeY7lJG_E5airjvqbznghUzRw,33724
97
108
  geo_activity_playground/webui/static/mstile-150x150.png,sha256=j1ANUQJ1Xi1DR2sGqYZztob2ypfGw04eNtGpN9SxExA,11964
98
109
  geo_activity_playground/webui/static/site.webmanifest,sha256=G5wl5Ahfz6wyDt-Z7ea-ywG1WS1S7ZQ_QX9TM2ox6Lk,450
110
+ geo_activity_playground/webui/static/table-sort.min.js,sha256=sFeDrgkXTePr2ciJU9_mLh-Z8qtYhPIQMgOZtj0LwBY,8506
111
+ geo_activity_playground/webui/static/vega-embed@6,sha256=EtAqz74-xZ75o33UgiouBOKWG1u7Zxu-Zh0iIXFbmdo,60630
112
+ geo_activity_playground/webui/static/vega-lite@4,sha256=roXmcY9bUF91uB9V-eSEUHEgfwoXe6B1xoDPuIe5ou8,267999
113
+ geo_activity_playground/webui/static/vega@5,sha256=5DLHUaY2P0ph2mKSDMfX69E88J2ClJ-PSGJI-Acdw84,514536
99
114
  geo_activity_playground/webui/static/web-app-manifest-192x192.png,sha256=eEImN6iWfSv-EnSNPL5WbX84PKakse_8VZMBPWWye3o,13582
100
115
  geo_activity_playground/webui/static/web-app-manifest-512x512.png,sha256=vU9oQ4HnQerFDZVzcAT9twj4_Doc6_9v9wVvoRI-f_E,48318
101
116
  geo_activity_playground/webui/summary/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -103,15 +118,15 @@ geo_activity_playground/webui/summary/blueprint.py,sha256=tfA2aPF19yKwkQOb5lPQBy
103
118
  geo_activity_playground/webui/summary/controller.py,sha256=FyPdC98maX0P5sJ4j5Z7-ZSiirLh_jmu_PszKXqTV8A,9425
104
119
  geo_activity_playground/webui/summary/templates/summary/index.html.j2,sha256=ctOx3Qjx6nRDpUtFf1DlJhK_gtU77Vwx_S6euLz9-W4,5183
105
120
  geo_activity_playground/webui/templates/home.html.j2,sha256=IdCqI_LLcYrpUjjCO-tbXR4s05XYrPOateiJ4idF3bo,2202
106
- geo_activity_playground/webui/templates/page.html.j2,sha256=znTbtD2NALrhmUN_Q-F1ElGlKtecoUv8vOCcUtojrdI,11134
121
+ geo_activity_playground/webui/templates/page.html.j2,sha256=Mt1M0hw1V7sPnQmo6kRO_e49B4to30eDkAf-J35xXas,10624
107
122
  geo_activity_playground/webui/templates/upload/index.html.j2,sha256=I1Ix8tDS3YBdi-HdaNfjkzYXVVCjfUTe5PFTnap1ydc,775
108
123
  geo_activity_playground/webui/templates/upload/reload.html.j2,sha256=YZWX5eDeNyqKJdQAywDBcU8DZBm22rRBbZqFjrFrCvQ,556
109
124
  geo_activity_playground/webui/tile/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
110
125
  geo_activity_playground/webui/tile/blueprint.py,sha256=q0sw_F8L367Df01yjZijikEIglFBgg9lN61sbTAEOKQ,1018
111
126
  geo_activity_playground/webui/tile/controller.py,sha256=XjUTbyAMeQET1D3mFtT8r5-xMcMOaELPZWtQ1Xp7Cuw,1428
112
127
  geo_activity_playground/webui/upload_blueprint.py,sha256=topLI9ytDUFkqCc9AlOqDkjhABUwnPJ1tX_7XrBPbxc,4412
113
- geo_activity_playground-0.34.0.dist-info/LICENSE,sha256=4RpAwKO8bPkfXH2lnpeUW0eLkNWglyG4lbrLDU_MOwY,1070
114
- geo_activity_playground-0.34.0.dist-info/METADATA,sha256=36V6xU7OXmcZrN-eqQfkzaRnFKCfA4ICmVjx-dzqWP0,1573
115
- geo_activity_playground-0.34.0.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
116
- geo_activity_playground-0.34.0.dist-info/entry_points.txt,sha256=pbNlLI6IIZIp7nPYCfAtiSiz2oxJSCl7DODD6SPkLKk,81
117
- geo_activity_playground-0.34.0.dist-info/RECORD,,
128
+ geo_activity_playground-0.34.2.dist-info/LICENSE,sha256=4RpAwKO8bPkfXH2lnpeUW0eLkNWglyG4lbrLDU_MOwY,1070
129
+ geo_activity_playground-0.34.2.dist-info/METADATA,sha256=zJSlC24LGmWQ63Ozp6X6ZGqgFbTzr5M7qBVerF_JwHc,1573
130
+ geo_activity_playground-0.34.2.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
131
+ geo_activity_playground-0.34.2.dist-info/entry_points.txt,sha256=pbNlLI6IIZIp7nPYCfAtiSiz2oxJSCl7DODD6SPkLKk,81
132
+ geo_activity_playground-0.34.2.dist-info/RECORD,,