From 79e6e25a90c8f3f3c74bcdd03866e413fe3c6c30 Mon Sep 17 00:00:00 2001 From: XGamerGuide Date: Sun, 5 Nov 2023 17:02:36 +0100 Subject: [PATCH] Remove copyright header from source files --- src/api.py | 11 ----------- src/config.py | 11 ----------- src/constants.py | 11 ----------- src/globals.py | 11 ----------- src/main.py | 11 ----------- src/models.py | 11 ----------- src/rate_limit.py | 11 ----------- src/settings.py | 11 ----------- src/utils.py | 11 ----------- static/admin.js | 13 ------------- static/diary.js | 13 ------------- static/login.js | 13 ------------- static/questions.js | 13 ------------- static/settings.js | 14 -------------- static/stats.js | 13 ------------- static/style.css | 13 ------------- static/utils.js | 13 ------------- 17 files changed, 204 deletions(-) diff --git a/src/api.py b/src/api.py index 11622b2..7fcf8ec 100644 --- a/src/api.py +++ b/src/api.py @@ -1,14 +1,3 @@ -############################################# -# # -# diary # -# # -# MIT # -# Copyright (C) 2022 - 2023 dodaucy # -# https://github.com/dodaucy/diary # -# # -############################################# - - import asyncio import calendar import datetime diff --git a/src/config.py b/src/config.py index b5f31da..e699fb8 100644 --- a/src/config.py +++ b/src/config.py @@ -1,14 +1,3 @@ -############################################# -# # -# diary # -# # -# MIT # -# Copyright (C) 2022 - 2023 dodaucy # -# https://github.com/dodaucy/diary # -# # -############################################# - - import os from dotenv import load_dotenv diff --git a/src/constants.py b/src/constants.py index d7f390f..e57e2fc 100644 --- a/src/constants.py +++ b/src/constants.py @@ -1,14 +1,3 @@ -############################################# -# # -# diary # -# # -# MIT # -# Copyright (C) 2022 - 2023 dodaucy # -# https://github.com/dodaucy/diary # -# # -############################################# - - DEFAULT_SETTINGS = { "font_color": "#d3d3d3", "button_font_color": "#d3d3d3", diff --git a/src/globals.py b/src/globals.py index 87bf6eb..5aba7c3 100644 --- a/src/globals.py +++ b/src/globals.py @@ -1,14 +1,3 @@ -############################################# -# # -# diary # -# # -# MIT # -# Copyright (C) 2022 - 2023 dodaucy # -# https://github.com/dodaucy/diary # -# # -############################################# - - from databases import Database from . import config diff --git a/src/main.py b/src/main.py index 28715b0..414ebdf 100644 --- a/src/main.py +++ b/src/main.py @@ -1,14 +1,3 @@ -############################################# -# # -# diary # -# # -# MIT # -# Copyright (C) 2022 - 2023 dodaucy # -# https://github.com/dodaucy/diary # -# # -############################################# - - import mimetypes import warnings diff --git a/src/models.py b/src/models.py index 29c9af1..23b371a 100644 --- a/src/models.py +++ b/src/models.py @@ -1,14 +1,3 @@ -############################################# -# # -# diary # -# # -# MIT # -# Copyright (C) 2022 - 2023 dodaucy # -# https://github.com/dodaucy/diary # -# # -############################################# - - from typing import Dict, Optional from pydantic import BaseModel diff --git a/src/rate_limit.py b/src/rate_limit.py index 49c6dac..734f1e4 100644 --- a/src/rate_limit.py +++ b/src/rate_limit.py @@ -1,14 +1,3 @@ -############################################# -# # -# diary # -# # -# MIT # -# Copyright (C) 2022 - 2023 dodaucy # -# https://github.com/dodaucy/diary # -# # -############################################# - - import time from databases import Database diff --git a/src/settings.py b/src/settings.py index 66f71d6..c5f8311 100644 --- a/src/settings.py +++ b/src/settings.py @@ -1,14 +1,3 @@ -############################################# -# # -# diary # -# # -# MIT # -# Copyright (C) 2022 - 2023 dodaucy # -# https://github.com/dodaucy/diary # -# # -############################################# - - from typing import Dict from databases import Database diff --git a/src/utils.py b/src/utils.py index 16a66cf..0b76bc6 100644 --- a/src/utils.py +++ b/src/utils.py @@ -1,14 +1,3 @@ -############################################# -# # -# diary # -# # -# MIT # -# Copyright (C) 2022 - 2023 dodaucy # -# https://github.com/dodaucy/diary # -# # -############################################# - - import datetime import string diff --git a/static/admin.js b/static/admin.js index ab181d1..2844f51 100644 --- a/static/admin.js +++ b/static/admin.js @@ -1,16 +1,3 @@ -/* -############################################# -# # -# diary # -# # -# MIT # -# Copyright (C) 2022 - 2023 dodaucy # -# https://github.com/dodaucy/diary # -# # -############################################# -*/ - - function restore_question() { disable(true); var question_id = parseInt(document.getElementById("restore-question-id").value.trim()); diff --git a/static/diary.js b/static/diary.js index e93c7f1..b627e8f 100644 --- a/static/diary.js +++ b/static/diary.js @@ -1,16 +1,3 @@ -/* -############################################# -# # -# diary # -# # -# MIT # -# Copyright (C) 2022 - 2023 dodaucy # -# https://github.com/dodaucy/diary # -# # -############################################# -*/ - - var last_load; var last_date; var original_questions_list; diff --git a/static/login.js b/static/login.js index 9407589..2afbd37 100644 --- a/static/login.js +++ b/static/login.js @@ -1,16 +1,3 @@ -/* -############################################# -# # -# diary # -# # -# MIT # -# Copyright (C) 2022 - 2023 dodaucy # -# https://github.com/dodaucy/diary # -# # -############################################# -*/ - - function login() { try { var password = document.getElementById("password").value.trim(); diff --git a/static/questions.js b/static/questions.js index 772e95e..d7f5387 100644 --- a/static/questions.js +++ b/static/questions.js @@ -1,16 +1,3 @@ -/* -############################################# -# # -# diary # -# # -# MIT # -# Copyright (C) 2022 - 2023 dodaucy # -# https://github.com/dodaucy/diary # -# # -############################################# -*/ - - var original_questions; diff --git a/static/settings.js b/static/settings.js index b788492..37365b1 100644 --- a/static/settings.js +++ b/static/settings.js @@ -1,17 +1,3 @@ - -/* -############################################# -# # -# diary # -# # -# MIT # -# Copyright (C) 2022 - 2023 dodaucy # -# https://github.com/dodaucy/diary # -# # -############################################# -*/ - - var original_settings; diff --git a/static/stats.js b/static/stats.js index f25e870..155ce2b 100644 --- a/static/stats.js +++ b/static/stats.js @@ -1,16 +1,3 @@ -/* -############################################# -# # -# diary # -# # -# MIT # -# Copyright (C) 2022 - 2023 dodaucy # -# https://github.com/dodaucy/diary # -# # -############################################# -*/ - - var last_resize; var last_data; var cache = {}; diff --git a/static/style.css b/static/style.css index f290c7a..5cde66b 100644 --- a/static/style.css +++ b/static/style.css @@ -1,16 +1,3 @@ -/* -############################################# -# # -# diary # -# # -# MIT # -# Copyright (C) 2022 - 2023 dodaucy # -# https://github.com/dodaucy/diary # -# # -############################################# -*/ - - :root { --neutral: #1c5699; --neutral-hover: #143963; diff --git a/static/utils.js b/static/utils.js index 13be7b9..63bcb3a 100644 --- a/static/utils.js +++ b/static/utils.js @@ -1,16 +1,3 @@ -/* -############################################# -# # -# diary # -# # -# MIT # -# Copyright (C) 2022 - 2023 dodaucy # -# https://github.com/dodaucy/diary # -# # -############################################# -*/ - - var save_popup_shown = false; var front_end_disabled = false;