Revert "remove unused git folder"

This reverts commit 2620890ddb.
This commit is contained in:
crunk 2024-05-20 23:01:06 +02:00
parent 2620890ddb
commit 77238e687d
114 changed files with 3 additions and 8 deletions

0
LICENSE Executable file → Normal file
View File

0
README.md Executable file → Normal file
View File

0
__init.py__ Executable file → Normal file
View File

0
makefile Executable file → Normal file
View File

0
pyproject.toml Executable file → Normal file
View File

0
requirements.txt Executable file → Normal file
View File

0
setup.py Executable file → Normal file
View File

View File

0
verse/__init.py__ Executable file → Normal file
View File

0
verse/adminpage.py Executable file → Normal file
View File

0
verse/admintool.py Executable file → Normal file
View File

0
verse/app.py Executable file → Normal file
View File

0
verse/deploydb.py Executable file → Normal file
View File

0
verse/describer/describe_files.py Executable file → Normal file
View File

0
verse/describer/forms/describe_file_form.py Executable file → Normal file
View File

0
verse/describer/templates/describe_files/describe.html Executable file → Normal file
View File

0
verse/distribusikan/distribusikan.py Executable file → Normal file
View File

0
verse/distribusikan/distribusiselector.py Executable file → Normal file
View File

0
verse/distribusikan/distribusisinfo.py Executable file → Normal file
View File

0
verse/distribusikan/distribusiworkflow.py Executable file → Normal file
View File

0
verse/distribusikan/editor.py Executable file → Normal file
View File

View File

View File

0
verse/distribusikan/themeselector.py Executable file → Normal file
View File

0
verse/distribusikan/upload.py Executable file → Normal file
View File

0
verse/distribusikan/uploadpage.py Executable file → Normal file
View File

0
verse/file_crawler.py Executable file → Normal file
View File

0
verse/forms/admindistribusiform.py Executable file → Normal file
View File

0
verse/forms/adminuserform.py Executable file → Normal file
View File

0
verse/forms/distribusiform.py Executable file → Normal file
View File

0
verse/forms/editorform.py Executable file → Normal file
View File

0
verse/forms/forgotpasswordform.py Executable file → Normal file
View File

0
verse/forms/loginform.py Executable file → Normal file
View File

0
verse/forms/publicthemeform.py Executable file → Normal file
View File

0
verse/forms/registerform.py Executable file → Normal file
View File

0
verse/forms/resetpasswordform.py Executable file → Normal file
View File

0
verse/forms/selectorform.py Executable file → Normal file
View File

0
verse/forms/themeform.py Executable file → Normal file
View File

0
verse/forms/uploadform.py Executable file → Normal file
View File

0
verse/instance/.gitignore vendored Executable file → Normal file
View File

0
verse/migrations/README Executable file → Normal file
View File

0
verse/migrations/alembic.ini Executable file → Normal file
View File

0
verse/migrations/env.py Executable file → Normal file
View File

0
verse/migrations/script.py.mako Executable file → Normal file
View File

0
verse/models/distribusi_file_model.py Executable file → Normal file
View File

0
verse/models/distribusi_model.py Executable file → Normal file
View File

0
verse/models/user_model.py Executable file → Normal file
View File

0
verse/settings.toml Executable file → Normal file
View File

11
verse/start.py Executable file → Normal file
View File

@ -2,14 +2,8 @@
from datetime import timedelta
from flask import (
Blueprint,
redirect,
render_template,
send_from_directory,
session,
url_for,
)
from flask import (Blueprint, redirect, render_template, send_from_directory,
session, url_for)
from flask_login import current_user, login_required, logout_user
from flask_wtf.csrf import CSRFError
@ -37,6 +31,7 @@ APP.register_blueprint(forgot_password, url_prefix="/login/forgotpassword")
APP.register_blueprint(distribusikan)
@APP.before_request
def session_handler():
session.permanent = True

0
verse/stash/.gitignore vendored Executable file → Normal file
View File

0
verse/static/css/dropdown.css Executable file → Normal file
View File

