hosthome 1.1.0

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 (47) hide show
  1. checksums.yaml +7 -0
  2. data/.gitattributes +8 -0
  3. data/.gitignore +127 -0
  4. data/LICENSE.md +674 -0
  5. data/README.md +23 -0
  6. data/main.py +3 -0
  7. data/src/__init__.py +0 -0
  8. data/src/app.py +128 -0
  9. data/src/auth.py +100 -0
  10. data/src/cli/archivo.txt +11 -0
  11. data/src/cli/ayuda.txt +7 -0
  12. data/src/cli/php/main.php +37 -0
  13. data/src/cli/ruby/mauhome/mauhome.rb +69 -0
  14. data/src/cli/ruby/mauhome.gemspec +22 -0
  15. data/src/data/README.md +13 -0
  16. data/src/data/users.json +3 -0
  17. data/src/static/css/auth.css +416 -0
  18. data/src/static/css/cuenta.css +84 -0
  19. data/src/static/css/style.css +377 -0
  20. data/src/static/css/utilities.css +232 -0
  21. data/src/static/images/auth/log.svg +1 -0
  22. data/src/static/images/auth/register.svg +1 -0
  23. data/src/static/images/cli.png +0 -0
  24. data/src/static/images/cloud.png +0 -0
  25. data/src/static/images/docs.png +0 -0
  26. data/src/static/images/favicon.png +0 -0
  27. data/src/static/images/logos/clojure.png +0 -0
  28. data/src/static/images/logos/csharp.png +0 -0
  29. data/src/static/images/logos/go.png +0 -0
  30. data/src/static/images/logos/node.png +0 -0
  31. data/src/static/images/logos/php.png +0 -0
  32. data/src/static/images/logos/python.png +0 -0
  33. data/src/static/images/logos/ruby.png +0 -0
  34. data/src/static/images/logos/scala.png +0 -0
  35. data/src/static/images/server.png +0 -0
  36. data/src/static/images/server2.png +0 -0
  37. data/src/static/images/server_secure.svg +1 -0
  38. data/src/static/js/auth.js +16 -0
  39. data/src/templates/README.md +3 -0
  40. data/src/templates/account.html +52 -0
  41. data/src/templates/auth.html +116 -0
  42. data/src/templates/docs.html +93 -0
  43. data/src/templates/extends/footer.html +22 -0
  44. data/src/templates/extends/navbar.html +17 -0
  45. data/src/templates/features.html +97 -0
  46. data/src/templates/index.html +144 -0
  47. metadata +86 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 9f47ddc2c4731df623a3c7d17f7df5c9c023a187134ee83fa9334364a5af527d
4
+ data.tar.gz: 66eaab5f49d2bfac153c679be555964d2b06ca48b9b3f326767caa0ccb1ae6d0
5
+ SHA512:
6
+ metadata.gz: dd04fd6dbea485f15e21600d1aa1a112d9705cd12075d968e0a7adc87204066c44cae7b2d9cfee97fbc76b0a887ce29c9d5187cc016dfdd715e7e9c80c2b5989
7
+ data.tar.gz: 17e82bf771c4a59bac10acc6133479192b92f727efd6c173382678868a3db76cfcdcfdb2480cc9a25f15b416f97060d30e5f7b569a0bc2d3012d9e5e854d2391
data/.gitattributes ADDED
@@ -0,0 +1,8 @@
1
+ # Auto detect text files and perform LF normalization
2
+ * text=auto
3
+ *.html linguist-vendored=true
4
+ **/static/css/utilities.css linguist-vendored=true
5
+ **/static/css/style.css linguist-vendored=true
6
+ **/static/css/auth.css linguist-vendored=true
7
+ *.rb linguist-language=Python
8
+ *.py linguist-language=Ruby
data/.gitignore ADDED
@@ -0,0 +1,127 @@
1
+ # Byte-compiled / optimized / DLL files
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+
6
+ # C extensions
7
+ *.so
8
+
9
+ # Distribution / packaging
10
+ .Python
11
+ build/
12
+ develop-eggs/
13
+ dist/
14
+ downloads/
15
+ eggs/
16
+ .eggs/
17
+ lib/
18
+ lib64/
19
+ parts/
20
+ sdist/
21
+ var/
22
+ wheels/
23
+ pip-wheel-metadata/
24
+ share/python-wheels/
25
+ *.egg-info/
26
+ .installed.cfg
27
+ *.egg
28
+ MANIFEST
29
+
30
+ **/hosthome-*.gem
31
+
32
+ # PyInstaller
33
+ # Usually these files are written by a python script from a template
34
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
35
+ *.manifest
36
+ *.spec
37
+
38
+ # Installer logs
39
+ pip-log.txt
40
+ pip-delete-this-directory.txt
41
+
42
+ # Unit test / coverage reports
43
+ htmlcov/
44
+ .tox/
45
+ .nox/
46
+ .coverage
47
+ .coverage.*
48
+ .cache
49
+ nosetests.xml
50
+ coverage.xml
51
+ *.cover
52
+ *.py,cover
53
+ .hypothesis/
54
+ .pytest_cache/
55
+
56
+ # Translations
57
+ *.mo
58
+ *.pot
59
+
60
+ # Django stuff:
61
+ *.log
62
+ local_settings.py
63
+ db.sqlite3
64
+ db.sqlite3-journal
65
+
66
+ # Flask stuff:
67
+ instance/
68
+ .webassets-cache
69
+
70
+ # Scrapy stuff:
71
+ .scrapy
72
+
73
+ # Sphinx documentation
74
+ docs/_build/
75
+
76
+ # PyBuilder
77
+ target/
78
+
79
+ # Jupyter Notebook
80
+ .ipynb_checkpoints
81
+
82
+ # IPython
83
+ profile_default/
84
+ ipython_config.py
85
+
86
+ # pyenv
87
+ .python-version
88
+
89
+ # pipenv
90
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
91
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
92
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
93
+ # install all needed dependencies.
94
+ #Pipfile.lock
95
+
96
+ # celery beat schedule file
97
+ celerybeat-schedule
98
+
99
+ # SageMath parsed files
100
+ *.sage.py
101
+
102
+ # Environments
103
+ .env
104
+ .venv
105
+ env/
106
+ venv/
107
+ ENV/
108
+ env.bak/
109
+ venv.bak/
110
+
111
+ # Spyder project settings
112
+ .spyderproject
113
+ .spyproject
114
+
115
+ # Rope project settings
116
+ .ropeproject
117
+
118
+ # mkdocs documentation
119
+ /site
120
+
121
+ # mypy
122
+ .mypy_cache/
123
+ .dmypy.json
124
+ dmypy.json
125
+
126
+ # Pyre type checker
127
+ .pyre/