From 6e6558d51aa6706ac3ffed6b47c2d0baab596375 Mon Sep 17 00:00:00 2001 From: pacnpal <183241239+pacnpal@users.noreply.github.com> Date: Fri, 6 Dec 2024 13:39:54 -0500 Subject: [PATCH] Remove . from version control --- .venv/bin/Activate.ps1 | 248 ----------------------------- .venv/bin/activate | 75 --------- .venv/bin/activate.csh | 27 ---- .venv/bin/activate.fish | 69 -------- .venv/bin/automat-visualize | 8 - .venv/bin/black | 8 - .venv/bin/blackd | 8 - .venv/bin/cftp | 8 - .venv/bin/ckeygen | 8 - .venv/bin/conch | 8 - .venv/bin/daphne | 8 - .venv/bin/django-admin | 8 - .venv/bin/dotenv | 8 - .venv/bin/flake8 | 8 - .venv/bin/mailmail | 8 - .venv/bin/normalizer | 8 - .venv/bin/pip | 8 - .venv/bin/pip3 | 8 - .venv/bin/py.test | 8 - .venv/bin/pycodestyle | 8 - .venv/bin/pyflakes | 8 - .venv/bin/pyhtmlizer | 8 - .venv/bin/pytest | 8 - .venv/bin/python | 1 - .venv/bin/python3 | 1 - .venv/bin/sqlformat | 8 - .venv/bin/tkconch | 8 - .venv/bin/trial | 8 - .venv/bin/twist | 8 - .venv/bin/twistd | 8 - .venv/bin/wamp | 8 - .venv/bin/xbrnetwork | 8 - .venv/bin/xbrnetwork-ui | 8 - .venv/lib64 | 1 - .venv/pyvenv.cfg | 5 - .venv/share/doc/jwcrypto/LICENSE | 165 ------------------- .venv/share/doc/jwcrypto/README.md | 48 ------ 37 files changed, 856 deletions(-) delete mode 100644 .venv/bin/Activate.ps1 delete mode 100644 .venv/bin/activate delete mode 100644 .venv/bin/activate.csh delete mode 100644 .venv/bin/activate.fish delete mode 100755 .venv/bin/automat-visualize delete mode 100755 .venv/bin/black delete mode 100755 .venv/bin/blackd delete mode 100755 .venv/bin/cftp delete mode 100755 .venv/bin/ckeygen delete mode 100755 .venv/bin/conch delete mode 100755 .venv/bin/daphne delete mode 100755 .venv/bin/django-admin delete mode 100755 .venv/bin/dotenv delete mode 100755 .venv/bin/flake8 delete mode 100755 .venv/bin/mailmail delete mode 100755 .venv/bin/normalizer delete mode 100755 .venv/bin/pip delete mode 100755 .venv/bin/pip3 delete mode 100755 .venv/bin/py.test delete mode 100755 .venv/bin/pycodestyle delete mode 100755 .venv/bin/pyflakes delete mode 100755 .venv/bin/pyhtmlizer delete mode 100755 .venv/bin/pytest delete mode 120000 .venv/bin/python delete mode 120000 .venv/bin/python3 delete mode 100755 .venv/bin/sqlformat delete mode 100755 .venv/bin/tkconch delete mode 100755 .venv/bin/trial delete mode 100755 .venv/bin/twist delete mode 100755 .venv/bin/twistd delete mode 100755 .venv/bin/wamp delete mode 100755 .venv/bin/xbrnetwork delete mode 100755 .venv/bin/xbrnetwork-ui delete mode 120000 .venv/lib64 delete mode 100644 .venv/pyvenv.cfg delete mode 100644 .venv/share/doc/jwcrypto/LICENSE delete mode 100644 .venv/share/doc/jwcrypto/README.md diff --git a/.venv/bin/Activate.ps1 b/.venv/bin/Activate.ps1 deleted file mode 100644 index 16ba5290..00000000 --- a/.venv/bin/Activate.ps1 +++ /dev/null @@ -1,248 +0,0 @@ -<# -.Synopsis -Activate a Python virtual environment for the current PowerShell session. - -.Description -Pushes the python executable for a virtual environment to the front of the -$Env:PATH environment variable and sets the prompt to signify that you are -in a Python virtual environment. Makes use of the command line switches as -well as the `pyvenv.cfg` file values present in the virtual environment. - -.Parameter VenvDir -Path to the directory that contains the virtual environment to activate. The -default value for this is the parent of the directory that the Activate.ps1 -script is located within. - -.Parameter Prompt -The prompt prefix to display when this virtual environment is activated. By -default, this prompt is the name of the virtual environment folder (VenvDir) -surrounded by parentheses and followed by a single space (ie. '(.venv) '). - -.Example -Activate.ps1 -Activates the Python virtual environment that contains the Activate.ps1 script. - -.Example -Activate.ps1 -Verbose -Activates the Python virtual environment that contains the Activate.ps1 script, -and shows extra information about the activation as it executes. - -.Example -Activate.ps1 -VenvDir C:\Users\MyUser\Common\.venv -Activates the Python virtual environment located in the specified location. - -.Example -Activate.ps1 -Prompt "MyPython" -Activates the Python virtual environment that contains the Activate.ps1 script, -and prefixes the current prompt with the specified string (surrounded in -parentheses) while the virtual environment is active. - -.Notes -On Windows, it may be required to enable this Activate.ps1 script by setting the -execution policy for the user. You can do this by issuing the following PowerShell -command: - -PS C:\> Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser - -For more information on Execution Policies: -https://go.microsoft.com/fwlink/?LinkID=135170 - -#> -Param( - [Parameter(Mandatory = $false)] - [String] - $VenvDir, - [Parameter(Mandatory = $false)] - [String] - $Prompt -) - -<# Function declarations --------------------------------------------------- #> - -<# -.Synopsis -Remove all shell session elements added by the Activate script, including the -addition of the virtual environment's Python executable from the beginning of -the PATH variable. - -.Parameter NonDestructive -If present, do not remove this function from the global namespace for the -session. - -#> -function global:deactivate ([switch]$NonDestructive) { - # Revert to original values - - # The prior prompt: - if (Test-Path -Path Function:_OLD_VIRTUAL_PROMPT) { - Copy-Item -Path Function:_OLD_VIRTUAL_PROMPT -Destination Function:prompt - Remove-Item -Path Function:_OLD_VIRTUAL_PROMPT - } - - # The prior PYTHONHOME: - if (Test-Path -Path Env:_OLD_VIRTUAL_PYTHONHOME) { - Copy-Item -Path Env:_OLD_VIRTUAL_PYTHONHOME -Destination Env:PYTHONHOME - Remove-Item -Path Env:_OLD_VIRTUAL_PYTHONHOME - } - - # The prior PATH: - if (Test-Path -Path Env:_OLD_VIRTUAL_PATH) { - Copy-Item -Path Env:_OLD_VIRTUAL_PATH -Destination Env:PATH - Remove-Item -Path Env:_OLD_VIRTUAL_PATH - } - - # Just remove the VIRTUAL_ENV altogether: - if (Test-Path -Path Env:VIRTUAL_ENV) { - Remove-Item -Path env:VIRTUAL_ENV - } - - # Just remove VIRTUAL_ENV_PROMPT altogether. - if (Test-Path -Path Env:VIRTUAL_ENV_PROMPT) { - Remove-Item -Path env:VIRTUAL_ENV_PROMPT - } - - # Just remove the _PYTHON_VENV_PROMPT_PREFIX altogether: - if (Get-Variable -Name "_PYTHON_VENV_PROMPT_PREFIX" -ErrorAction SilentlyContinue) { - Remove-Variable -Name _PYTHON_VENV_PROMPT_PREFIX -Scope Global -Force - } - - # Leave deactivate function in the global namespace if requested: - if (-not $NonDestructive) { - Remove-Item -Path function:deactivate - } -} - -<# -.Description -Get-PyVenvConfig parses the values from the pyvenv.cfg file located in the -given folder, and returns them in a map. - -For each line in the pyvenv.cfg file, if that line can be parsed into exactly -two strings separated by `=` (with any amount of whitespace surrounding the =) -then it is considered a `key = value` line. The left hand string is the key, -the right hand is the value. - -If the value starts with a `'` or a `"` then the first and last character is -stripped from the value before being captured. - -.Parameter ConfigDir -Path to the directory that contains the `pyvenv.cfg` file. -#> -function Get-PyVenvConfig( - [String] - $ConfigDir -) { - Write-Verbose "Given ConfigDir=$ConfigDir, obtain values in pyvenv.cfg" - - # Ensure the file exists, and issue a warning if it doesn't (but still allow the function to continue). - $pyvenvConfigPath = Join-Path -Resolve -Path $ConfigDir -ChildPath 'pyvenv.cfg' -ErrorAction Continue - - # An empty map will be returned if no config file is found. - $pyvenvConfig = @{ } - - if ($pyvenvConfigPath) { - - Write-Verbose "File exists, parse `key = value` lines" - $pyvenvConfigContent = Get-Content -Path $pyvenvConfigPath - - $pyvenvConfigContent | ForEach-Object { - $keyval = $PSItem -split "\s*=\s*", 2 - if ($keyval[0] -and $keyval[1]) { - $val = $keyval[1] - - # Remove extraneous quotations around a string value. - if ("'""".Contains($val.Substring(0, 1))) { - $val = $val.Substring(1, $val.Length - 2) - } - - $pyvenvConfig[$keyval[0]] = $val - Write-Verbose "Adding Key: '$($keyval[0])'='$val'" - } - } - } - return $pyvenvConfig -} - - -<# Begin Activate script --------------------------------------------------- #> - -# Determine the containing directory of this script -$VenvExecPath = Split-Path -Parent $MyInvocation.MyCommand.Definition -$VenvExecDir = Get-Item -Path $VenvExecPath - -Write-Verbose "Activation script is located in path: '$VenvExecPath'" -Write-Verbose "VenvExecDir Fullname: '$($VenvExecDir.FullName)" -Write-Verbose "VenvExecDir Name: '$($VenvExecDir.Name)" - -# Set values required in priority: CmdLine, ConfigFile, Default -# First, get the location of the virtual environment, it might not be -# VenvExecDir if specified on the command line. -if ($VenvDir) { - Write-Verbose "VenvDir given as parameter, using '$VenvDir' to determine values" -} -else { - Write-Verbose "VenvDir not given as a parameter, using parent directory name as VenvDir." - $VenvDir = $VenvExecDir.Parent.FullName.TrimEnd("\\/") - Write-Verbose "VenvDir=$VenvDir" -} - -# Next, read the `pyvenv.cfg` file to determine any required value such -# as `prompt`. -$pyvenvCfg = Get-PyVenvConfig -ConfigDir $VenvDir - -# Next, set the prompt from the command line, or the config file, or -# just use the name of the virtual environment folder. -if ($Prompt) { - Write-Verbose "Prompt specified as argument, using '$Prompt'" -} -else { - Write-Verbose "Prompt not specified as argument to script, checking pyvenv.cfg value" - if ($pyvenvCfg -and $pyvenvCfg['prompt']) { - Write-Verbose " Setting based on value in pyvenv.cfg='$($pyvenvCfg['prompt'])'" - $Prompt = $pyvenvCfg['prompt']; - } - else { - Write-Verbose " Setting prompt based on parent's directory's name. (Is the directory name passed to venv module when creating the virtual environment)" - Write-Verbose " Got leaf-name of $VenvDir='$(Split-Path -Path $venvDir -Leaf)'" - $Prompt = Split-Path -Path $venvDir -Leaf - } -} - -Write-Verbose "Prompt = '$Prompt'" -Write-Verbose "VenvDir='$VenvDir'" - -# Deactivate any currently active virtual environment, but leave the -# deactivate function in place. -deactivate -nondestructive - -# Now set the environment variable VIRTUAL_ENV, used by many tools to determine -# that there is an activated venv. -$env:VIRTUAL_ENV = $VenvDir - -$env:VIRTUAL_ENV_PROMPT = $Prompt - -if (-not $Env:VIRTUAL_ENV_DISABLE_PROMPT) { - - Write-Verbose "Setting prompt to '$Prompt'" - - # Set the prompt to include the env name - # Make sure _OLD_VIRTUAL_PROMPT is global - function global:_OLD_VIRTUAL_PROMPT { "" } - Copy-Item -Path function:prompt -Destination function:_OLD_VIRTUAL_PROMPT - New-Variable -Name _PYTHON_VENV_PROMPT_PREFIX -Description "Python virtual environment prompt prefix" -Scope Global -Option ReadOnly -Visibility Public -Value $Prompt - - function global:prompt { - Write-Host -NoNewline -ForegroundColor Green "($_PYTHON_VENV_PROMPT_PREFIX) " - _OLD_VIRTUAL_PROMPT - } -} - -# Clear PYTHONHOME -if (Test-Path -Path Env:PYTHONHOME) { - Copy-Item -Path Env:PYTHONHOME -Destination Env:_OLD_VIRTUAL_PYTHONHOME - Remove-Item -Path Env:PYTHONHOME -} - -# Add the venv to the PATH -Copy-Item -Path Env:PATH -Destination Env:_OLD_VIRTUAL_PATH -$Env:PATH = "$VenvExecDir$([System.IO.Path]::PathSeparator)$Env:PATH" diff --git a/.venv/bin/activate b/.venv/bin/activate deleted file mode 100644 index 64a6ee23..00000000 --- a/.venv/bin/activate +++ /dev/null @@ -1,75 +0,0 @@ -# This file must be used with "source bin/activate" *from bash* -# You cannot run it directly - -deactivate () { - # reset old environment variables - if [ -n "${_OLD_VIRTUAL_PATH:-}" ] ; then - PATH="${_OLD_VIRTUAL_PATH:-}" - export PATH - unset _OLD_VIRTUAL_PATH - fi - if [ -n "${_OLD_VIRTUAL_PYTHONHOME:-}" ] ; then - PYTHONHOME="${_OLD_VIRTUAL_PYTHONHOME:-}" - export PYTHONHOME - unset _OLD_VIRTUAL_PYTHONHOME - fi - - # Call hash to forget past commands. Without forgetting - # past commands the $PATH changes we made may not be respected - hash -r 2> /dev/null - - if [ -n "${_OLD_VIRTUAL_PS1:-}" ] ; then - PS1="${_OLD_VIRTUAL_PS1:-}" - export PS1 - unset _OLD_VIRTUAL_PS1 - fi - - unset VIRTUAL_ENV - unset VIRTUAL_ENV_PROMPT - if [ ! "${1:-}" = "nondestructive" ] ; then - # Self destruct! - unset -f deactivate - fi -} - -# unset irrelevant variables -deactivate nondestructive - -# on Windows, a path can contain colons and backslashes and has to be converted: -case "$(uname)" in - CYGWIN*|MSYS*) - # transform D:\path\to\venv to /d/path/to/venv on MSYS - # and to /cygdrive/d/path/to/venv on Cygwin - VIRTUAL_ENV=$(cygpath "/home/pac/thrillwiki/thrillwiki_django_no_react/.venv") - export VIRTUAL_ENV - ;; - *) - # use the path as-is - export VIRTUAL_ENV="/home/pac/thrillwiki/thrillwiki_django_no_react/.venv" - ;; -esac - -_OLD_VIRTUAL_PATH="$PATH" -PATH="$VIRTUAL_ENV/bin:$PATH" -export PATH - -VIRTUAL_ENV_PROMPT=".venv" -export VIRTUAL_ENV_PROMPT - -# unset PYTHONHOME if set -# this will fail if PYTHONHOME is set to the empty string (which is bad anyway) -# could use `if (set -u; : $PYTHONHOME) ;` in bash -if [ -n "${PYTHONHOME:-}" ] ; then - _OLD_VIRTUAL_PYTHONHOME="${PYTHONHOME:-}" - unset PYTHONHOME -fi - -if [ -z "${VIRTUAL_ENV_DISABLE_PROMPT:-}" ] ; then - _OLD_VIRTUAL_PS1="${PS1:-}" - PS1="(.venv) ${PS1:-}" - export PS1 -fi - -# Call hash to forget past commands. Without forgetting -# past commands the $PATH changes we made may not be respected -hash -r 2> /dev/null diff --git a/.venv/bin/activate.csh b/.venv/bin/activate.csh deleted file mode 100644 index ef1c2be2..00000000 --- a/.venv/bin/activate.csh +++ /dev/null @@ -1,27 +0,0 @@ -# This file must be used with "source bin/activate.csh" *from csh*. -# You cannot run it directly. - -# Created by Davide Di Blasi . -# Ported to Python 3.3 venv by Andrew Svetlov - -alias deactivate 'test $?_OLD_VIRTUAL_PATH != 0 && setenv PATH "$_OLD_VIRTUAL_PATH" && unset _OLD_VIRTUAL_PATH; rehash; test $?_OLD_VIRTUAL_PROMPT != 0 && set prompt="$_OLD_VIRTUAL_PROMPT" && unset _OLD_VIRTUAL_PROMPT; unsetenv VIRTUAL_ENV; unsetenv VIRTUAL_ENV_PROMPT; test "\!:*" != "nondestructive" && unalias deactivate' - -# Unset irrelevant variables. -deactivate nondestructive - -setenv VIRTUAL_ENV "/home/pac/thrillwiki/thrillwiki_django_no_react/.venv" - -set _OLD_VIRTUAL_PATH="$PATH" -setenv PATH "$VIRTUAL_ENV/bin:$PATH" -setenv VIRTUAL_ENV_PROMPT ".venv" - - -set _OLD_VIRTUAL_PROMPT="$prompt" - -if (! "$?VIRTUAL_ENV_DISABLE_PROMPT") then - set prompt = "(.venv) $prompt" -endif - -alias pydoc python -m pydoc - -rehash diff --git a/.venv/bin/activate.fish b/.venv/bin/activate.fish deleted file mode 100644 index d4ffef16..00000000 --- a/.venv/bin/activate.fish +++ /dev/null @@ -1,69 +0,0 @@ -# This file must be used with "source /bin/activate.fish" *from fish* -# (https://fishshell.com/). You cannot run it directly. - -function deactivate -d "Exit virtual environment and return to normal shell environment" - # reset old environment variables - if test -n "$_OLD_VIRTUAL_PATH" - set -gx PATH $_OLD_VIRTUAL_PATH - set -e _OLD_VIRTUAL_PATH - end - if test -n "$_OLD_VIRTUAL_PYTHONHOME" - set -gx PYTHONHOME $_OLD_VIRTUAL_PYTHONHOME - set -e _OLD_VIRTUAL_PYTHONHOME - end - - if test -n "$_OLD_FISH_PROMPT_OVERRIDE" - set -e _OLD_FISH_PROMPT_OVERRIDE - # prevents error when using nested fish instances (Issue #93858) - if functions -q _old_fish_prompt - functions -e fish_prompt - functions -c _old_fish_prompt fish_prompt - functions -e _old_fish_prompt - end - end - - set -e VIRTUAL_ENV - set -e VIRTUAL_ENV_PROMPT - if test "$argv[1]" != "nondestructive" - # Self-destruct! - functions -e deactivate - end -end - -# Unset irrelevant variables. -deactivate nondestructive - -set -gx VIRTUAL_ENV "/home/pac/thrillwiki/thrillwiki_django_no_react/.venv" - -set -gx _OLD_VIRTUAL_PATH $PATH -set -gx PATH "$VIRTUAL_ENV/bin" $PATH -set -gx VIRTUAL_ENV_PROMPT ".venv" - -# Unset PYTHONHOME if set. -if set -q PYTHONHOME - set -gx _OLD_VIRTUAL_PYTHONHOME $PYTHONHOME - set -e PYTHONHOME -end - -if test -z "$VIRTUAL_ENV_DISABLE_PROMPT" - # fish uses a function instead of an env var to generate the prompt. - - # Save the current fish_prompt function as the function _old_fish_prompt. - functions -c fish_prompt _old_fish_prompt - - # With the original prompt function renamed, we can override with our own. - function fish_prompt - # Save the return status of the last command. - set -l old_status $status - - # Output the venv prompt; color taken from the blue of the Python logo. - printf "%s(%s)%s " (set_color 4B8BBE) ".venv" (set_color normal) - - # Restore the return status of the previous command. - echo "exit $old_status" | . - # Output the original/"old" prompt. - _old_fish_prompt - end - - set -gx _OLD_FISH_PROMPT_OVERRIDE "$VIRTUAL_ENV" -end diff --git a/.venv/bin/automat-visualize b/.venv/bin/automat-visualize deleted file mode 100755 index d4f2efcc..00000000 --- a/.venv/bin/automat-visualize +++ /dev/null @@ -1,8 +0,0 @@ -#!/home/pac/thrillwiki/thrillwiki_django_no_react/.venv/bin/python -# -*- coding: utf-8 -*- -import re -import sys -from automat._visualize import tool -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) - sys.exit(tool()) diff --git a/.venv/bin/black b/.venv/bin/black deleted file mode 100755 index 6163fbbc..00000000 --- a/.venv/bin/black +++ /dev/null @@ -1,8 +0,0 @@ -#!/home/pac/thrillwiki/thrillwiki_django_no_react/.venv/bin/python -# -*- coding: utf-8 -*- -import re -import sys -from black import patched_main -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) - sys.exit(patched_main()) diff --git a/.venv/bin/blackd b/.venv/bin/blackd deleted file mode 100755 index 4477c7c1..00000000 --- a/.venv/bin/blackd +++ /dev/null @@ -1,8 +0,0 @@ -#!/home/pac/thrillwiki/thrillwiki_django_no_react/.venv/bin/python -# -*- coding: utf-8 -*- -import re -import sys -from blackd import patched_main -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) - sys.exit(patched_main()) diff --git a/.venv/bin/cftp b/.venv/bin/cftp deleted file mode 100755 index 953a3397..00000000 --- a/.venv/bin/cftp +++ /dev/null @@ -1,8 +0,0 @@ -#!/home/pac/thrillwiki/thrillwiki_django_no_react/.venv/bin/python -# -*- coding: utf-8 -*- -import re -import sys -from twisted.conch.scripts.cftp import run -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) - sys.exit(run()) diff --git a/.venv/bin/ckeygen b/.venv/bin/ckeygen deleted file mode 100755 index 598f1189..00000000 --- a/.venv/bin/ckeygen +++ /dev/null @@ -1,8 +0,0 @@ -#!/home/pac/thrillwiki/thrillwiki_django_no_react/.venv/bin/python -# -*- coding: utf-8 -*- -import re -import sys -from twisted.conch.scripts.ckeygen import run -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) - sys.exit(run()) diff --git a/.venv/bin/conch b/.venv/bin/conch deleted file mode 100755 index 059c4a15..00000000 --- a/.venv/bin/conch +++ /dev/null @@ -1,8 +0,0 @@ -#!/home/pac/thrillwiki/thrillwiki_django_no_react/.venv/bin/python -# -*- coding: utf-8 -*- -import re -import sys -from twisted.conch.scripts.conch import run -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) - sys.exit(run()) diff --git a/.venv/bin/daphne b/.venv/bin/daphne deleted file mode 100755 index e9c88121..00000000 --- a/.venv/bin/daphne +++ /dev/null @@ -1,8 +0,0 @@ -#!/home/pac/thrillwiki/thrillwiki_django_no_react/.venv/bin/python -# -*- coding: utf-8 -*- -import re -import sys -from daphne.cli import CommandLineInterface -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) - sys.exit(CommandLineInterface.entrypoint()) diff --git a/.venv/bin/django-admin b/.venv/bin/django-admin deleted file mode 100755 index 8b5a451a..00000000 --- a/.venv/bin/django-admin +++ /dev/null @@ -1,8 +0,0 @@ -#!/home/pac/thrillwiki/thrillwiki_django_no_react/.venv/bin/python -# -*- coding: utf-8 -*- -import re -import sys -from django.core.management import execute_from_command_line -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) - sys.exit(execute_from_command_line()) diff --git a/.venv/bin/dotenv b/.venv/bin/dotenv deleted file mode 100755 index 34aa6ea0..00000000 --- a/.venv/bin/dotenv +++ /dev/null @@ -1,8 +0,0 @@ -#!/home/pac/thrillwiki/thrillwiki_django_no_react/.venv/bin/python -# -*- coding: utf-8 -*- -import re -import sys -from dotenv.__main__ import cli -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) - sys.exit(cli()) diff --git a/.venv/bin/flake8 b/.venv/bin/flake8 deleted file mode 100755 index cf96af53..00000000 --- a/.venv/bin/flake8 +++ /dev/null @@ -1,8 +0,0 @@ -#!/home/pac/thrillwiki/thrillwiki_django_no_react/.venv/bin/python -# -*- coding: utf-8 -*- -import re -import sys -from flake8.main.cli import main -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) - sys.exit(main()) diff --git a/.venv/bin/mailmail b/.venv/bin/mailmail deleted file mode 100755 index 922bdbfc..00000000 --- a/.venv/bin/mailmail +++ /dev/null @@ -1,8 +0,0 @@ -#!/home/pac/thrillwiki/thrillwiki_django_no_react/.venv/bin/python -# -*- coding: utf-8 -*- -import re -import sys -from twisted.mail.scripts.mailmail import run -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) - sys.exit(run()) diff --git a/.venv/bin/normalizer b/.venv/bin/normalizer deleted file mode 100755 index 6d1bd4bb..00000000 --- a/.venv/bin/normalizer +++ /dev/null @@ -1,8 +0,0 @@ -#!/home/pac/thrillwiki/thrillwiki_django_no_react/.venv/bin/python -# -*- coding: utf-8 -*- -import re -import sys -from charset_normalizer.cli import cli_detect -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) - sys.exit(cli_detect()) diff --git a/.venv/bin/pip b/.venv/bin/pip deleted file mode 100755 index 22330473..00000000 --- a/.venv/bin/pip +++ /dev/null @@ -1,8 +0,0 @@ -#!/home/pac/thrillwiki/thrillwiki_django_no_react/.venv/bin/python -# -*- coding: utf-8 -*- -import re -import sys -from pip._internal.cli.main import main -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) - sys.exit(main()) diff --git a/.venv/bin/pip3 b/.venv/bin/pip3 deleted file mode 100755 index 22330473..00000000 --- a/.venv/bin/pip3 +++ /dev/null @@ -1,8 +0,0 @@ -#!/home/pac/thrillwiki/thrillwiki_django_no_react/.venv/bin/python -# -*- coding: utf-8 -*- -import re -import sys -from pip._internal.cli.main import main -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) - sys.exit(main()) diff --git a/.venv/bin/py.test b/.venv/bin/py.test deleted file mode 100755 index 0c4c42b6..00000000 --- a/.venv/bin/py.test +++ /dev/null @@ -1,8 +0,0 @@ -#!/home/pac/thrillwiki/thrillwiki_django_no_react/.venv/bin/python -# -*- coding: utf-8 -*- -import re -import sys -from pytest import console_main -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) - sys.exit(console_main()) diff --git a/.venv/bin/pycodestyle b/.venv/bin/pycodestyle deleted file mode 100755 index 2f8b55ed..00000000 --- a/.venv/bin/pycodestyle +++ /dev/null @@ -1,8 +0,0 @@ -#!/home/pac/thrillwiki/thrillwiki_django_no_react/.venv/bin/python -# -*- coding: utf-8 -*- -import re -import sys -from pycodestyle import _main -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) - sys.exit(_main()) diff --git a/.venv/bin/pyflakes b/.venv/bin/pyflakes deleted file mode 100755 index e1fe427a..00000000 --- a/.venv/bin/pyflakes +++ /dev/null @@ -1,8 +0,0 @@ -#!/home/pac/thrillwiki/thrillwiki_django_no_react/.venv/bin/python -# -*- coding: utf-8 -*- -import re -import sys -from pyflakes.api import main -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) - sys.exit(main()) diff --git a/.venv/bin/pyhtmlizer b/.venv/bin/pyhtmlizer deleted file mode 100755 index dba8e7ee..00000000 --- a/.venv/bin/pyhtmlizer +++ /dev/null @@ -1,8 +0,0 @@ -#!/home/pac/thrillwiki/thrillwiki_django_no_react/.venv/bin/python -# -*- coding: utf-8 -*- -import re -import sys -from twisted.scripts.htmlizer import run -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) - sys.exit(run()) diff --git a/.venv/bin/pytest b/.venv/bin/pytest deleted file mode 100755 index 0c4c42b6..00000000 --- a/.venv/bin/pytest +++ /dev/null @@ -1,8 +0,0 @@ -#!/home/pac/thrillwiki/thrillwiki_django_no_react/.venv/bin/python -# -*- coding: utf-8 -*- -import re -import sys -from pytest import console_main -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) - sys.exit(console_main()) diff --git a/.venv/bin/python b/.venv/bin/python deleted file mode 120000 index 1df9172b..00000000 --- a/.venv/bin/python +++ /dev/null @@ -1 +0,0 @@ -/usr/local/bin/python \ No newline at end of file diff --git a/.venv/bin/python3 b/.venv/bin/python3 deleted file mode 120000 index d8654aa0..00000000 --- a/.venv/bin/python3 +++ /dev/null @@ -1 +0,0 @@ -python \ No newline at end of file diff --git a/.venv/bin/sqlformat b/.venv/bin/sqlformat deleted file mode 100755 index 2694cbf7..00000000 --- a/.venv/bin/sqlformat +++ /dev/null @@ -1,8 +0,0 @@ -#!/home/pac/thrillwiki/thrillwiki_django_no_react/.venv/bin/python -# -*- coding: utf-8 -*- -import re -import sys -from sqlparse.__main__ import main -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) - sys.exit(main()) diff --git a/.venv/bin/tkconch b/.venv/bin/tkconch deleted file mode 100755 index e0720902..00000000 --- a/.venv/bin/tkconch +++ /dev/null @@ -1,8 +0,0 @@ -#!/home/pac/thrillwiki/thrillwiki_django_no_react/.venv/bin/python -# -*- coding: utf-8 -*- -import re -import sys -from twisted.conch.scripts.tkconch import run -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) - sys.exit(run()) diff --git a/.venv/bin/trial b/.venv/bin/trial deleted file mode 100755 index 75076f0f..00000000 --- a/.venv/bin/trial +++ /dev/null @@ -1,8 +0,0 @@ -#!/home/pac/thrillwiki/thrillwiki_django_no_react/.venv/bin/python -# -*- coding: utf-8 -*- -import re -import sys -from twisted.scripts.trial import run -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) - sys.exit(run()) diff --git a/.venv/bin/twist b/.venv/bin/twist deleted file mode 100755 index b9a0c027..00000000 --- a/.venv/bin/twist +++ /dev/null @@ -1,8 +0,0 @@ -#!/home/pac/thrillwiki/thrillwiki_django_no_react/.venv/bin/python -# -*- coding: utf-8 -*- -import re -import sys -from twisted.application.twist._twist import Twist -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) - sys.exit(Twist.main()) diff --git a/.venv/bin/twistd b/.venv/bin/twistd deleted file mode 100755 index 04d73a71..00000000 --- a/.venv/bin/twistd +++ /dev/null @@ -1,8 +0,0 @@ -#!/home/pac/thrillwiki/thrillwiki_django_no_react/.venv/bin/python -# -*- coding: utf-8 -*- -import re -import sys -from twisted.scripts.twistd import run -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) - sys.exit(run()) diff --git a/.venv/bin/wamp b/.venv/bin/wamp deleted file mode 100755 index 86399d1a..00000000 --- a/.venv/bin/wamp +++ /dev/null @@ -1,8 +0,0 @@ -#!/home/pac/thrillwiki/thrillwiki_django_no_react/.venv/bin/python -# -*- coding: utf-8 -*- -import re -import sys -from autobahn.__main__ import _main -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) - sys.exit(_main()) diff --git a/.venv/bin/xbrnetwork b/.venv/bin/xbrnetwork deleted file mode 100755 index d8dde304..00000000 --- a/.venv/bin/xbrnetwork +++ /dev/null @@ -1,8 +0,0 @@ -#!/home/pac/thrillwiki/thrillwiki_django_no_react/.venv/bin/python -# -*- coding: utf-8 -*- -import re -import sys -from autobahn.xbr._cli import _main -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) - sys.exit(_main()) diff --git a/.venv/bin/xbrnetwork-ui b/.venv/bin/xbrnetwork-ui deleted file mode 100755 index 44fcce6c..00000000 --- a/.venv/bin/xbrnetwork-ui +++ /dev/null @@ -1,8 +0,0 @@ -#!/home/pac/thrillwiki/thrillwiki_django_no_react/.venv/bin/python -# -*- coding: utf-8 -*- -import re -import sys -from autobahn.xbr._gui import _main -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) - sys.exit(_main()) diff --git a/.venv/lib64 b/.venv/lib64 deleted file mode 120000 index 7951405f..00000000 --- a/.venv/lib64 +++ /dev/null @@ -1 +0,0 @@ -lib \ No newline at end of file diff --git a/.venv/pyvenv.cfg b/.venv/pyvenv.cfg deleted file mode 100644 index 3d992b21..00000000 --- a/.venv/pyvenv.cfg +++ /dev/null @@ -1,5 +0,0 @@ -home = /usr/local/bin -include-system-site-packages = false -version = 3.13.0 -executable = /usr/local/bin/python3.13 -command = /usr/local/bin/python -m venv /home/pac/thrillwiki/thrillwiki_django_no_react/.venv diff --git a/.venv/share/doc/jwcrypto/LICENSE b/.venv/share/doc/jwcrypto/LICENSE deleted file mode 100644 index 65c5ca88..00000000 --- a/.venv/share/doc/jwcrypto/LICENSE +++ /dev/null @@ -1,165 +0,0 @@ - GNU LESSER GENERAL PUBLIC LICENSE - Version 3, 29 June 2007 - - Copyright (C) 2007 Free Software Foundation, Inc. - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - - - This version of the GNU Lesser General Public License incorporates -the terms and conditions of version 3 of the GNU General Public -License, supplemented by the additional permissions listed below. - - 0. Additional Definitions. - - As used herein, "this License" refers to version 3 of the GNU Lesser -General Public License, and the "GNU GPL" refers to version 3 of the GNU -General Public License. - - "The Library" refers to a covered work governed by this License, -other than an Application or a Combined Work as defined below. - - An "Application" is any work that makes use of an interface provided -by the Library, but which is not otherwise based on the Library. -Defining a subclass of a class defined by the Library is deemed a mode -of using an interface provided by the Library. - - A "Combined Work" is a work produced by combining or linking an -Application with the Library. The particular version of the Library -with which the Combined Work was made is also called the "Linked -Version". - - The "Minimal Corresponding Source" for a Combined Work means the -Corresponding Source for the Combined Work, excluding any source code -for portions of the Combined Work that, considered in isolation, are -based on the Application, and not on the Linked Version. - - The "Corresponding Application Code" for a Combined Work means the -object code and/or source code for the Application, including any data -and utility programs needed for reproducing the Combined Work from the -Application, but excluding the System Libraries of the Combined Work. - - 1. Exception to Section 3 of the GNU GPL. - - You may convey a covered work under sections 3 and 4 of this License -without being bound by section 3 of the GNU GPL. - - 2. Conveying Modified Versions. - - If you modify a copy of the Library, and, in your modifications, a -facility refers to a function or data to be supplied by an Application -that uses the facility (other than as an argument passed when the -facility is invoked), then you may convey a copy of the modified -version: - - a) under this License, provided that you make a good faith effort to - ensure that, in the event an Application does not supply the - function or data, the facility still operates, and performs - whatever part of its purpose remains meaningful, or - - b) under the GNU GPL, with none of the additional permissions of - this License applicable to that copy. - - 3. Object Code Incorporating Material from Library Header Files. - - The object code form of an Application may incorporate material from -a header file that is part of the Library. You may convey such object -code under terms of your choice, provided that, if the incorporated -material is not limited to numerical parameters, data structure -layouts and accessors, or small macros, inline functions and templates -(ten or fewer lines in length), you do both of the following: - - a) Give prominent notice with each copy of the object code that the - Library is used in it and that the Library and its use are - covered by this License. - - b) Accompany the object code with a copy of the GNU GPL and this license - document. - - 4. Combined Works. - - You may convey a Combined Work under terms of your choice that, -taken together, effectively do not restrict modification of the -portions of the Library contained in the Combined Work and reverse -engineering for debugging such modifications, if you also do each of -the following: - - a) Give prominent notice with each copy of the Combined Work that - the Library is used in it and that the Library and its use are - covered by this License. - - b) Accompany the Combined Work with a copy of the GNU GPL and this license - document. - - c) For a Combined Work that displays copyright notices during - execution, include the copyright notice for the Library among - these notices, as well as a reference directing the user to the - copies of the GNU GPL and this license document. - - d) Do one of the following: - - 0) Convey the Minimal Corresponding Source under the terms of this - License, and the Corresponding Application Code in a form - suitable for, and under terms that permit, the user to - recombine or relink the Application with a modified version of - the Linked Version to produce a modified Combined Work, in the - manner specified by section 6 of the GNU GPL for conveying - Corresponding Source. - - 1) Use a suitable shared library mechanism for linking with the - Library. A suitable mechanism is one that (a) uses at run time - a copy of the Library already present on the user's computer - system, and (b) will operate properly with a modified version - of the Library that is interface-compatible with the Linked - Version. - - e) Provide Installation Information, but only if you would otherwise - be required to provide such information under section 6 of the - GNU GPL, and only to the extent that such information is - necessary to install and execute a modified version of the - Combined Work produced by recombining or relinking the - Application with a modified version of the Linked Version. (If - you use option 4d0, the Installation Information must accompany - the Minimal Corresponding Source and Corresponding Application - Code. If you use option 4d1, you must provide the Installation - Information in the manner specified by section 6 of the GNU GPL - for conveying Corresponding Source.) - - 5. Combined Libraries. - - You may place library facilities that are a work based on the -Library side by side in a single library together with other library -facilities that are not Applications and are not covered by this -License, and convey such a combined library under terms of your -choice, if you do both of the following: - - a) Accompany the combined library with a copy of the same work based - on the Library, uncombined with any other library facilities, - conveyed under the terms of this License. - - b) Give prominent notice with the combined library that part of it - is a work based on the Library, and explaining where to find the - accompanying uncombined form of the same work. - - 6. Revised Versions of the GNU Lesser General Public License. - - The Free Software Foundation may publish revised and/or new versions -of the GNU Lesser General Public License from time to time. Such new -versions will be similar in spirit to the present version, but may -differ in detail to address new problems or concerns. - - Each version is given a distinguishing version number. If the -Library as you received it specifies that a certain numbered version -of the GNU Lesser General Public License "or any later version" -applies to it, you have the option of following the terms and -conditions either of that published version or of any later version -published by the Free Software Foundation. If the Library as you -received it does not specify a version number of the GNU Lesser -General Public License, you may choose any version of the GNU Lesser -General Public License ever published by the Free Software Foundation. - - If the Library as you received it specifies that a proxy can decide -whether future versions of the GNU Lesser General Public License shall -apply, that proxy's public statement of acceptance of any version is -permanent authorization for you to choose that version for the -Library. diff --git a/.venv/share/doc/jwcrypto/README.md b/.venv/share/doc/jwcrypto/README.md deleted file mode 100644 index 4255fd2f..00000000 --- a/.venv/share/doc/jwcrypto/README.md +++ /dev/null @@ -1,48 +0,0 @@ -[![PyPI](https://img.shields.io/pypi/v/jwcrypto.svg)](https://pypi.org/project/jwcrypto/) -[![Changelog](https://img.shields.io/github/v/release/latchset/jwcrypto?label=changelog)](https://github.com/latchset/jwcrypto/releases) -[![Build Status](https://github.[AWS-SECRET-REMOVED]build.yml/badge.svg)](https://github.[AWS-SECRET-REMOVED]build.yml) -[![ppc64le Build](https://github.[AWS-SECRET-REMOVED]ppc64le.yml/badge.svg)](https://github.[AWS-SECRET-REMOVED]ppc64le.yml) -[![Code Scan](https://github.[AWS-SECRET-REMOVED]codeql-analysis.yml/badge.svg)](https://github.[AWS-SECRET-REMOVED]codeql-analysis.yml) -[![Documentation Status](https://readthedocs.org/projects/jwcrypto/badge/?version=latest)](https://jwcrypto.readthedocs.io/en/latest/?badge=latest) - -JWCrypto -======== - -An implementation of the JOSE Working Group documents: -- RFC 7515 - JSON Web Signature (JWS) -- RFC 7516 - JSON Web Encryption (JWE) -- RFC 7517 - JSON Web Key (JWK) -- RFC 7518 - JSON Web Algorithms (JWA) -- RFC 7519 - JSON Web Token (JWT) -- RFC 7520 - Examples of Protecting Content Using JSON Object Signing and - Encryption (JOSE) - -Installation -============ - - pip install jwcrypto - -Documentation -============= - -http://jwcrypto.readthedocs.org - -Deprecation Notices -=================== - -2020.12.11: The RSA1_5 algorithm is now considered deprecated due to numerous -implementation issues that make it a very problematic tool to use safely. -The algorithm can still be used but requires explicitly allowing it on object -instantiation. If your application depends on it there are examples of how to -re-enable RSA1_5 usage in the tests files. - -Note: if you enable support for `RSA1_5` and the attacker can send you chosen -ciphertext and is able to measure the processing times of your application, -then your application will be vulnerable to a Bleichenbacher RSA padding -oracle, allowing the so-called "Million messages attack". That attack allows -to decrypt intercepted messages (even if they were encrypted with RSA-OAEP) or -forge signatures (both RSA-PKCS#1 v1.5 and RSASSA-PSS). - -Given JWT is generally used in tokens to sign authorization assertions or to -encrypt private key material, this is a particularly severe issue, and must -not be underestimated.