API - update python dependencies (wip)
This commit is contained in:
		
							
								
								
									
										1
									
								
								docs/_static/basic.css
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										1
									
								
								docs/_static/basic.css
									
									
									
									
										vendored
									
									
								
							| @@ -764,6 +764,7 @@ div.code-block-caption code { | ||||
| } | ||||
|  | ||||
| table.highlighttable td.linenos, | ||||
| span.linenos, | ||||
| div.doctest > div.highlight span.gp {  /* gp: Generic.Prompt */ | ||||
|     user-select: none; | ||||
| } | ||||
|   | ||||
							
								
								
									
										5
									
								
								docs/_static/doctools.js
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										5
									
								
								docs/_static/doctools.js
									
									
									
									
										vendored
									
									
								
							| @@ -285,9 +285,10 @@ var Documentation = { | ||||
|   initOnKeyListeners: function() { | ||||
|     $(document).keydown(function(event) { | ||||
|       var activeElementType = document.activeElement.tagName; | ||||
|       // don't navigate when in search box or textarea | ||||
|       // don't navigate when in search box, textarea, dropdown or button | ||||
|       if (activeElementType !== 'TEXTAREA' && activeElementType !== 'INPUT' && activeElementType !== 'SELECT' | ||||
|           && !event.altKey && !event.ctrlKey && !event.metaKey && !event.shiftKey) { | ||||
|           && activeElementType !== 'BUTTON' && !event.altKey && !event.ctrlKey && !event.metaKey | ||||
|           && !event.shiftKey) { | ||||
|         switch (event.keyCode) { | ||||
|           case 37: // left | ||||
|             var prevHref = $('link[rel="prev"]').prop('href'); | ||||
|   | ||||
							
								
								
									
										10
									
								
								docs/_static/pygments.css
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										10
									
								
								docs/_static/pygments.css
									
									
									
									
										vendored
									
									
								
							| @@ -1,8 +1,8 @@ | ||||
| pre { line-height: 125%; margin: 0; } | ||||
| td.linenos pre { color: #000000; background-color: #f0f0f0; padding: 0 5px 0 5px; } | ||||
| span.linenos { color: #000000; background-color: #f0f0f0; padding: 0 5px 0 5px; } | ||||
| td.linenos pre.special { color: #000000; background-color: #ffffc0; padding: 0 5px 0 5px; } | ||||
| span.linenos.special { color: #000000; background-color: #ffffc0; padding: 0 5px 0 5px; } | ||||
| pre { line-height: 125%; } | ||||
| td.linenos pre { color: #000000; background-color: #f0f0f0; padding-left: 5px; padding-right: 5px; } | ||||
| span.linenos { color: #000000; background-color: #f0f0f0; padding-left: 5px; padding-right: 5px; } | ||||
| td.linenos pre.special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; } | ||||
| span.linenos.special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; } | ||||
| .highlight .hll { background-color: #ffffcc } | ||||
| .highlight { background: #f8f8f8; } | ||||
| .highlight .c { color: #8f5902; font-style: italic } /* Comment */ | ||||
|   | ||||
							
								
								
									
										8
									
								
								docs/_static/searchtools.js
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										8
									
								
								docs/_static/searchtools.js
									
									
									
									
										vendored
									
									
								
							| @@ -59,10 +59,10 @@ var Search = { | ||||
|   _pulse_status : -1, | ||||
|  | ||||
|   htmlToText : function(htmlString) { | ||||
|       var htmlElement = document.createElement('span'); | ||||
|       htmlElement.innerHTML = htmlString; | ||||
|       $(htmlElement).find('.headerlink').remove(); | ||||
|       docContent = $(htmlElement).find('[role=main]')[0]; | ||||
|       var virtualDocument = document.implementation.createHTMLDocument('virtual'); | ||||
|       var htmlElement = $(htmlString, virtualDocument); | ||||
|       htmlElement.find('.headerlink').remove(); | ||||
|       docContent = htmlElement.find('[role=main]')[0]; | ||||
|       if(docContent === undefined) { | ||||
|           console.warn("Content block not found. Sphinx search tries to obtain it " + | ||||
|                        "via '[role=main]'. Could you check your theme or template."); | ||||
|   | ||||
| @@ -6,14 +6,13 @@ | ||||
|     <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||||
|     <title>Activities — FitTrackee 0.4.0 | ||||
|  documentation</title> | ||||
|     <link rel="stylesheet" href="../_static/bootstrap-sphinx.css" type="text/css" /> | ||||
|     <link rel="stylesheet" href="../_static/pygments.css" type="text/css" /> | ||||
|     <link rel="stylesheet" href="../_static/bootstrap-sphinx.css" type="text/css" /> | ||||
|     <link rel="stylesheet" type="text/css" href="../_static/custom.css" /> | ||||
|     <script id="documentation_options" data-url_root="../" src="../_static/documentation_options.js"></script> | ||||
|     <script src="../_static/jquery.js"></script> | ||||
|     <script src="../_static/underscore.js"></script> | ||||
|     <script src="../_static/doctools.js"></script> | ||||
|     <script src="../_static/language_data.js"></script> | ||||
|     <link rel="index" title="Index" href="../genindex.html" /> | ||||
|     <link rel="search" title="Search" href="../search.html" /> | ||||
|     <link rel="next" title="Authentication" href="auth.html" /> | ||||
| @@ -1132,7 +1131,7 @@ | ||||
|     </p> | ||||
|     <p> | ||||
|         © Copyright 2018 - 2020, SamR1.<br/> | ||||
|       Created using <a href="http://sphinx-doc.org/">Sphinx</a> 3.2.1.<br/> | ||||
|       Created using <a href="http://sphinx-doc.org/">Sphinx</a> 3.4.1.<br/> | ||||
|     </p> | ||||
|   </div> | ||||
| </footer> | ||||
|   | ||||
| @@ -6,14 +6,13 @@ | ||||
|     <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||||
|     <title>Authentication — FitTrackee 0.4.0 | ||||
|  documentation</title> | ||||
|     <link rel="stylesheet" href="../_static/bootstrap-sphinx.css" type="text/css" /> | ||||
|     <link rel="stylesheet" href="../_static/pygments.css" type="text/css" /> | ||||
|     <link rel="stylesheet" href="../_static/bootstrap-sphinx.css" type="text/css" /> | ||||
|     <link rel="stylesheet" type="text/css" href="../_static/custom.css" /> | ||||
|     <script id="documentation_options" data-url_root="../" src="../_static/documentation_options.js"></script> | ||||
|     <script src="../_static/jquery.js"></script> | ||||
|     <script src="../_static/underscore.js"></script> | ||||
|     <script src="../_static/doctools.js"></script> | ||||
|     <script src="../_static/language_data.js"></script> | ||||
|     <link rel="index" title="Index" href="../genindex.html" /> | ||||
|     <link rel="search" title="Search" href="../search.html" /> | ||||
|     <link rel="next" title="Configuration" href="configuration.html" /> | ||||
| @@ -394,8 +393,8 @@ | ||||
|     <span class="nt">"timezone"</span><span class="p">:</span> <span class="s2">"Europe/Paris"</span><span class="p">,</span> | ||||
|     <span class="nt">"total_distance"</span><span class="p">:</span> <span class="mf">67.895</span><span class="p">,</span> | ||||
|     <span class="nt">"total_duration"</span><span class="p">:</span> <span class="s2">"6:50:27"</span><span class="p">,</span> | ||||
|     <span class="nt">"username"</span><span class="p">:</span> <span class="s2">"sam"</span> | ||||
|     <span class="s2">"weekm"</span><span class="p">:</span> <span class="kc">true</span><span class="p">,</span> | ||||
|     <span class="nt">"username"</span><span class="p">:</span> <span class="nt">"sam"</span> | ||||
|     <span class="nt">"weekm"</span><span class="p">:</span> <span class="kc">true</span><span class="p">,</span> | ||||
|   <span class="p">},</span> | ||||
|   <span class="nt">"message"</span><span class="p">:</span> <span class="s2">"User profile updated."</span><span class="p">,</span> | ||||
|   <span class="nt">"status"</span><span class="p">:</span> <span class="s2">"success"</span> | ||||
| @@ -617,7 +616,7 @@ | ||||
|     </p> | ||||
|     <p> | ||||
|         © Copyright 2018 - 2020, SamR1.<br/> | ||||
|       Created using <a href="http://sphinx-doc.org/">Sphinx</a> 3.2.1.<br/> | ||||
|       Created using <a href="http://sphinx-doc.org/">Sphinx</a> 3.4.1.<br/> | ||||
|     </p> | ||||
|   </div> | ||||
| </footer> | ||||
|   | ||||
| @@ -6,14 +6,13 @@ | ||||
|     <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||||
|     <title>Configuration — FitTrackee 0.4.0 | ||||
|  documentation</title> | ||||
|     <link rel="stylesheet" href="../_static/bootstrap-sphinx.css" type="text/css" /> | ||||
|     <link rel="stylesheet" href="../_static/pygments.css" type="text/css" /> | ||||
|     <link rel="stylesheet" href="../_static/bootstrap-sphinx.css" type="text/css" /> | ||||
|     <link rel="stylesheet" type="text/css" href="../_static/custom.css" /> | ||||
|     <script id="documentation_options" data-url_root="../" src="../_static/documentation_options.js"></script> | ||||
|     <script src="../_static/jquery.js"></script> | ||||
|     <script src="../_static/underscore.js"></script> | ||||
|     <script src="../_static/doctools.js"></script> | ||||
|     <script src="../_static/language_data.js"></script> | ||||
|     <link rel="index" title="Index" href="../genindex.html" /> | ||||
|     <link rel="search" title="Search" href="../search.html" /> | ||||
|     <link rel="next" title="Records" href="records.html" /> | ||||
| @@ -269,7 +268,7 @@ | ||||
|     </p> | ||||
|     <p> | ||||
|         © Copyright 2018 - 2020, SamR1.<br/> | ||||
|       Created using <a href="http://sphinx-doc.org/">Sphinx</a> 3.2.1.<br/> | ||||
|       Created using <a href="http://sphinx-doc.org/">Sphinx</a> 3.4.1.<br/> | ||||
|     </p> | ||||
|   </div> | ||||
| </footer> | ||||
|   | ||||
| @@ -6,14 +6,13 @@ | ||||
|     <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||||
|     <title>API documentation — FitTrackee 0.4.0 | ||||
|  documentation</title> | ||||
|     <link rel="stylesheet" href="../_static/bootstrap-sphinx.css" type="text/css" /> | ||||
|     <link rel="stylesheet" href="../_static/pygments.css" type="text/css" /> | ||||
|     <link rel="stylesheet" href="../_static/bootstrap-sphinx.css" type="text/css" /> | ||||
|     <link rel="stylesheet" type="text/css" href="../_static/custom.css" /> | ||||
|     <script id="documentation_options" data-url_root="../" src="../_static/documentation_options.js"></script> | ||||
|     <script src="../_static/jquery.js"></script> | ||||
|     <script src="../_static/underscore.js"></script> | ||||
|     <script src="../_static/doctools.js"></script> | ||||
|     <script src="../_static/language_data.js"></script> | ||||
|     <link rel="index" title="Index" href="../genindex.html" /> | ||||
|     <link rel="search" title="Search" href="../search.html" /> | ||||
|     <link rel="next" title="Activities" href="activities.html" /> | ||||
| @@ -154,7 +153,7 @@ | ||||
|     </p> | ||||
|     <p> | ||||
|         © Copyright 2018 - 2020, SamR1.<br/> | ||||
|       Created using <a href="http://sphinx-doc.org/">Sphinx</a> 3.2.1.<br/> | ||||
|       Created using <a href="http://sphinx-doc.org/">Sphinx</a> 3.4.1.<br/> | ||||
|     </p> | ||||
|   </div> | ||||
| </footer> | ||||
|   | ||||
| @@ -6,14 +6,13 @@ | ||||
|     <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||||
|     <title>Records — FitTrackee 0.4.0 | ||||
|  documentation</title> | ||||
|     <link rel="stylesheet" href="../_static/bootstrap-sphinx.css" type="text/css" /> | ||||
|     <link rel="stylesheet" href="../_static/pygments.css" type="text/css" /> | ||||
|     <link rel="stylesheet" href="../_static/bootstrap-sphinx.css" type="text/css" /> | ||||
|     <link rel="stylesheet" type="text/css" href="../_static/custom.css" /> | ||||
|     <script id="documentation_options" data-url_root="../" src="../_static/documentation_options.js"></script> | ||||
|     <script src="../_static/jquery.js"></script> | ||||
|     <script src="../_static/underscore.js"></script> | ||||
|     <script src="../_static/doctools.js"></script> | ||||
|     <script src="../_static/language_data.js"></script> | ||||
|     <link rel="index" title="Index" href="../genindex.html" /> | ||||
|     <link rel="search" title="Search" href="../search.html" /> | ||||
|     <link rel="next" title="Sports" href="sports.html" /> | ||||
| @@ -251,7 +250,7 @@ | ||||
|     </p> | ||||
|     <p> | ||||
|         © Copyright 2018 - 2020, SamR1.<br/> | ||||
|       Created using <a href="http://sphinx-doc.org/">Sphinx</a> 3.2.1.<br/> | ||||
|       Created using <a href="http://sphinx-doc.org/">Sphinx</a> 3.4.1.<br/> | ||||
|     </p> | ||||
|   </div> | ||||
| </footer> | ||||
|   | ||||
| @@ -6,14 +6,13 @@ | ||||
|     <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||||
|     <title>Sports — FitTrackee 0.4.0 | ||||
|  documentation</title> | ||||
|     <link rel="stylesheet" href="../_static/bootstrap-sphinx.css" type="text/css" /> | ||||
|     <link rel="stylesheet" href="../_static/pygments.css" type="text/css" /> | ||||
|     <link rel="stylesheet" href="../_static/bootstrap-sphinx.css" type="text/css" /> | ||||
|     <link rel="stylesheet" type="text/css" href="../_static/custom.css" /> | ||||
|     <script id="documentation_options" data-url_root="../" src="../_static/documentation_options.js"></script> | ||||
|     <script src="../_static/jquery.js"></script> | ||||
|     <script src="../_static/underscore.js"></script> | ||||
|     <script src="../_static/doctools.js"></script> | ||||
|     <script src="../_static/language_data.js"></script> | ||||
|     <link rel="index" title="Index" href="../genindex.html" /> | ||||
|     <link rel="search" title="Search" href="../search.html" /> | ||||
|     <link rel="next" title="Statistics" href="stats.html" /> | ||||
| @@ -461,7 +460,7 @@ Authenticated user must be an admin</p> | ||||
|     </p> | ||||
|     <p> | ||||
|         © Copyright 2018 - 2020, SamR1.<br/> | ||||
|       Created using <a href="http://sphinx-doc.org/">Sphinx</a> 3.2.1.<br/> | ||||
|       Created using <a href="http://sphinx-doc.org/">Sphinx</a> 3.4.1.<br/> | ||||
|     </p> | ||||
|   </div> | ||||
| </footer> | ||||
|   | ||||
| @@ -6,14 +6,13 @@ | ||||
|     <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||||
|     <title>Statistics — FitTrackee 0.4.0 | ||||
|  documentation</title> | ||||
|     <link rel="stylesheet" href="../_static/bootstrap-sphinx.css" type="text/css" /> | ||||
|     <link rel="stylesheet" href="../_static/pygments.css" type="text/css" /> | ||||
|     <link rel="stylesheet" href="../_static/bootstrap-sphinx.css" type="text/css" /> | ||||
|     <link rel="stylesheet" type="text/css" href="../_static/custom.css" /> | ||||
|     <script id="documentation_options" data-url_root="../" src="../_static/documentation_options.js"></script> | ||||
|     <script src="../_static/jquery.js"></script> | ||||
|     <script src="../_static/underscore.js"></script> | ||||
|     <script src="../_static/doctools.js"></script> | ||||
|     <script src="../_static/language_data.js"></script> | ||||
|     <link rel="index" title="Index" href="../genindex.html" /> | ||||
|     <link rel="search" title="Search" href="../search.html" /> | ||||
|     <link rel="next" title="Users" href="users.html" /> | ||||
| @@ -399,7 +398,7 @@ | ||||
|     </p> | ||||
|     <p> | ||||
|         © Copyright 2018 - 2020, SamR1.<br/> | ||||
|       Created using <a href="http://sphinx-doc.org/">Sphinx</a> 3.2.1.<br/> | ||||
|       Created using <a href="http://sphinx-doc.org/">Sphinx</a> 3.4.1.<br/> | ||||
|     </p> | ||||
|   </div> | ||||
| </footer> | ||||
|   | ||||
| @@ -6,14 +6,13 @@ | ||||
|     <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||||
|     <title>Users — FitTrackee 0.4.0 | ||||
|  documentation</title> | ||||
|     <link rel="stylesheet" href="../_static/bootstrap-sphinx.css" type="text/css" /> | ||||
|     <link rel="stylesheet" href="../_static/pygments.css" type="text/css" /> | ||||
|     <link rel="stylesheet" href="../_static/bootstrap-sphinx.css" type="text/css" /> | ||||
|     <link rel="stylesheet" type="text/css" href="../_static/custom.css" /> | ||||
|     <script id="documentation_options" data-url_root="../" src="../_static/documentation_options.js"></script> | ||||
|     <script src="../_static/jquery.js"></script> | ||||
|     <script src="../_static/underscore.js"></script> | ||||
|     <script src="../_static/doctools.js"></script> | ||||
|     <script src="../_static/language_data.js"></script> | ||||
|     <link rel="index" title="Index" href="../genindex.html" /> | ||||
|     <link rel="search" title="Search" href="../search.html" /> | ||||
|     <link rel="next" title="Troubleshooting" href="../troubleshooting/index.html" /> | ||||
| @@ -491,7 +490,7 @@ one admin</p> | ||||
|     </p> | ||||
|     <p> | ||||
|         © Copyright 2018 - 2020, SamR1.<br/> | ||||
|       Created using <a href="http://sphinx-doc.org/">Sphinx</a> 3.2.1.<br/> | ||||
|       Created using <a href="http://sphinx-doc.org/">Sphinx</a> 3.4.1.<br/> | ||||
|     </p> | ||||
|   </div> | ||||
| </footer> | ||||
|   | ||||
| @@ -6,14 +6,13 @@ | ||||
|     <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||||
|     <title>Change log — FitTrackee 0.4.0 | ||||
|  documentation</title> | ||||
|     <link rel="stylesheet" href="_static/bootstrap-sphinx.css" type="text/css" /> | ||||
|     <link rel="stylesheet" href="_static/pygments.css" type="text/css" /> | ||||
|     <link rel="stylesheet" href="_static/bootstrap-sphinx.css" type="text/css" /> | ||||
|     <link rel="stylesheet" type="text/css" href="_static/custom.css" /> | ||||
|     <script id="documentation_options" data-url_root="./" src="_static/documentation_options.js"></script> | ||||
|     <script src="_static/jquery.js"></script> | ||||
|     <script src="_static/underscore.js"></script> | ||||
|     <script src="_static/doctools.js"></script> | ||||
|     <script src="_static/language_data.js"></script> | ||||
|     <link rel="index" title="Index" href="genindex.html" /> | ||||
|     <link rel="search" title="Search" href="search.html" /> | ||||
|     <link rel="prev" title="User" href="troubleshooting/user.html" /> | ||||
| @@ -439,7 +438,7 @@ add URL interceptors to simplify routes definition</p></li> | ||||
|     </p> | ||||
|     <p> | ||||
|         © Copyright 2018 - 2020, SamR1.<br/> | ||||
|       Created using <a href="http://sphinx-doc.org/">Sphinx</a> 3.2.1.<br/> | ||||
|       Created using <a href="http://sphinx-doc.org/">Sphinx</a> 3.4.1.<br/> | ||||
|     </p> | ||||
|   </div> | ||||
| </footer> | ||||
|   | ||||
| @@ -6,14 +6,13 @@ | ||||
|     <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||||
|     <title>Features — FitTrackee 0.4.0 | ||||
|  documentation</title> | ||||
|     <link rel="stylesheet" href="_static/bootstrap-sphinx.css" type="text/css" /> | ||||
|     <link rel="stylesheet" href="_static/pygments.css" type="text/css" /> | ||||
|     <link rel="stylesheet" href="_static/bootstrap-sphinx.css" type="text/css" /> | ||||
|     <link rel="stylesheet" type="text/css" href="_static/custom.css" /> | ||||
|     <script id="documentation_options" data-url_root="./" src="_static/documentation_options.js"></script> | ||||
|     <script src="_static/jquery.js"></script> | ||||
|     <script src="_static/underscore.js"></script> | ||||
|     <script src="_static/doctools.js"></script> | ||||
|     <script src="_static/language_data.js"></script> | ||||
|     <link rel="index" title="Index" href="genindex.html" /> | ||||
|     <link rel="search" title="Search" href="search.html" /> | ||||
|     <link rel="next" title="API documentation" href="api/index.html" /> | ||||
| @@ -264,7 +263,7 @@ | ||||
|     </p> | ||||
|     <p> | ||||
|         © Copyright 2018 - 2020, SamR1.<br/> | ||||
|       Created using <a href="http://sphinx-doc.org/">Sphinx</a> 3.2.1.<br/> | ||||
|       Created using <a href="http://sphinx-doc.org/">Sphinx</a> 3.4.1.<br/> | ||||
|     </p> | ||||
|   </div> | ||||
| </footer> | ||||
|   | ||||
| @@ -6,14 +6,13 @@ | ||||
|     <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||||
|     <title>Index — FitTrackee 0.4.0 | ||||
|  documentation</title> | ||||
|     <link rel="stylesheet" href="_static/bootstrap-sphinx.css" type="text/css" /> | ||||
|     <link rel="stylesheet" href="_static/pygments.css" type="text/css" /> | ||||
|     <link rel="stylesheet" href="_static/bootstrap-sphinx.css" type="text/css" /> | ||||
|     <link rel="stylesheet" type="text/css" href="_static/custom.css" /> | ||||
|     <script id="documentation_options" data-url_root="./" src="_static/documentation_options.js"></script> | ||||
|     <script src="_static/jquery.js"></script> | ||||
|     <script src="_static/underscore.js"></script> | ||||
|     <script src="_static/doctools.js"></script> | ||||
|     <script src="_static/language_data.js"></script> | ||||
|     <link rel="index" title="Index" href="#" /> | ||||
|     <link rel="search" title="Search" href="search.html" /> | ||||
| <meta charset='utf-8'> | ||||
| @@ -188,7 +187,7 @@ | ||||
|     </p> | ||||
|     <p> | ||||
|         © Copyright 2018 - 2020, SamR1.<br/> | ||||
|       Created using <a href="http://sphinx-doc.org/">Sphinx</a> 3.2.1.<br/> | ||||
|       Created using <a href="http://sphinx-doc.org/">Sphinx</a> 3.4.1.<br/> | ||||
|     </p> | ||||
|   </div> | ||||
| </footer> | ||||
|   | ||||
| @@ -6,14 +6,13 @@ | ||||
|     <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||||
|     <title>HTTP Routing Table — FitTrackee 0.4.0 | ||||
|  documentation</title> | ||||
|     <link rel="stylesheet" href="_static/bootstrap-sphinx.css" type="text/css" /> | ||||
|     <link rel="stylesheet" href="_static/pygments.css" type="text/css" /> | ||||
|     <link rel="stylesheet" href="_static/bootstrap-sphinx.css" type="text/css" /> | ||||
|     <link rel="stylesheet" type="text/css" href="_static/custom.css" /> | ||||
|     <script id="documentation_options" data-url_root="./" src="_static/documentation_options.js"></script> | ||||
|     <script src="_static/jquery.js"></script> | ||||
|     <script src="_static/underscore.js"></script> | ||||
|     <script src="_static/doctools.js"></script> | ||||
|     <script src="_static/language_data.js"></script> | ||||
|     <link rel="index" title="Index" href="genindex.html" /> | ||||
|     <link rel="search" title="Search" href="search.html" /> | ||||
|  | ||||
| @@ -321,7 +320,7 @@ | ||||
|     </p> | ||||
|     <p> | ||||
|         © Copyright 2018 - 2020, SamR1.<br/> | ||||
|       Created using <a href="http://sphinx-doc.org/">Sphinx</a> 3.2.1.<br/> | ||||
|       Created using <a href="http://sphinx-doc.org/">Sphinx</a> 3.4.1.<br/> | ||||
|     </p> | ||||
|   </div> | ||||
| </footer> | ||||
|   | ||||
| @@ -6,14 +6,13 @@ | ||||
|     <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||||
|     <title>FitTrackee — FitTrackee 0.4.0 | ||||
|  documentation</title> | ||||
|     <link rel="stylesheet" href="_static/bootstrap-sphinx.css" type="text/css" /> | ||||
|     <link rel="stylesheet" href="_static/pygments.css" type="text/css" /> | ||||
|     <link rel="stylesheet" href="_static/bootstrap-sphinx.css" type="text/css" /> | ||||
|     <link rel="stylesheet" type="text/css" href="_static/custom.css" /> | ||||
|     <script id="documentation_options" data-url_root="./" src="_static/documentation_options.js"></script> | ||||
|     <script src="_static/jquery.js"></script> | ||||
|     <script src="_static/underscore.js"></script> | ||||
|     <script src="_static/doctools.js"></script> | ||||
|     <script src="_static/language_data.js"></script> | ||||
|     <link rel="index" title="Index" href="genindex.html" /> | ||||
|     <link rel="search" title="Search" href="search.html" /> | ||||
|     <link rel="next" title="Installation" href="installation.html" /> | ||||
| @@ -216,7 +215,7 @@ Map</a>.</div> | ||||
|     </p> | ||||
|     <p> | ||||
|         © Copyright 2018 - 2020, SamR1.<br/> | ||||
|       Created using <a href="http://sphinx-doc.org/">Sphinx</a> 3.2.1.<br/> | ||||
|       Created using <a href="http://sphinx-doc.org/">Sphinx</a> 3.4.1.<br/> | ||||
|     </p> | ||||
|   </div> | ||||
| </footer> | ||||
|   | ||||
| @@ -6,14 +6,13 @@ | ||||
|     <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||||
|     <title>Installation — FitTrackee 0.4.0 | ||||
|  documentation</title> | ||||
|     <link rel="stylesheet" href="_static/bootstrap-sphinx.css" type="text/css" /> | ||||
|     <link rel="stylesheet" href="_static/pygments.css" type="text/css" /> | ||||
|     <link rel="stylesheet" href="_static/bootstrap-sphinx.css" type="text/css" /> | ||||
|     <link rel="stylesheet" type="text/css" href="_static/custom.css" /> | ||||
|     <script id="documentation_options" data-url_root="./" src="_static/documentation_options.js"></script> | ||||
|     <script src="_static/jquery.js"></script> | ||||
|     <script src="_static/underscore.js"></script> | ||||
|     <script src="_static/doctools.js"></script> | ||||
|     <script src="_static/language_data.js"></script> | ||||
|     <link rel="index" title="Index" href="genindex.html" /> | ||||
|     <link rel="search" title="Search" href="search.html" /> | ||||
|     <link rel="next" title="Features" href="features.html" /> | ||||
| @@ -915,7 +914,7 @@ server { | ||||
|     </p> | ||||
|     <p> | ||||
|         © Copyright 2018 - 2020, SamR1.<br/> | ||||
|       Created using <a href="http://sphinx-doc.org/">Sphinx</a> 3.2.1.<br/> | ||||
|       Created using <a href="http://sphinx-doc.org/">Sphinx</a> 3.4.1.<br/> | ||||
|     </p> | ||||
|   </div> | ||||
| </footer> | ||||
|   | ||||
| @@ -6,14 +6,13 @@ | ||||
|     <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||||
|     <title>Search — FitTrackee 0.4.0 | ||||
|  documentation</title> | ||||
|     <link rel="stylesheet" href="_static/bootstrap-sphinx.css" type="text/css" /> | ||||
|     <link rel="stylesheet" href="_static/pygments.css" type="text/css" /> | ||||
|     <link rel="stylesheet" href="_static/bootstrap-sphinx.css" type="text/css" /> | ||||
|     <link rel="stylesheet" type="text/css" href="_static/custom.css" /> | ||||
|     <script id="documentation_options" data-url_root="./" src="_static/documentation_options.js"></script> | ||||
|     <script src="_static/jquery.js"></script> | ||||
|     <script src="_static/underscore.js"></script> | ||||
|     <script src="_static/doctools.js"></script> | ||||
|     <script src="_static/language_data.js"></script> | ||||
|     <link rel="index" title="Index" href="genindex.html" /> | ||||
|     <link rel="search" title="Search" href="#" /> | ||||
|   <script type="text/javascript" src="_static/searchtools.js "></script> | ||||
| @@ -149,7 +148,7 @@ | ||||
|     </p> | ||||
|     <p> | ||||
|         © Copyright 2018 - 2020, SamR1.<br/> | ||||
|       Created using <a href="http://sphinx-doc.org/">Sphinx</a> 3.2.1.<br/> | ||||
|       Created using <a href="http://sphinx-doc.org/">Sphinx</a> 3.4.1.<br/> | ||||
|     </p> | ||||
|   </div> | ||||
| </footer> | ||||
|   | ||||
| @@ -6,14 +6,13 @@ | ||||
|     <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||||
|     <title>Administrator — FitTrackee 0.4.0 | ||||
|  documentation</title> | ||||
|     <link rel="stylesheet" href="../_static/bootstrap-sphinx.css" type="text/css" /> | ||||
|     <link rel="stylesheet" href="../_static/pygments.css" type="text/css" /> | ||||
|     <link rel="stylesheet" href="../_static/bootstrap-sphinx.css" type="text/css" /> | ||||
|     <link rel="stylesheet" type="text/css" href="../_static/custom.css" /> | ||||
|     <script id="documentation_options" data-url_root="../" src="../_static/documentation_options.js"></script> | ||||
|     <script src="../_static/jquery.js"></script> | ||||
|     <script src="../_static/underscore.js"></script> | ||||
|     <script src="../_static/doctools.js"></script> | ||||
|     <script src="../_static/language_data.js"></script> | ||||
|     <link rel="index" title="Index" href="../genindex.html" /> | ||||
|     <link rel="search" title="Search" href="../search.html" /> | ||||
|     <link rel="next" title="User" href="user.html" /> | ||||
| @@ -150,7 +149,7 @@ | ||||
|     </p> | ||||
|     <p> | ||||
|         © Copyright 2018 - 2020, SamR1.<br/> | ||||
|       Created using <a href="http://sphinx-doc.org/">Sphinx</a> 3.2.1.<br/> | ||||
|       Created using <a href="http://sphinx-doc.org/">Sphinx</a> 3.4.1.<br/> | ||||
|     </p> | ||||
|   </div> | ||||
| </footer> | ||||
|   | ||||
| @@ -6,14 +6,13 @@ | ||||
|     <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||||
|     <title>Troubleshooting — FitTrackee 0.4.0 | ||||
|  documentation</title> | ||||
|     <link rel="stylesheet" href="../_static/bootstrap-sphinx.css" type="text/css" /> | ||||
|     <link rel="stylesheet" href="../_static/pygments.css" type="text/css" /> | ||||
|     <link rel="stylesheet" href="../_static/bootstrap-sphinx.css" type="text/css" /> | ||||
|     <link rel="stylesheet" type="text/css" href="../_static/custom.css" /> | ||||
|     <script id="documentation_options" data-url_root="../" src="../_static/documentation_options.js"></script> | ||||
|     <script src="../_static/jquery.js"></script> | ||||
|     <script src="../_static/underscore.js"></script> | ||||
|     <script src="../_static/doctools.js"></script> | ||||
|     <script src="../_static/language_data.js"></script> | ||||
|     <link rel="index" title="Index" href="../genindex.html" /> | ||||
|     <link rel="search" title="Search" href="../search.html" /> | ||||
|     <link rel="next" title="Administrator" href="administrator.html" /> | ||||
| @@ -152,7 +151,7 @@ | ||||
|     </p> | ||||
|     <p> | ||||
|         © Copyright 2018 - 2020, SamR1.<br/> | ||||
|       Created using <a href="http://sphinx-doc.org/">Sphinx</a> 3.2.1.<br/> | ||||
|       Created using <a href="http://sphinx-doc.org/">Sphinx</a> 3.4.1.<br/> | ||||
|     </p> | ||||
|   </div> | ||||
| </footer> | ||||
|   | ||||
| @@ -6,14 +6,13 @@ | ||||
|     <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||||
|     <title>User — FitTrackee 0.4.0 | ||||
|  documentation</title> | ||||
|     <link rel="stylesheet" href="../_static/bootstrap-sphinx.css" type="text/css" /> | ||||
|     <link rel="stylesheet" href="../_static/pygments.css" type="text/css" /> | ||||
|     <link rel="stylesheet" href="../_static/bootstrap-sphinx.css" type="text/css" /> | ||||
|     <link rel="stylesheet" type="text/css" href="../_static/custom.css" /> | ||||
|     <script id="documentation_options" data-url_root="../" src="../_static/documentation_options.js"></script> | ||||
|     <script src="../_static/jquery.js"></script> | ||||
|     <script src="../_static/underscore.js"></script> | ||||
|     <script src="../_static/doctools.js"></script> | ||||
|     <script src="../_static/language_data.js"></script> | ||||
|     <link rel="index" title="Index" href="../genindex.html" /> | ||||
|     <link rel="search" title="Search" href="../search.html" /> | ||||
|     <link rel="next" title="Change log" href="../changelog.html" /> | ||||
| @@ -143,7 +142,7 @@ | ||||
|     </p> | ||||
|     <p> | ||||
|         © Copyright 2018 - 2020, SamR1.<br/> | ||||
|       Created using <a href="http://sphinx-doc.org/">Sphinx</a> 3.2.1.<br/> | ||||
|       Created using <a href="http://sphinx-doc.org/">Sphinx</a> 3.4.1.<br/> | ||||
|     </p> | ||||
|   </div> | ||||
| </footer> | ||||
|   | ||||
| @@ -20,7 +20,7 @@ sys.path.insert(0, os.path.abspath('../../fittrackee')) | ||||
|  | ||||
|  | ||||
| def setup(app): | ||||
|     app.add_stylesheet("custom.css") | ||||
|     app.add_css_file("custom.css") | ||||
|  | ||||
|  | ||||
| # -- Project information ----------------------------------------------------- | ||||
|   | ||||
							
								
								
									
										662
									
								
								poetry.lock
									
									
									
										generated
									
									
									
								
							
							
						
						
									
										662
									
								
								poetry.lock
									
									
									
										generated
									
									
									
								
							
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							| @@ -16,42 +16,43 @@ classifiers = [ | ||||
|     "Programming Language :: Python :: 3", | ||||
|     "Programming Language :: Python :: 3.7", | ||||
|     "Programming Language :: Python :: 3.8", | ||||
|     "Programming Language :: Python :: 3.9", | ||||
|     "Programming Language :: JavaScript" | ||||
| ] | ||||
| exclude = ["fittrackee/tests"] | ||||
|  | ||||
| [tool.poetry.dependencies] | ||||
| python = "^3.7" | ||||
| dramatiq = {extras = ["redis"], version = "^1.10.0"} | ||||
| flask = "^1.1" | ||||
| flask-migrate = "^2.5" | ||||
| flask-bcrypt = "^0.7.1" | ||||
| pyjwt = "^1.7" | ||||
| gpxpy = "=1.3.4" | ||||
| psycopg2-binary = "^2.8" | ||||
| staticmap = "^0.5.4" | ||||
| pytz = "^2020.1" | ||||
| python-forecastio = "^1.4" | ||||
| gunicorn = "^20.0" | ||||
| tqdm = "^4.48" | ||||
| humanize = "^2.5.0" | ||||
| dramatiq = {extras = ["redis"], version = "^1.9.0"} | ||||
| flask-dramatiq = "^0.6.0" | ||||
| flask-migrate = "^2.5" | ||||
| gpxpy = "=1.3.4" | ||||
| gunicorn = "^20.0" | ||||
| humanize = "^3.2.0" | ||||
| psycopg2-binary = "^2.8" | ||||
| pyjwt = "^1.7" | ||||
| python-forecastio = "^1.4" | ||||
| pytz = "^2020.5" | ||||
| staticmap = "^0.5.4" | ||||
| tqdm = "^4.55" | ||||
|  | ||||
| [tool.poetry.dev-dependencies] | ||||
| black = "^20.8b1" | ||||
| pytest = "^6.0" | ||||
| pytest-black = "^0.3.10" | ||||
| pytest-cov = "^2.10" | ||||
| pytest-isort = "^1.1" | ||||
| pytest-flake8 = "^1.0" | ||||
| pytest-runner = "^5.2" | ||||
| sphinx = "^3.2" | ||||
| sphinxcontrib-httpdomain = "^1.7" | ||||
| sphinx-bootstrap-theme = "^0.7.1" | ||||
| recommonmark = "^0.6.0" | ||||
| pyopenssl = "^19.0" | ||||
| freezegun = "^1.0.0" | ||||
| pytest-selenium = "^2.0.0" | ||||
| pyopenssl = "^20.0" | ||||
| pytest = "^6.2" | ||||
| pytest-black = "^0.3.12" | ||||
| pytest-cov = "^2.10" | ||||
| pytest-flake8 = "^1.0" | ||||
| pytest-isort = "^1.1" | ||||
| pytest-runner = "^5.2" | ||||
| pytest-selenium = "^2.0.1" | ||||
| recommonmark = "^0.7" | ||||
| sphinx = "^3.4" | ||||
| sphinx-bootstrap-theme = "^0.7.1" | ||||
| sphinxcontrib-httpdomain = "^1.7" | ||||
|  | ||||
| [tool.poetry.scripts] | ||||
| fittrackee = 'fittrackee.__main__:main' | ||||
|   | ||||
		Reference in New Issue
	
	Block a user