0
verse/static/css/editor.css Executable file → Normal file
View File

0
verse/static/css/selector.css Executable file → Normal file
View File

0
verse/static/css/style.css Executable file → Normal file
View File

0
verse/static/icons/about.txt Executable file → Normal file
View File

0
verse/static/icons/android-chrome-192x192.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 5.4 KiB

After

Width:  |  Height:  |  Size: 5.4 KiB

0
verse/static/icons/android-chrome-512x512.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 12 KiB

0
verse/static/icons/apple-touch-icon.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 4.3 KiB

After

Width:  |  Height:  |  Size: 4.3 KiB

0
verse/static/icons/favicon-16x16.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 322 B

After

Width:  |  Height:  |  Size: 322 B

0
verse/static/icons/favicon-32x32.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 666 B

After

Width:  |  Height:  |  Size: 666 B

0
verse/static/icons/favicon.ico Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 15 KiB

0
verse/static/icons/site.webmanifest Executable file → Normal file
View File

0
verse/static/js/dropdown.js Executable file → Normal file
View File

0
verse/static/js/editorupdate.js Executable file → Normal file
View File

0
verse/static/js/script.js Executable file → Normal file
View File

0
verse/static/svg/arrow_1.svg Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 4.9 KiB

After

Width:  |  Height:  |  Size: 4.9 KiB

0
verse/static/svg/arrow_2.svg Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 4.1 KiB

After

Width:  |  Height:  |  Size: 4.1 KiB

0
verse/static/svg/arrow_3.svg Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 4.5 KiB

After

Width:  |  Height:  |  Size: 4.5 KiB

0
verse/statuspengguna/__init__.py Executable file → Normal file
View File

0
verse/statuspengguna/forgotpassword.py Executable file → Normal file
View File

0
verse/statuspengguna/helper.py Executable file → Normal file
View File

0
verse/statuspengguna/loginuser.py Executable file → Normal file
View File

0
verse/statuspengguna/registeruser.py Executable file → Normal file
View File

0
verse/statuspengguna/resetpassword.py Executable file → Normal file
View File

0
verse/statuspengguna/static/css/dropdown.css Executable file → Normal file
View File

0
verse/statuspengguna/static/css/editor.css Executable file → Normal file
View File

0
verse/statuspengguna/static/css/selector.css Executable file → Normal file
View File

0
verse/statuspengguna/static/css/style.css Executable file → Normal file
View File

0
verse/statuspengguna/static/icons/about.txt Executable file → Normal file
View File

View File

Before

Width:  |  Height:  |  Size: 5.4 KiB

After

Width:  |  Height:  |  Size: 5.4 KiB

View File

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 12 KiB

0
verse/statuspengguna/static/icons/apple-touch-icon.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 4.3 KiB

After

Width:  |  Height:  |  Size: 4.3 KiB

0
verse/statuspengguna/static/icons/favicon-16x16.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 322 B

After

Width:  |  Height:  |  Size: 322 B

0
verse/statuspengguna/static/icons/favicon-32x32.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 666 B

After

Width:  |  Height:  |  Size: 666 B

0
verse/statuspengguna/static/icons/favicon.ico Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 15 KiB

0
verse/statuspengguna/static/icons/site.webmanifest Executable file → Normal file
View File

0
verse/statuspengguna/static/js/dropdown.js Executable file → Normal file
View File

0
verse/statuspengguna/static/js/editorupdate.js Executable file → Normal file
View File

0
verse/statuspengguna/static/js/script.js Executable file → Normal file
View File

0
verse/statuspengguna/static/svg/arrow_1.svg Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 4.9 KiB

After

Width:  |  Height:  |  Size: 4.9 KiB

0
verse/statuspengguna/static/svg/arrow_2.svg Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 4.1 KiB

After

Width:  |  Height:  |  Size: 4.1 KiB

0
verse/statuspengguna/static/svg/arrow_3.svg Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 4.5 KiB

After

Width:  |  Height:  |  Size: 4.5 KiB

View File

View File

View File

Some files were not shown because too many files have changed in this diff Show More