diff --git a/.gitignore b/.gitignore index 82c550881..50afe338a 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,6 @@ +image.png image.gif -dramacache/ +cache/ __pycache__/ *.py[cod] *$py.class diff --git a/appspec.yml b/appspec.yml index 0ab4dac11..5a7cff88d 100644 --- a/appspec.yml +++ b/appspec.yml @@ -2,12 +2,12 @@ version: 0.0 os: linux files: - source: / - destination: drama + destination: files permissions: - - object: drama/* + - object: files/* mode: 4755 hooks: AfterInstall: - location: scripts/install_pip ApplicationStart: - - location: scripts/start_drama \ No newline at end of file + - location: scripts/start_files \ No newline at end of file diff --git a/compilecss.py b/compilecss.py index b8d4de186..50e0d0ef4 100644 --- a/compilecss.py +++ b/compilecss.py @@ -1,7 +1,7 @@ for theme in ['midnight', 'dark', 'light', 'coffee', 'tron', '4chan']: - with open(f"./drama/assets/style/{theme}_ff66ac.css", encoding='utf-8') as t: + with open(f"./files/assets/style/{theme}_ff66ac.css", encoding='utf-8') as t: text = t.read() for color in ['ff66ac','805ad5','62ca56','38a169','80ffff','2a96f3','62ca56','eb4963','ff0000','f39731','30409f','3e98a7','e4432d','7b9ae4','ec72de','7f8fa6', 'f8db58']: newtext = text.replace("ff66ac", color).replace("ff4097", color).replace("ff1a83", color).replace("ff3390", color).replace("rgba(255, 102, 172, 0.25)", color) - with open(f"./drama/assets/style/{theme}_{color}.css", encoding='utf-8', mode='w') as nt: + with open(f"./files/assets/style/{theme}_{color}.css", encoding='utf-8', mode='w') as nt: nt.write(newtext) \ No newline at end of file diff --git a/docker-compose.yml b/docker-compose.yml index dc261b01c..ae466bd6b 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,36 +1,43 @@ version: '2.3' services: - drama: + files: build: context: . volumes: - - "./:/drama/service" + - "./:/service" environment: - - PYTHONPATH="drama/service" + - PYTHONPATH="/service" - REDIS_URL=redis://redis - DATABASE_URL=postgresql://postgres@postgres:5432/postgres - DATABASE_CONNECTION_POOL_URL=postgresql://postgres@postgres:5432/postgres - MASTER_KEY=${MASTER_KEY:-KTVciAUQFpFh2WdJ/oiHJlxl6FvzRZp8kYzAAv3l2OA=} - - domain=localhost + - DOMAIN=localhost - SITE_NAME=Drama - CLOUDFLARE_ZONE=vcxvdfgfc6r554etrgd - CLOUDFLARE_KEY=vcxvdfgfc6r554etrgd - TENOR_KEY=vcxvdfgfc6r554etrgd - MAILGUN_KEY=vcxvdfgfc6r554etrgd - MAILGUN_DOMAIN=rdrama.net - - admin_email=drama@rdrama.net - FORCE_HTTPS=0 - DISCORD_SERVER_ID=vcxvdfgfc6r554etrgd - DISCORD_CLIENT_ID=vcxvdfgfc6r554etrgd - DISCORD_CLIENT_SECRET=vcxvdfgfc6r554etrgd - DISCORD_BOT_TOKEN=vcxvdfgfc6r554etrgd - - imgurkey=vcxvdfgfc6r554etrgd + - IMGUR_KEY=vcxvdfgfc6r554etrgd - FACEBOOK_TOKEN=vcxvdfgfc6r554etrgd - #- HCAPTCHA_SITEKEY=vcxvdfgfc6r554etrgd + #- HCAPTCHA_SITEKEY=vcxvdfgfc6r554etrgd - HCAPTCHA_SECRET=vcxvdfgfc6r554etrgd - - youtubekey=vcxvdfgfc6r554etrgd + - YOUTUBE_KEY=vcxvdfgfc6r554etrgd - PUSHER_KEY=vcxvdfgfc6r554etrgd + - SPAM_SIMILARITY_THRESHOLD=0.5 + - SPAM_SIMILAR_COUNT_THRESHOLD=5 + - SPAM_URL_SIMILARITY_THRESHOLD=0.1 + - COMMENT_SPAM_SIMILAR_THRESHOLD=0.5 + - COMMENT_SPAM_COUNT_THRESHOLD=5 + - READ_ONLY=0 + - BOT_DISABLE=0 + - COINS_NAME=Dramacoins links: - "redis" - "postgres" diff --git a/drama/classes/lolwtf.py b/drama/classes/lolwtf.py deleted file mode 100644 index 5e4a7a5ee..000000000 --- a/drama/classes/lolwtf.py +++ /dev/null @@ -1,2 +0,0 @@ - -from drama.__main__ import Base, app \ No newline at end of file diff --git a/drama/__main__.py b/files/__main__.py similarity index 72% rename from drama/__main__.py rename to files/__main__.py index 63a2d19b2..e66533913 100644 --- a/drama/__main__.py +++ b/files/__main__.py @@ -30,28 +30,15 @@ app = Flask(__name__, app.wsgi_app = ProxyFix(app.wsgi_app, x_for=3) app.url_map.strict_slashes = False -app.config["SITE_NAME"]=environ.get("SITE_NAME", "Drama").strip() - -app.config["SITE_COLOR"]=environ.get("SITE_COLOR", "805ad5").strip() - -app.config["DRAMAPATH"]=environ.get("DRAMAPATH", path.dirname(path.realpath(__file__))) - +app.config["SITE_NAME"]=environ.get("SITE_NAME").strip() +app.config["COINS_NAME"]=environ.get("COINS_NAME").strip() app.config['SQLALCHEMY_TRACK_MODIFICATIONS'] = False -app.config['DATABASE_URL'] = environ.get( - "DATABASE_CONNECTION_POOL_URL", - environ.get("DATABASE_URL")) - -app.config['SQLALCHEMY_READ_URIS'] = [ - environ.get("DATABASE_CONNECTION_READ_01_URL"), - environ.get("DATABASE_CONNECTION_READ_02_URL"), - environ.get("DATABASE_CONNECTION_READ_03_URL") -] +app.config['DATABASE_URL'] = environ.get("DATABASE_CONNECTION_POOL_URL",environ.get("DATABASE_URL")) app.config['SECRET_KEY'] = environ.get('MASTER_KEY') -app.config["SERVER_NAME"] = environ.get("domain").strip() +app.config["SERVER_NAME"] = environ.get("DOMAIN").strip() -app.config["SHORT_DOMAIN"]=environ.get("SHORT_DOMAIN","").strip() -app.config["SESSION_COOKIE_NAME"] = "session_drama" +app.config["SESSION_COOKIE_NAME"] = "session_" + environ.get("SITE_NAME").strip().lower() app.config["VERSION"] = "1.0.0" app.config['MAX_CONTENT_LENGTH'] = 64 * 1024 * 1024 app.config["SESSION_COOKIE_SECURE"] = bool(int(environ.get("FORCE_HTTPS", 1))) @@ -61,7 +48,6 @@ app.config["PERMANENT_SESSION_LIFETIME"] = 60 * 60 * 24 * 365 app.config["SESSION_REFRESH_EACH_REQUEST"] = True app.config["FORCE_HTTPS"] = int(environ.get("FORCE_HTTPS", 1)) if ("localhost" not in app.config["SERVER_NAME"] and "127.0.0.1" not in app.config["SERVER_NAME"]) else 0 -app.config["DISABLE_SIGNUPS"]=int(environ.get("DISABLE_SIGNUPS",0)) app.jinja_env.cache = {} @@ -70,34 +56,26 @@ app.config["UserAgent"] = "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit if "localhost" in app.config["SERVER_NAME"]: app.config["CACHE_TYPE"] = "null" else: - app.config["CACHE_TYPE"] = environ.get("CACHE_TYPE", 'filesystem').strip() + app.config["CACHE_TYPE"] = "filesystem" -app.config["CACHE_DIR"] = environ.get("CACHE_DIR", "dramacache") +app.config["CACHE_DIR"] = environ.get("CACHE_DIR", "cache") # captcha configs app.config["HCAPTCHA_SITEKEY"] = environ.get("HCAPTCHA_SITEKEY","").strip() -app.config["HCAPTCHA_SECRET"] = environ.get( - "HCAPTCHA_SECRET","").strip() -app.config["SIGNUP_HOURLY_LIMIT"]=int(environ.get("SIGNUP_HOURLY_LIMIT",0)) +app.config["HCAPTCHA_SECRET"] = environ.get("HCAPTCHA_SECRET","").strip() # antispam configs -app.config["SPAM_SIMILARITY_THRESHOLD"] = float( - environ.get("SPAM_SIMILARITY_THRESHOLD", 0.5)) -app.config["SPAM_SIMILAR_COUNT_THRESHOLD"] = int( - environ.get("SPAM_SIMILAR_COUNT_THRESHOLD", 5)) -app.config["SPAM_URL_SIMILARITY_THRESHOLD"] = float( - environ.get("SPAM_URL_SIMILARITY_THRESHOLD", 0.1)) -app.config["COMMENT_SPAM_SIMILAR_THRESHOLD"] = float( - environ.get("COMMENT_SPAM_SIMILAR_THRESHOLD", 0.5)) -app.config["COMMENT_SPAM_COUNT_THRESHOLD"] = int( - environ.get("COMMENT_SPAM_COUNT_THRESHOLD", 5)) +app.config["SPAM_SIMILARITY_THRESHOLD"] = float(environ.get("SPAM_SIMILARITY_THRESHOLD")) +app.config["SPAM_SIMILAR_COUNT_THRESHOLD"] = int(environ.get("SPAM_SIMILAR_COUNT_THRESHOLD")) +app.config["SPAM_URL_SIMILARITY_THRESHOLD"] = float(environ.get("SPAM_URL_SIMILARITY_THRESHOLD")) +app.config["COMMENT_SPAM_SIMILAR_THRESHOLD"] = float(environ.get("COMMENT_SPAM_SIMILAR_THRESHOLD")) +app.config["COMMENT_SPAM_COUNT_THRESHOLD"] = int(environ.get("COMMENT_SPAM_COUNT_THRESHOLD")) -app.config["CACHE_REDIS_URL"] = environ.get( - "REDIS_URL").strip().lstrip() if environ.get("REDIS_URL") else None +app.config["CACHE_REDIS_URL"] = environ.get("REDIS_URL").strip() app.config["CACHE_DEFAULT_TIMEOUT"] = 60 app.config["CACHE_KEY_PREFIX"] = "flask_caching_" -app.config["REDIS_POOL_SIZE"]=int(environ.get("REDIS_POOL_SIZE", 10)) +app.config["REDIS_POOL_SIZE"] = 10 redispool=ConnectionPool( max_connections=app.config["REDIS_POOL_SIZE"], @@ -105,7 +83,7 @@ redispool=ConnectionPool( ) if app.config["CACHE_TYPE"]=="redis" else None app.config["CACHE_OPTIONS"]={'connection_pool':redispool} if app.config["CACHE_TYPE"]=="redis" else {} -app.config["READ_ONLY"]=bool(int(environ.get("READ_ONLY", False))) +app.config["READ_ONLY"]=bool(int(environ.get("READ_ONLY"))) app.config["BOT_DISABLE"]=bool(int(environ.get("BOT_DISABLE", False))) app.config["TENOR_KEY"]=environ.get("TENOR_KEY",'').strip() @@ -115,18 +93,15 @@ Markdown(app) cache = Cache(app) Compress(app) -app.config["RATELIMIT_STORAGE_URL"] = environ.get("REDIS_URL").strip() if environ.get("REDIS_URL") else 'memory://' +app.config["RATELIMIT_STORAGE_URL"] = environ.get("REDIS_URL").strip() app.config["RATELIMIT_KEY_PREFIX"] = "flask_limiting_" app.config["RATELIMIT_ENABLED"] = True app.config["RATELIMIT_DEFAULTS_DEDUCT_WHEN"]=lambda:True app.config["RATELIMIT_DEFAULTS_EXEMPT_WHEN"]=lambda:False app.config["RATELIMIT_HEADERS_ENABLED"]=True -#app.config["DISABLESIGNUPS"] = bool(int(environ.get("DISABLESIGNUPS", "0"))) - -def limiter_key_func(): - return request.remote_addr +def limiter_key_func(): return request.remote_addr limiter = Limiter( @@ -196,9 +171,9 @@ UA_BAN_CACHE_TTL = int(environ.get("UA_BAN_CACHE_TTL", 3600)) # import and bind all routing functions -import drama.classes -from drama.routes import * -import drama.helpers.jinja2 +import files.classes +from files.routes import * +import files.helpers.jinja2 @cache.memoize(UA_BAN_CACHE_TTL) def get_useragent_ban_response(user_agent_str): @@ -210,8 +185,8 @@ def get_useragent_ban_response(user_agent_str): # return False, (None, None) result = g.db.query( - drama.classes.Agent).filter( - drama.classes.Agent.kwd.in_( + files.classes.Agent).filter( + files.classes.Agent.kwd.in_( user_agent_str.split())).first() if result: return True, (result.mock or "Follow the robots.txt, dumbass", @@ -267,26 +242,6 @@ def before_request(): else: g.system="other/other" - -def log_event(name, link): - - x = requests.get(link) - - if x.status_code != 200: - return - - text = f'> **{name}**\r> {link}' - - url = environ.get("DISCORD_WEBHOOK") - headers = {"Content-Type": "application/json"} - data = {"username": "drama", - "content": text - } - - x = requests.post(url, headers=headers, json=data) - print(x.status_code) - - @app.after_request def after_request(response): diff --git a/drama/assets/Drama.apk b/files/assets/Drama.apk similarity index 100% rename from drama/assets/Drama.apk rename to files/assets/Drama.apk diff --git a/drama/assets/images/badges/agendaposter.png b/files/assets/images/badges/agendaposter.png similarity index 100% rename from drama/assets/images/badges/agendaposter.png rename to files/assets/images/badges/agendaposter.png diff --git a/drama/assets/images/badges/alpha.png b/files/assets/images/badges/alpha.png similarity index 100% rename from drama/assets/images/badges/alpha.png rename to files/assets/images/badges/alpha.png diff --git a/drama/assets/images/badges/art.png b/files/assets/images/badges/art.png similarity index 100% rename from drama/assets/images/badges/art.png rename to files/assets/images/badges/art.png diff --git a/drama/assets/images/badges/baby.png b/files/assets/images/badges/baby.png similarity index 100% rename from drama/assets/images/badges/baby.png rename to files/assets/images/badges/baby.png diff --git a/drama/assets/images/badges/beta.png b/files/assets/images/badges/beta.png similarity index 100% rename from drama/assets/images/badges/beta.png rename to files/assets/images/badges/beta.png diff --git a/drama/assets/images/badges/game-highfinish.png b/files/assets/images/badges/game-highfinish.png similarity index 100% rename from drama/assets/images/badges/game-highfinish.png rename to files/assets/images/badges/game-highfinish.png diff --git a/drama/assets/images/badges/game-participant.png b/files/assets/images/badges/game-participant.png similarity index 100% rename from drama/assets/images/badges/game-participant.png rename to files/assets/images/badges/game-participant.png diff --git a/drama/assets/images/badges/git.png b/files/assets/images/badges/git.png similarity index 100% rename from drama/assets/images/badges/git.png rename to files/assets/images/badges/git.png diff --git a/drama/assets/images/badges/idea.png b/files/assets/images/badges/idea.png similarity index 100% rename from drama/assets/images/badges/idea.png rename to files/assets/images/badges/idea.png diff --git a/drama/assets/images/badges/labrat.png b/files/assets/images/badges/labrat.png similarity index 100% rename from drama/assets/images/badges/labrat.png rename to files/assets/images/badges/labrat.png diff --git a/drama/assets/images/badges/lolcow.png b/files/assets/images/badges/lolcow.png similarity index 100% rename from drama/assets/images/badges/lolcow.png rename to files/assets/images/badges/lolcow.png diff --git a/drama/assets/images/badges/mail.png b/files/assets/images/badges/mail.png similarity index 100% rename from drama/assets/images/badges/mail.png rename to files/assets/images/badges/mail.png diff --git a/drama/assets/images/badges/patron-1.gif b/files/assets/images/badges/patron-1.gif similarity index 100% rename from drama/assets/images/badges/patron-1.gif rename to files/assets/images/badges/patron-1.gif diff --git a/drama/assets/images/badges/patron-2.gif b/files/assets/images/badges/patron-2.gif similarity index 100% rename from drama/assets/images/badges/patron-2.gif rename to files/assets/images/badges/patron-2.gif diff --git a/drama/assets/images/badges/patron-3.gif b/files/assets/images/badges/patron-3.gif similarity index 100% rename from drama/assets/images/badges/patron-3.gif rename to files/assets/images/badges/patron-3.gif diff --git a/drama/assets/images/badges/patron-4.gif b/files/assets/images/badges/patron-4.gif similarity index 100% rename from drama/assets/images/badges/patron-4.gif rename to files/assets/images/badges/patron-4.gif diff --git a/drama/assets/images/badges/patron-8.gif b/files/assets/images/badges/patron-8.gif similarity index 100% rename from drama/assets/images/badges/patron-8.gif rename to files/assets/images/badges/patron-8.gif diff --git a/drama/assets/images/badges/recruit-1.png b/files/assets/images/badges/recruit-1.png similarity index 100% rename from drama/assets/images/badges/recruit-1.png rename to files/assets/images/badges/recruit-1.png diff --git a/drama/assets/images/badges/recruit-10.png b/files/assets/images/badges/recruit-10.png similarity index 100% rename from drama/assets/images/badges/recruit-10.png rename to files/assets/images/badges/recruit-10.png diff --git a/drama/assets/images/badges/recruit-100.png b/files/assets/images/badges/recruit-100.png similarity index 100% rename from drama/assets/images/badges/recruit-100.png rename to files/assets/images/badges/recruit-100.png diff --git a/drama/assets/images/badges/recruit-1000.png b/files/assets/images/badges/recruit-1000.png similarity index 100% rename from drama/assets/images/badges/recruit-1000.png rename to files/assets/images/badges/recruit-1000.png diff --git a/files/assets/images/badges/retarded.png b/files/assets/images/badges/retarded.png new file mode 100644 index 000000000..524f66ca5 Binary files /dev/null and b/files/assets/images/badges/retarded.png differ diff --git a/drama/assets/images/badges/sitebreaker.png b/files/assets/images/badges/sitebreaker.png similarity index 100% rename from drama/assets/images/badges/sitebreaker.png rename to files/assets/images/badges/sitebreaker.png diff --git a/drama/assets/images/badges/unknowable.png b/files/assets/images/badges/unknowable.png similarity index 100% rename from drama/assets/images/badges/unknowable.png rename to files/assets/images/badges/unknowable.png diff --git a/drama/assets/images/badges/unsilenced.png b/files/assets/images/badges/unsilenced.png similarity index 100% rename from drama/assets/images/badges/unsilenced.png rename to files/assets/images/badges/unsilenced.png diff --git a/drama/assets/images/badges/whitehat.png b/files/assets/images/badges/whitehat.png similarity index 100% rename from drama/assets/images/badges/whitehat.png rename to files/assets/images/badges/whitehat.png diff --git a/drama/assets/images/badges/year-1.png b/files/assets/images/badges/year-1.png similarity index 100% rename from drama/assets/images/badges/year-1.png rename to files/assets/images/badges/year-1.png diff --git a/drama/assets/images/banner.png b/files/assets/images/banner.png similarity index 100% rename from drama/assets/images/banner.png rename to files/assets/images/banner.png diff --git a/drama/assets/images/browserconfig.xml b/files/assets/images/browserconfig.xml similarity index 100% rename from drama/assets/images/browserconfig.xml rename to files/assets/images/browserconfig.xml diff --git a/drama/assets/images/default_bg.png b/files/assets/images/default_bg.png similarity index 100% rename from drama/assets/images/default_bg.png rename to files/assets/images/default_bg.png diff --git a/drama/assets/images/default_thumb_link.png b/files/assets/images/default_thumb_link.png similarity index 100% rename from drama/assets/images/default_thumb_link.png rename to files/assets/images/default_thumb_link.png diff --git a/drama/assets/images/default_thumb_text.png b/files/assets/images/default_thumb_text.png similarity index 100% rename from drama/assets/images/default_thumb_text.png rename to files/assets/images/default_thumb_text.png diff --git a/drama/assets/images/default_thumb_yt.png b/files/assets/images/default_thumb_yt.png similarity index 100% rename from drama/assets/images/default_thumb_yt.png rename to files/assets/images/default_thumb_yt.png diff --git a/drama/assets/images/defaultpictures/1.png b/files/assets/images/defaultpictures/1.png similarity index 100% rename from drama/assets/images/defaultpictures/1.png rename to files/assets/images/defaultpictures/1.png diff --git a/drama/assets/images/defaultpictures/10.png b/files/assets/images/defaultpictures/10.png similarity index 100% rename from drama/assets/images/defaultpictures/10.png rename to files/assets/images/defaultpictures/10.png diff --git a/drama/assets/images/defaultpictures/11.png b/files/assets/images/defaultpictures/11.png similarity index 100% rename from drama/assets/images/defaultpictures/11.png rename to files/assets/images/defaultpictures/11.png diff --git a/drama/assets/images/defaultpictures/12.png b/files/assets/images/defaultpictures/12.png similarity index 100% rename from drama/assets/images/defaultpictures/12.png rename to files/assets/images/defaultpictures/12.png diff --git a/drama/assets/images/defaultpictures/13.png b/files/assets/images/defaultpictures/13.png similarity index 100% rename from drama/assets/images/defaultpictures/13.png rename to files/assets/images/defaultpictures/13.png diff --git a/drama/assets/images/defaultpictures/14.png b/files/assets/images/defaultpictures/14.png similarity index 100% rename from drama/assets/images/defaultpictures/14.png rename to files/assets/images/defaultpictures/14.png diff --git a/drama/assets/images/defaultpictures/15.png b/files/assets/images/defaultpictures/15.png similarity index 100% rename from drama/assets/images/defaultpictures/15.png rename to files/assets/images/defaultpictures/15.png diff --git a/drama/assets/images/defaultpictures/16.png b/files/assets/images/defaultpictures/16.png similarity index 100% rename from drama/assets/images/defaultpictures/16.png rename to files/assets/images/defaultpictures/16.png diff --git a/drama/assets/images/defaultpictures/17.png b/files/assets/images/defaultpictures/17.png similarity index 100% rename from drama/assets/images/defaultpictures/17.png rename to files/assets/images/defaultpictures/17.png diff --git a/drama/assets/images/defaultpictures/18.png b/files/assets/images/defaultpictures/18.png similarity index 100% rename from drama/assets/images/defaultpictures/18.png rename to files/assets/images/defaultpictures/18.png diff --git a/drama/assets/images/defaultpictures/19.png b/files/assets/images/defaultpictures/19.png similarity index 100% rename from drama/assets/images/defaultpictures/19.png rename to files/assets/images/defaultpictures/19.png diff --git a/drama/assets/images/defaultpictures/2.png b/files/assets/images/defaultpictures/2.png similarity index 100% rename from drama/assets/images/defaultpictures/2.png rename to files/assets/images/defaultpictures/2.png diff --git a/drama/assets/images/defaultpictures/20.png b/files/assets/images/defaultpictures/20.png similarity index 100% rename from drama/assets/images/defaultpictures/20.png rename to files/assets/images/defaultpictures/20.png diff --git a/drama/assets/images/defaultpictures/21.png b/files/assets/images/defaultpictures/21.png similarity index 100% rename from drama/assets/images/defaultpictures/21.png rename to files/assets/images/defaultpictures/21.png diff --git a/drama/assets/images/defaultpictures/22.png b/files/assets/images/defaultpictures/22.png similarity index 100% rename from drama/assets/images/defaultpictures/22.png rename to files/assets/images/defaultpictures/22.png diff --git a/drama/assets/images/defaultpictures/23.png b/files/assets/images/defaultpictures/23.png similarity index 100% rename from drama/assets/images/defaultpictures/23.png rename to files/assets/images/defaultpictures/23.png diff --git a/drama/assets/images/defaultpictures/24.png b/files/assets/images/defaultpictures/24.png similarity index 100% rename from drama/assets/images/defaultpictures/24.png rename to files/assets/images/defaultpictures/24.png diff --git a/drama/assets/images/defaultpictures/25.png b/files/assets/images/defaultpictures/25.png similarity index 100% rename from drama/assets/images/defaultpictures/25.png rename to files/assets/images/defaultpictures/25.png diff --git a/drama/assets/images/defaultpictures/26.png b/files/assets/images/defaultpictures/26.png similarity index 100% rename from drama/assets/images/defaultpictures/26.png rename to files/assets/images/defaultpictures/26.png diff --git a/drama/assets/images/defaultpictures/27.png b/files/assets/images/defaultpictures/27.png similarity index 100% rename from drama/assets/images/defaultpictures/27.png rename to files/assets/images/defaultpictures/27.png diff --git a/drama/assets/images/defaultpictures/28.png b/files/assets/images/defaultpictures/28.png similarity index 100% rename from drama/assets/images/defaultpictures/28.png rename to files/assets/images/defaultpictures/28.png diff --git a/drama/assets/images/defaultpictures/29.png b/files/assets/images/defaultpictures/29.png similarity index 100% rename from drama/assets/images/defaultpictures/29.png rename to files/assets/images/defaultpictures/29.png diff --git a/drama/assets/images/defaultpictures/3.png b/files/assets/images/defaultpictures/3.png similarity index 100% rename from drama/assets/images/defaultpictures/3.png rename to files/assets/images/defaultpictures/3.png diff --git a/drama/assets/images/defaultpictures/30.png b/files/assets/images/defaultpictures/30.png similarity index 100% rename from drama/assets/images/defaultpictures/30.png rename to files/assets/images/defaultpictures/30.png diff --git a/drama/assets/images/defaultpictures/31.png b/files/assets/images/defaultpictures/31.png similarity index 100% rename from drama/assets/images/defaultpictures/31.png rename to files/assets/images/defaultpictures/31.png diff --git a/drama/assets/images/defaultpictures/32.png b/files/assets/images/defaultpictures/32.png similarity index 100% rename from drama/assets/images/defaultpictures/32.png rename to files/assets/images/defaultpictures/32.png diff --git a/drama/assets/images/defaultpictures/33.png b/files/assets/images/defaultpictures/33.png similarity index 100% rename from drama/assets/images/defaultpictures/33.png rename to files/assets/images/defaultpictures/33.png diff --git a/drama/assets/images/defaultpictures/34.png b/files/assets/images/defaultpictures/34.png similarity index 100% rename from drama/assets/images/defaultpictures/34.png rename to files/assets/images/defaultpictures/34.png diff --git a/drama/assets/images/defaultpictures/35.png b/files/assets/images/defaultpictures/35.png similarity index 100% rename from drama/assets/images/defaultpictures/35.png rename to files/assets/images/defaultpictures/35.png diff --git a/drama/assets/images/defaultpictures/36.png b/files/assets/images/defaultpictures/36.png similarity index 100% rename from drama/assets/images/defaultpictures/36.png rename to files/assets/images/defaultpictures/36.png diff --git a/drama/assets/images/defaultpictures/37.png b/files/assets/images/defaultpictures/37.png similarity index 100% rename from drama/assets/images/defaultpictures/37.png rename to files/assets/images/defaultpictures/37.png diff --git a/drama/assets/images/defaultpictures/38.png b/files/assets/images/defaultpictures/38.png similarity index 100% rename from drama/assets/images/defaultpictures/38.png rename to files/assets/images/defaultpictures/38.png diff --git a/drama/assets/images/defaultpictures/39.png b/files/assets/images/defaultpictures/39.png similarity index 100% rename from drama/assets/images/defaultpictures/39.png rename to files/assets/images/defaultpictures/39.png diff --git a/drama/assets/images/defaultpictures/4.png b/files/assets/images/defaultpictures/4.png similarity index 100% rename from drama/assets/images/defaultpictures/4.png rename to files/assets/images/defaultpictures/4.png diff --git a/drama/assets/images/defaultpictures/40.png b/files/assets/images/defaultpictures/40.png similarity index 100% rename from drama/assets/images/defaultpictures/40.png rename to files/assets/images/defaultpictures/40.png diff --git a/drama/assets/images/defaultpictures/41.png b/files/assets/images/defaultpictures/41.png similarity index 100% rename from drama/assets/images/defaultpictures/41.png rename to files/assets/images/defaultpictures/41.png diff --git a/drama/assets/images/defaultpictures/42.png b/files/assets/images/defaultpictures/42.png similarity index 100% rename from drama/assets/images/defaultpictures/42.png rename to files/assets/images/defaultpictures/42.png diff --git a/drama/assets/images/defaultpictures/43.png b/files/assets/images/defaultpictures/43.png similarity index 100% rename from drama/assets/images/defaultpictures/43.png rename to files/assets/images/defaultpictures/43.png diff --git a/drama/assets/images/defaultpictures/44.png b/files/assets/images/defaultpictures/44.png similarity index 100% rename from drama/assets/images/defaultpictures/44.png rename to files/assets/images/defaultpictures/44.png diff --git a/drama/assets/images/defaultpictures/45.png b/files/assets/images/defaultpictures/45.png similarity index 100% rename from drama/assets/images/defaultpictures/45.png rename to files/assets/images/defaultpictures/45.png diff --git a/drama/assets/images/defaultpictures/46.png b/files/assets/images/defaultpictures/46.png similarity index 100% rename from drama/assets/images/defaultpictures/46.png rename to files/assets/images/defaultpictures/46.png diff --git a/drama/assets/images/defaultpictures/47.png b/files/assets/images/defaultpictures/47.png similarity index 100% rename from drama/assets/images/defaultpictures/47.png rename to files/assets/images/defaultpictures/47.png diff --git a/drama/assets/images/defaultpictures/48.png b/files/assets/images/defaultpictures/48.png similarity index 100% rename from drama/assets/images/defaultpictures/48.png rename to files/assets/images/defaultpictures/48.png diff --git a/drama/assets/images/defaultpictures/49.png b/files/assets/images/defaultpictures/49.png similarity index 100% rename from drama/assets/images/defaultpictures/49.png rename to files/assets/images/defaultpictures/49.png diff --git a/drama/assets/images/defaultpictures/5.png b/files/assets/images/defaultpictures/5.png similarity index 100% rename from drama/assets/images/defaultpictures/5.png rename to files/assets/images/defaultpictures/5.png diff --git a/drama/assets/images/defaultpictures/50.png b/files/assets/images/defaultpictures/50.png similarity index 100% rename from drama/assets/images/defaultpictures/50.png rename to files/assets/images/defaultpictures/50.png diff --git a/drama/assets/images/defaultpictures/6.png b/files/assets/images/defaultpictures/6.png similarity index 100% rename from drama/assets/images/defaultpictures/6.png rename to files/assets/images/defaultpictures/6.png diff --git a/drama/assets/images/defaultpictures/7.png b/files/assets/images/defaultpictures/7.png similarity index 100% rename from drama/assets/images/defaultpictures/7.png rename to files/assets/images/defaultpictures/7.png diff --git a/drama/assets/images/defaultpictures/8.png b/files/assets/images/defaultpictures/8.png similarity index 100% rename from drama/assets/images/defaultpictures/8.png rename to files/assets/images/defaultpictures/8.png diff --git a/drama/assets/images/defaultpictures/9.png b/files/assets/images/defaultpictures/9.png similarity index 100% rename from drama/assets/images/defaultpictures/9.png rename to files/assets/images/defaultpictures/9.png diff --git a/drama/assets/images/dramapreview.png b/files/assets/images/dramapreview.png similarity index 100% rename from drama/assets/images/dramapreview.png rename to files/assets/images/dramapreview.png diff --git a/drama/assets/images/emojis/2thumbsup.gif b/files/assets/images/emojis/2thumbsup.gif similarity index 100% rename from drama/assets/images/emojis/2thumbsup.gif rename to files/assets/images/emojis/2thumbsup.gif diff --git a/drama/assets/images/emojis/D.gif b/files/assets/images/emojis/D.gif similarity index 100% rename from drama/assets/images/emojis/D.gif rename to files/assets/images/emojis/D.gif diff --git a/drama/assets/images/emojis/XD.gif b/files/assets/images/emojis/XD.gif similarity index 100% rename from drama/assets/images/emojis/XD.gif rename to files/assets/images/emojis/XD.gif diff --git a/drama/assets/images/emojis/abusivewife.gif b/files/assets/images/emojis/abusivewife.gif similarity index 100% rename from drama/assets/images/emojis/abusivewife.gif rename to files/assets/images/emojis/abusivewife.gif diff --git a/drama/assets/images/emojis/aliendj.gif b/files/assets/images/emojis/aliendj.gif similarity index 100% rename from drama/assets/images/emojis/aliendj.gif rename to files/assets/images/emojis/aliendj.gif diff --git a/drama/assets/images/emojis/ambulance.gif b/files/assets/images/emojis/ambulance.gif similarity index 100% rename from drama/assets/images/emojis/ambulance.gif rename to files/assets/images/emojis/ambulance.gif diff --git a/drama/assets/images/emojis/ancap.gif b/files/assets/images/emojis/ancap.gif similarity index 100% rename from drama/assets/images/emojis/ancap.gif rename to files/assets/images/emojis/ancap.gif diff --git a/drama/assets/images/emojis/angry.gif b/files/assets/images/emojis/angry.gif similarity index 100% rename from drama/assets/images/emojis/angry.gif rename to files/assets/images/emojis/angry.gif diff --git a/drama/assets/images/emojis/angrywhip.gif b/files/assets/images/emojis/angrywhip.gif similarity index 100% rename from drama/assets/images/emojis/angrywhip.gif rename to files/assets/images/emojis/angrywhip.gif diff --git a/drama/assets/images/emojis/animesexual.gif b/files/assets/images/emojis/animesexual.gif similarity index 100% rename from drama/assets/images/emojis/animesexual.gif rename to files/assets/images/emojis/animesexual.gif diff --git a/drama/assets/images/emojis/argue.gif b/files/assets/images/emojis/argue.gif similarity index 100% rename from drama/assets/images/emojis/argue.gif rename to files/assets/images/emojis/argue.gif diff --git a/drama/assets/images/emojis/aroused.gif b/files/assets/images/emojis/aroused.gif similarity index 100% rename from drama/assets/images/emojis/aroused.gif rename to files/assets/images/emojis/aroused.gif diff --git a/drama/assets/images/emojis/ashamed.gif b/files/assets/images/emojis/ashamed.gif similarity index 100% rename from drama/assets/images/emojis/ashamed.gif rename to files/assets/images/emojis/ashamed.gif diff --git a/drama/assets/images/emojis/badass.gif b/files/assets/images/emojis/badass.gif similarity index 100% rename from drama/assets/images/emojis/badass.gif rename to files/assets/images/emojis/badass.gif diff --git a/drama/assets/images/emojis/banana.gif b/files/assets/images/emojis/banana.gif similarity index 100% rename from drama/assets/images/emojis/banana.gif rename to files/assets/images/emojis/banana.gif diff --git a/drama/assets/images/emojis/band.gif b/files/assets/images/emojis/band.gif similarity index 100% rename from drama/assets/images/emojis/band.gif rename to files/assets/images/emojis/band.gif diff --git a/drama/assets/images/emojis/banghead.gif b/files/assets/images/emojis/banghead.gif similarity index 100% rename from drama/assets/images/emojis/banghead.gif rename to files/assets/images/emojis/banghead.gif diff --git a/drama/assets/images/emojis/bardfinn.gif b/files/assets/images/emojis/bardfinn.gif similarity index 100% rename from drama/assets/images/emojis/bardfinn.gif rename to files/assets/images/emojis/bardfinn.gif diff --git a/drama/assets/images/emojis/batman.gif b/files/assets/images/emojis/batman.gif similarity index 100% rename from drama/assets/images/emojis/batman.gif rename to files/assets/images/emojis/batman.gif diff --git a/drama/assets/images/emojis/bigeyes.gif b/files/assets/images/emojis/bigeyes.gif similarity index 100% rename from drama/assets/images/emojis/bigeyes.gif rename to files/assets/images/emojis/bigeyes.gif diff --git a/drama/assets/images/emojis/bitchplease.gif b/files/assets/images/emojis/bitchplease.gif similarity index 100% rename from drama/assets/images/emojis/bitchplease.gif rename to files/assets/images/emojis/bitchplease.gif diff --git a/drama/assets/images/emojis/bite.gif b/files/assets/images/emojis/bite.gif similarity index 100% rename from drama/assets/images/emojis/bite.gif rename to files/assets/images/emojis/bite.gif diff --git a/drama/assets/images/emojis/blacknation.gif b/files/assets/images/emojis/blacknation.gif similarity index 100% rename from drama/assets/images/emojis/blacknation.gif rename to files/assets/images/emojis/blacknation.gif diff --git a/drama/assets/images/emojis/blind.gif b/files/assets/images/emojis/blind.gif similarity index 100% rename from drama/assets/images/emojis/blind.gif rename to files/assets/images/emojis/blind.gif diff --git a/drama/assets/images/emojis/blm.gif b/files/assets/images/emojis/blm.gif similarity index 100% rename from drama/assets/images/emojis/blm.gif rename to files/assets/images/emojis/blm.gif diff --git a/drama/assets/images/emojis/bloomer.gif b/files/assets/images/emojis/bloomer.gif similarity index 100% rename from drama/assets/images/emojis/bloomer.gif rename to files/assets/images/emojis/bloomer.gif diff --git a/drama/assets/images/emojis/blowkiss.gif b/files/assets/images/emojis/blowkiss.gif similarity index 100% rename from drama/assets/images/emojis/blowkiss.gif rename to files/assets/images/emojis/blowkiss.gif diff --git a/drama/assets/images/emojis/blueline.gif b/files/assets/images/emojis/blueline.gif similarity index 100% rename from drama/assets/images/emojis/blueline.gif rename to files/assets/images/emojis/blueline.gif diff --git a/drama/assets/images/emojis/blush.gif b/files/assets/images/emojis/blush.gif similarity index 100% rename from drama/assets/images/emojis/blush.gif rename to files/assets/images/emojis/blush.gif diff --git a/drama/assets/images/emojis/bong.gif b/files/assets/images/emojis/bong.gif similarity index 100% rename from drama/assets/images/emojis/bong.gif rename to files/assets/images/emojis/bong.gif diff --git a/drama/assets/images/emojis/boomer.gif b/files/assets/images/emojis/boomer.gif similarity index 100% rename from drama/assets/images/emojis/boomer.gif rename to files/assets/images/emojis/boomer.gif diff --git a/drama/assets/images/emojis/boomermonster.gif b/files/assets/images/emojis/boomermonster.gif similarity index 100% rename from drama/assets/images/emojis/boomermonster.gif rename to files/assets/images/emojis/boomermonster.gif diff --git a/drama/assets/images/emojis/bounce.gif b/files/assets/images/emojis/bounce.gif similarity index 100% rename from drama/assets/images/emojis/bounce.gif rename to files/assets/images/emojis/bounce.gif diff --git a/drama/assets/images/emojis/bow.gif b/files/assets/images/emojis/bow.gif similarity index 100% rename from drama/assets/images/emojis/bow.gif rename to files/assets/images/emojis/bow.gif diff --git a/drama/assets/images/emojis/brainletbush.gif b/files/assets/images/emojis/brainletbush.gif similarity index 100% rename from drama/assets/images/emojis/brainletbush.gif rename to files/assets/images/emojis/brainletbush.gif diff --git a/drama/assets/images/emojis/brainletcaved.gif b/files/assets/images/emojis/brainletcaved.gif similarity index 100% rename from drama/assets/images/emojis/brainletcaved.gif rename to files/assets/images/emojis/brainletcaved.gif diff --git a/drama/assets/images/emojis/brainletchair.gif b/files/assets/images/emojis/brainletchair.gif similarity index 100% rename from drama/assets/images/emojis/brainletchair.gif rename to files/assets/images/emojis/brainletchair.gif diff --git a/drama/assets/images/emojis/brainletchest.gif b/files/assets/images/emojis/brainletchest.gif similarity index 100% rename from drama/assets/images/emojis/brainletchest.gif rename to files/assets/images/emojis/brainletchest.gif diff --git a/drama/assets/images/emojis/brainletmaga.gif b/files/assets/images/emojis/brainletmaga.gif similarity index 100% rename from drama/assets/images/emojis/brainletmaga.gif rename to files/assets/images/emojis/brainletmaga.gif diff --git a/drama/assets/images/emojis/brainletpit.gif b/files/assets/images/emojis/brainletpit.gif similarity index 100% rename from drama/assets/images/emojis/brainletpit.gif rename to files/assets/images/emojis/brainletpit.gif diff --git a/drama/assets/images/emojis/breakheart.gif b/files/assets/images/emojis/breakheart.gif similarity index 100% rename from drama/assets/images/emojis/breakheart.gif rename to files/assets/images/emojis/breakheart.gif diff --git a/drama/assets/images/emojis/bs.gif b/files/assets/images/emojis/bs.gif similarity index 100% rename from drama/assets/images/emojis/bs.gif rename to files/assets/images/emojis/bs.gif diff --git a/drama/assets/images/emojis/cartwheel.gif b/files/assets/images/emojis/cartwheel.gif similarity index 100% rename from drama/assets/images/emojis/cartwheel.gif rename to files/assets/images/emojis/cartwheel.gif diff --git a/drama/assets/images/emojis/cat.gif b/files/assets/images/emojis/cat.gif similarity index 100% rename from drama/assets/images/emojis/cat.gif rename to files/assets/images/emojis/cat.gif diff --git a/drama/assets/images/emojis/celebrate.gif b/files/assets/images/emojis/celebrate.gif similarity index 100% rename from drama/assets/images/emojis/celebrate.gif rename to files/assets/images/emojis/celebrate.gif diff --git a/drama/assets/images/emojis/cerealguypart2.gif b/files/assets/images/emojis/cerealguypart2.gif similarity index 100% rename from drama/assets/images/emojis/cerealguypart2.gif rename to files/assets/images/emojis/cerealguypart2.gif diff --git a/drama/assets/images/emojis/chad.gif b/files/assets/images/emojis/chad.gif similarity index 100% rename from drama/assets/images/emojis/chad.gif rename to files/assets/images/emojis/chad.gif diff --git a/drama/assets/images/emojis/chadarab.gif b/files/assets/images/emojis/chadarab.gif similarity index 100% rename from drama/assets/images/emojis/chadarab.gif rename to files/assets/images/emojis/chadarab.gif diff --git a/drama/assets/images/emojis/chadasian.gif b/files/assets/images/emojis/chadasian.gif similarity index 100% rename from drama/assets/images/emojis/chadasian.gif rename to files/assets/images/emojis/chadasian.gif diff --git a/drama/assets/images/emojis/chadblack.gif b/files/assets/images/emojis/chadblack.gif similarity index 100% rename from drama/assets/images/emojis/chadblack.gif rename to files/assets/images/emojis/chadblack.gif diff --git a/drama/assets/images/emojis/chadjesus.gif b/files/assets/images/emojis/chadjesus.gif similarity index 100% rename from drama/assets/images/emojis/chadjesus.gif rename to files/assets/images/emojis/chadjesus.gif diff --git a/drama/assets/images/emojis/chadjew.gif b/files/assets/images/emojis/chadjew.gif similarity index 100% rename from drama/assets/images/emojis/chadjew.gif rename to files/assets/images/emojis/chadjew.gif diff --git a/drama/assets/images/emojis/chadjihadi.gif b/files/assets/images/emojis/chadjihadi.gif similarity index 100% rename from drama/assets/images/emojis/chadjihadi.gif rename to files/assets/images/emojis/chadjihadi.gif diff --git a/drama/assets/images/emojis/chadlatino.gif b/files/assets/images/emojis/chadlatino.gif similarity index 100% rename from drama/assets/images/emojis/chadlatino.gif rename to files/assets/images/emojis/chadlatino.gif diff --git a/drama/assets/images/emojis/chadlibleft.gif b/files/assets/images/emojis/chadlibleft.gif similarity index 100% rename from drama/assets/images/emojis/chadlibleft.gif rename to files/assets/images/emojis/chadlibleft.gif diff --git a/files/assets/images/emojis/chadno.gif b/files/assets/images/emojis/chadno.gif new file mode 100644 index 000000000..5e5395559 Binary files /dev/null and b/files/assets/images/emojis/chadno.gif differ diff --git a/drama/assets/images/emojis/chadnordic.gif b/files/assets/images/emojis/chadnordic.gif similarity index 100% rename from drama/assets/images/emojis/chadnordic.gif rename to files/assets/images/emojis/chadnordic.gif diff --git a/drama/assets/images/emojis/chadsikh.gif b/files/assets/images/emojis/chadsikh.gif similarity index 100% rename from drama/assets/images/emojis/chadsikh.gif rename to files/assets/images/emojis/chadsikh.gif diff --git a/drama/assets/images/emojis/chadusa.gif b/files/assets/images/emojis/chadusa.gif similarity index 100% rename from drama/assets/images/emojis/chadusa.gif rename to files/assets/images/emojis/chadusa.gif diff --git a/files/assets/images/emojis/chadyes.gif b/files/assets/images/emojis/chadyes.gif new file mode 100644 index 000000000..540ca6f20 Binary files /dev/null and b/files/assets/images/emojis/chadyes.gif differ diff --git a/drama/assets/images/emojis/chainsaw.gif b/files/assets/images/emojis/chainsaw.gif similarity index 100% rename from drama/assets/images/emojis/chainsaw.gif rename to files/assets/images/emojis/chainsaw.gif diff --git a/drama/assets/images/emojis/challengeaccepted.gif b/files/assets/images/emojis/challengeaccepted.gif similarity index 100% rename from drama/assets/images/emojis/challengeaccepted.gif rename to files/assets/images/emojis/challengeaccepted.gif diff --git a/drama/assets/images/emojis/cheers.gif b/files/assets/images/emojis/cheers.gif similarity index 100% rename from drama/assets/images/emojis/cheers.gif rename to files/assets/images/emojis/cheers.gif diff --git a/drama/assets/images/emojis/clap.gif b/files/assets/images/emojis/clap.gif similarity index 100% rename from drama/assets/images/emojis/clap.gif rename to files/assets/images/emojis/clap.gif diff --git a/drama/assets/images/emojis/cold.gif b/files/assets/images/emojis/cold.gif similarity index 100% rename from drama/assets/images/emojis/cold.gif rename to files/assets/images/emojis/cold.gif diff --git a/drama/assets/images/emojis/confused.gif b/files/assets/images/emojis/confused.gif similarity index 100% rename from drama/assets/images/emojis/confused.gif rename to files/assets/images/emojis/confused.gif diff --git a/drama/assets/images/emojis/contentiouscereal.gif b/files/assets/images/emojis/contentiouscereal.gif similarity index 100% rename from drama/assets/images/emojis/contentiouscereal.gif rename to files/assets/images/emojis/contentiouscereal.gif diff --git a/drama/assets/images/emojis/coomer.gif b/files/assets/images/emojis/coomer.gif similarity index 100% rename from drama/assets/images/emojis/coomer.gif rename to files/assets/images/emojis/coomer.gif diff --git a/drama/assets/images/emojis/crazyeyes.gif b/files/assets/images/emojis/crazyeyes.gif similarity index 100% rename from drama/assets/images/emojis/crazyeyes.gif rename to files/assets/images/emojis/crazyeyes.gif diff --git a/drama/assets/images/emojis/cry.gif b/files/assets/images/emojis/cry.gif similarity index 100% rename from drama/assets/images/emojis/cry.gif rename to files/assets/images/emojis/cry.gif diff --git a/drama/assets/images/emojis/cryingatcuteness.gif b/files/assets/images/emojis/cryingatcuteness.gif similarity index 100% rename from drama/assets/images/emojis/cryingatcuteness.gif rename to files/assets/images/emojis/cryingatcuteness.gif diff --git a/drama/assets/images/emojis/cthulhu.gif b/files/assets/images/emojis/cthulhu.gif similarity index 100% rename from drama/assets/images/emojis/cthulhu.gif rename to files/assets/images/emojis/cthulhu.gif diff --git a/drama/assets/images/emojis/cute.gif b/files/assets/images/emojis/cute.gif similarity index 100% rename from drama/assets/images/emojis/cute.gif rename to files/assets/images/emojis/cute.gif diff --git a/drama/assets/images/emojis/daydream.gif b/files/assets/images/emojis/daydream.gif similarity index 100% rename from drama/assets/images/emojis/daydream.gif rename to files/assets/images/emojis/daydream.gif diff --git a/drama/assets/images/emojis/ddr.gif b/files/assets/images/emojis/ddr.gif similarity index 100% rename from drama/assets/images/emojis/ddr.gif rename to files/assets/images/emojis/ddr.gif diff --git a/drama/assets/images/emojis/deadpool.gif b/files/assets/images/emojis/deadpool.gif similarity index 100% rename from drama/assets/images/emojis/deadpool.gif rename to files/assets/images/emojis/deadpool.gif diff --git a/drama/assets/images/emojis/derp.gif b/files/assets/images/emojis/derp.gif similarity index 100% rename from drama/assets/images/emojis/derp.gif rename to files/assets/images/emojis/derp.gif diff --git a/drama/assets/images/emojis/derpcornsyrup.gif b/files/assets/images/emojis/derpcornsyrup.gif similarity index 100% rename from drama/assets/images/emojis/derpcornsyrup.gif rename to files/assets/images/emojis/derpcornsyrup.gif diff --git a/drama/assets/images/emojis/derpcrying.gif b/files/assets/images/emojis/derpcrying.gif similarity index 100% rename from drama/assets/images/emojis/derpcrying.gif rename to files/assets/images/emojis/derpcrying.gif diff --git a/drama/assets/images/emojis/derpcute.gif b/files/assets/images/emojis/derpcute.gif similarity index 100% rename from drama/assets/images/emojis/derpcute.gif rename to files/assets/images/emojis/derpcute.gif diff --git a/drama/assets/images/emojis/derpdumb.gif b/files/assets/images/emojis/derpdumb.gif similarity index 100% rename from drama/assets/images/emojis/derpdumb.gif rename to files/assets/images/emojis/derpdumb.gif diff --git a/drama/assets/images/emojis/derpeuphoria.gif b/files/assets/images/emojis/derpeuphoria.gif similarity index 100% rename from drama/assets/images/emojis/derpeuphoria.gif rename to files/assets/images/emojis/derpeuphoria.gif diff --git a/drama/assets/images/emojis/derpinahd.gif b/files/assets/images/emojis/derpinahd.gif similarity index 100% rename from drama/assets/images/emojis/derpinahd.gif rename to files/assets/images/emojis/derpinahd.gif diff --git a/drama/assets/images/emojis/derpinapokerface.gif b/files/assets/images/emojis/derpinapokerface.gif similarity index 100% rename from drama/assets/images/emojis/derpinapokerface.gif rename to files/assets/images/emojis/derpinapokerface.gif diff --git a/drama/assets/images/emojis/derpinasnickering.gif b/files/assets/images/emojis/derpinasnickering.gif similarity index 100% rename from drama/assets/images/emojis/derpinasnickering.gif rename to files/assets/images/emojis/derpinasnickering.gif diff --git a/drama/assets/images/emojis/derpprocessing.gif b/files/assets/images/emojis/derpprocessing.gif similarity index 100% rename from drama/assets/images/emojis/derpprocessing.gif rename to files/assets/images/emojis/derpprocessing.gif diff --git a/drama/assets/images/emojis/derprealization.gif b/files/assets/images/emojis/derprealization.gif similarity index 100% rename from drama/assets/images/emojis/derprealization.gif rename to files/assets/images/emojis/derprealization.gif diff --git a/drama/assets/images/emojis/derpsnickering.gif b/files/assets/images/emojis/derpsnickering.gif similarity index 100% rename from drama/assets/images/emojis/derpsnickering.gif rename to files/assets/images/emojis/derpsnickering.gif diff --git a/drama/assets/images/emojis/derptalking.gif b/files/assets/images/emojis/derptalking.gif similarity index 100% rename from drama/assets/images/emojis/derptalking.gif rename to files/assets/images/emojis/derptalking.gif diff --git a/drama/assets/images/emojis/derpthinking.gif b/files/assets/images/emojis/derpthinking.gif similarity index 100% rename from drama/assets/images/emojis/derpthinking.gif rename to files/assets/images/emojis/derpthinking.gif diff --git a/drama/assets/images/emojis/derpthumbsup.gif b/files/assets/images/emojis/derpthumbsup.gif similarity index 100% rename from drama/assets/images/emojis/derpthumbsup.gif rename to files/assets/images/emojis/derpthumbsup.gif diff --git a/drama/assets/images/emojis/derpunimpressed.gif b/files/assets/images/emojis/derpunimpressed.gif similarity index 100% rename from drama/assets/images/emojis/derpunimpressed.gif rename to files/assets/images/emojis/derpunimpressed.gif diff --git a/drama/assets/images/emojis/derpwhy.gif b/files/assets/images/emojis/derpwhy.gif similarity index 100% rename from drama/assets/images/emojis/derpwhy.gif rename to files/assets/images/emojis/derpwhy.gif diff --git a/drama/assets/images/emojis/devilsmile.gif b/files/assets/images/emojis/devilsmile.gif similarity index 100% rename from drama/assets/images/emojis/devilsmile.gif rename to files/assets/images/emojis/devilsmile.gif diff --git a/drama/assets/images/emojis/diddle.gif b/files/assets/images/emojis/diddle.gif similarity index 100% rename from drama/assets/images/emojis/diddle.gif rename to files/assets/images/emojis/diddle.gif diff --git a/drama/assets/images/emojis/die.gif b/files/assets/images/emojis/die.gif similarity index 100% rename from drama/assets/images/emojis/die.gif rename to files/assets/images/emojis/die.gif diff --git a/drama/assets/images/emojis/distress.gif b/files/assets/images/emojis/distress.gif similarity index 100% rename from drama/assets/images/emojis/distress.gif rename to files/assets/images/emojis/distress.gif diff --git a/drama/assets/images/emojis/disturbing.gif b/files/assets/images/emojis/disturbing.gif similarity index 100% rename from drama/assets/images/emojis/disturbing.gif rename to files/assets/images/emojis/disturbing.gif diff --git a/drama/assets/images/emojis/dizzy.gif b/files/assets/images/emojis/dizzy.gif similarity index 100% rename from drama/assets/images/emojis/dizzy.gif rename to files/assets/images/emojis/dizzy.gif diff --git a/drama/assets/images/emojis/domo.gif b/files/assets/images/emojis/domo.gif similarity index 100% rename from drama/assets/images/emojis/domo.gif rename to files/assets/images/emojis/domo.gif diff --git a/drama/assets/images/emojis/donotwant.gif b/files/assets/images/emojis/donotwant.gif similarity index 100% rename from drama/assets/images/emojis/donotwant.gif rename to files/assets/images/emojis/donotwant.gif diff --git a/drama/assets/images/emojis/doomer.gif b/files/assets/images/emojis/doomer.gif similarity index 100% rename from drama/assets/images/emojis/doomer.gif rename to files/assets/images/emojis/doomer.gif diff --git a/drama/assets/images/emojis/doomerfront.gif b/files/assets/images/emojis/doomerfront.gif similarity index 100% rename from drama/assets/images/emojis/doomerfront.gif rename to files/assets/images/emojis/doomerfront.gif diff --git a/drama/assets/images/emojis/doomergirl.gif b/files/assets/images/emojis/doomergirl.gif similarity index 100% rename from drama/assets/images/emojis/doomergirl.gif rename to files/assets/images/emojis/doomergirl.gif diff --git a/drama/assets/images/emojis/doughboy.gif b/files/assets/images/emojis/doughboy.gif similarity index 100% rename from drama/assets/images/emojis/doughboy.gif rename to files/assets/images/emojis/doughboy.gif diff --git a/drama/assets/images/emojis/dreamgender.gif b/files/assets/images/emojis/dreamgender.gif similarity index 100% rename from drama/assets/images/emojis/dreamgender.gif rename to files/assets/images/emojis/dreamgender.gif diff --git a/drama/assets/images/emojis/drink.gif b/files/assets/images/emojis/drink.gif similarity index 100% rename from drama/assets/images/emojis/drink.gif rename to files/assets/images/emojis/drink.gif diff --git a/drama/assets/images/emojis/drool.gif b/files/assets/images/emojis/drool.gif similarity index 100% rename from drama/assets/images/emojis/drool.gif rename to files/assets/images/emojis/drool.gif diff --git a/drama/assets/images/emojis/dudeweedlmao.gif b/files/assets/images/emojis/dudeweedlmao.gif similarity index 100% rename from drama/assets/images/emojis/dudeweedlmao.gif rename to files/assets/images/emojis/dudeweedlmao.gif diff --git a/drama/assets/images/emojis/edward.gif b/files/assets/images/emojis/edward.gif similarity index 100% rename from drama/assets/images/emojis/edward.gif rename to files/assets/images/emojis/edward.gif diff --git a/drama/assets/images/emojis/electro.gif b/files/assets/images/emojis/electro.gif similarity index 100% rename from drama/assets/images/emojis/electro.gif rename to files/assets/images/emojis/electro.gif diff --git a/drama/assets/images/emojis/elephant.gif b/files/assets/images/emojis/elephant.gif similarity index 100% rename from drama/assets/images/emojis/elephant.gif rename to files/assets/images/emojis/elephant.gif diff --git a/drama/assets/images/emojis/embarrassed.gif b/files/assets/images/emojis/embarrassed.gif similarity index 100% rename from drama/assets/images/emojis/embarrassed.gif rename to files/assets/images/emojis/embarrassed.gif diff --git a/drama/assets/images/emojis/emo.gif b/files/assets/images/emojis/emo.gif similarity index 100% rename from drama/assets/images/emojis/emo.gif rename to files/assets/images/emojis/emo.gif diff --git a/drama/assets/images/emojis/emo2.gif b/files/assets/images/emojis/emo2.gif similarity index 100% rename from drama/assets/images/emojis/emo2.gif rename to files/assets/images/emojis/emo2.gif diff --git a/drama/assets/images/emojis/epicfacefeatures.gif b/files/assets/images/emojis/epicfacefeatures.gif similarity index 100% rename from drama/assets/images/emojis/epicfacefeatures.gif rename to files/assets/images/emojis/epicfacefeatures.gif diff --git a/drama/assets/images/emojis/ethot.gif b/files/assets/images/emojis/ethot.gif similarity index 100% rename from drama/assets/images/emojis/ethot.gif rename to files/assets/images/emojis/ethot.gif diff --git a/drama/assets/images/emojis/evil.gif b/files/assets/images/emojis/evil.gif similarity index 100% rename from drama/assets/images/emojis/evil.gif rename to files/assets/images/emojis/evil.gif diff --git a/drama/assets/images/emojis/evilclown.gif b/files/assets/images/emojis/evilclown.gif similarity index 100% rename from drama/assets/images/emojis/evilclown.gif rename to files/assets/images/emojis/evilclown.gif diff --git a/drama/assets/images/emojis/evilgrin.gif b/files/assets/images/emojis/evilgrin.gif similarity index 100% rename from drama/assets/images/emojis/evilgrin.gif rename to files/assets/images/emojis/evilgrin.gif diff --git a/drama/assets/images/emojis/facepalm.gif b/files/assets/images/emojis/facepalm.gif similarity index 100% rename from drama/assets/images/emojis/facepalm.gif rename to files/assets/images/emojis/facepalm.gif diff --git a/drama/assets/images/emojis/fancywithwine.gif b/files/assets/images/emojis/fancywithwine.gif similarity index 100% rename from drama/assets/images/emojis/fancywithwine.gif rename to files/assets/images/emojis/fancywithwine.gif diff --git a/drama/assets/images/emojis/fap.gif b/files/assets/images/emojis/fap.gif similarity index 100% rename from drama/assets/images/emojis/fap.gif rename to files/assets/images/emojis/fap.gif diff --git a/drama/assets/images/emojis/fatbrain.gif b/files/assets/images/emojis/fatbrain.gif similarity index 100% rename from drama/assets/images/emojis/fatbrain.gif rename to files/assets/images/emojis/fatbrain.gif diff --git a/drama/assets/images/emojis/fatpride.gif b/files/assets/images/emojis/fatpride.gif similarity index 100% rename from drama/assets/images/emojis/fatpride.gif rename to files/assets/images/emojis/fatpride.gif diff --git a/drama/assets/images/emojis/fatpriest.gif b/files/assets/images/emojis/fatpriest.gif similarity index 100% rename from drama/assets/images/emojis/fatpriest.gif rename to files/assets/images/emojis/fatpriest.gif diff --git a/drama/assets/images/emojis/femboy.gif b/files/assets/images/emojis/femboy.gif similarity index 100% rename from drama/assets/images/emojis/femboy.gif rename to files/assets/images/emojis/femboy.gif diff --git a/drama/assets/images/emojis/fffffffuuuuuuuuuuuu.gif b/files/assets/images/emojis/fffffffuuuuuuuuuuuu.gif similarity index 100% rename from drama/assets/images/emojis/fffffffuuuuuuuuuuuu.gif rename to files/assets/images/emojis/fffffffuuuuuuuuuuuu.gif diff --git a/drama/assets/images/emojis/flamethrower.gif b/files/assets/images/emojis/flamethrower.gif similarity index 100% rename from drama/assets/images/emojis/flamethrower.gif rename to files/assets/images/emojis/flamethrower.gif diff --git a/drama/assets/images/emojis/flipbird.gif b/files/assets/images/emojis/flipbird.gif similarity index 100% rename from drama/assets/images/emojis/flipbird.gif rename to files/assets/images/emojis/flipbird.gif diff --git a/drama/assets/images/emojis/flipthetable.gif b/files/assets/images/emojis/flipthetable.gif similarity index 100% rename from drama/assets/images/emojis/flipthetable.gif rename to files/assets/images/emojis/flipthetable.gif diff --git a/drama/assets/images/emojis/flirt.gif b/files/assets/images/emojis/flirt.gif similarity index 100% rename from drama/assets/images/emojis/flirt.gif rename to files/assets/images/emojis/flirt.gif diff --git a/drama/assets/images/emojis/foreveralone.gif b/files/assets/images/emojis/foreveralone.gif similarity index 100% rename from drama/assets/images/emojis/foreveralone.gif rename to files/assets/images/emojis/foreveralone.gif diff --git a/drama/assets/images/emojis/foreveralonehappy.gif b/files/assets/images/emojis/foreveralonehappy.gif similarity index 100% rename from drama/assets/images/emojis/foreveralonehappy.gif rename to files/assets/images/emojis/foreveralonehappy.gif diff --git a/drama/assets/images/emojis/frown.gif b/files/assets/images/emojis/frown.gif similarity index 100% rename from drama/assets/images/emojis/frown.gif rename to files/assets/images/emojis/frown.gif diff --git a/drama/assets/images/emojis/gasp.gif b/files/assets/images/emojis/gasp.gif similarity index 100% rename from drama/assets/images/emojis/gasp.gif rename to files/assets/images/emojis/gasp.gif diff --git a/files/assets/images/emojis/gigachad.gif b/files/assets/images/emojis/gigachad.gif new file mode 100644 index 000000000..78b52ded9 Binary files /dev/null and b/files/assets/images/emojis/gigachad.gif differ diff --git a/drama/assets/images/emojis/glomp.gif b/files/assets/images/emojis/glomp.gif similarity index 100% rename from drama/assets/images/emojis/glomp.gif rename to files/assets/images/emojis/glomp.gif diff --git a/drama/assets/images/emojis/go.gif b/files/assets/images/emojis/go.gif similarity index 100% rename from drama/assets/images/emojis/go.gif rename to files/assets/images/emojis/go.gif diff --git a/drama/assets/images/emojis/gogetter.gif b/files/assets/images/emojis/gogetter.gif similarity index 100% rename from drama/assets/images/emojis/gogetter.gif rename to files/assets/images/emojis/gogetter.gif diff --git a/drama/assets/images/emojis/gooby.gif b/files/assets/images/emojis/gooby.gif similarity index 100% rename from drama/assets/images/emojis/gooby.gif rename to files/assets/images/emojis/gooby.gif diff --git a/drama/assets/images/emojis/grr.gif b/files/assets/images/emojis/grr.gif similarity index 100% rename from drama/assets/images/emojis/grr.gif rename to files/assets/images/emojis/grr.gif diff --git a/drama/assets/images/emojis/grug.gif b/files/assets/images/emojis/grug.gif similarity index 100% rename from drama/assets/images/emojis/grug.gif rename to files/assets/images/emojis/grug.gif diff --git a/drama/assets/images/emojis/gtfo.gif b/files/assets/images/emojis/gtfo.gif similarity index 100% rename from drama/assets/images/emojis/gtfo.gif rename to files/assets/images/emojis/gtfo.gif diff --git a/drama/assets/images/emojis/guitar.gif b/files/assets/images/emojis/guitar.gif similarity index 100% rename from drama/assets/images/emojis/guitar.gif rename to files/assets/images/emojis/guitar.gif diff --git a/drama/assets/images/emojis/haha.gif b/files/assets/images/emojis/haha.gif similarity index 100% rename from drama/assets/images/emojis/haha.gif rename to files/assets/images/emojis/haha.gif diff --git a/drama/assets/images/emojis/handshake.gif b/files/assets/images/emojis/handshake.gif similarity index 100% rename from drama/assets/images/emojis/handshake.gif rename to files/assets/images/emojis/handshake.gif diff --git a/drama/assets/images/emojis/happydance.gif b/files/assets/images/emojis/happydance.gif similarity index 100% rename from drama/assets/images/emojis/happydance.gif rename to files/assets/images/emojis/happydance.gif diff --git a/drama/assets/images/emojis/headbang.gif b/files/assets/images/emojis/headbang.gif similarity index 100% rename from drama/assets/images/emojis/headbang.gif rename to files/assets/images/emojis/headbang.gif diff --git a/drama/assets/images/emojis/heart.gif b/files/assets/images/emojis/heart.gif similarity index 100% rename from drama/assets/images/emojis/heart.gif rename to files/assets/images/emojis/heart.gif diff --git a/drama/assets/images/emojis/heartbeat.gif b/files/assets/images/emojis/heartbeat.gif similarity index 100% rename from drama/assets/images/emojis/heartbeat.gif rename to files/assets/images/emojis/heartbeat.gif diff --git a/drama/assets/images/emojis/hearts.gif b/files/assets/images/emojis/hearts.gif similarity index 100% rename from drama/assets/images/emojis/hearts.gif rename to files/assets/images/emojis/hearts.gif diff --git a/drama/assets/images/emojis/hewillnever.gif b/files/assets/images/emojis/hewillnever.gif similarity index 100% rename from drama/assets/images/emojis/hewillnever.gif rename to files/assets/images/emojis/hewillnever.gif diff --git a/drama/assets/images/emojis/highfive.gif b/files/assets/images/emojis/highfive.gif similarity index 100% rename from drama/assets/images/emojis/highfive.gif rename to files/assets/images/emojis/highfive.gif diff --git a/drama/assets/images/emojis/hmm.gif b/files/assets/images/emojis/hmm.gif similarity index 100% rename from drama/assets/images/emojis/hmm.gif rename to files/assets/images/emojis/hmm.gif diff --git a/drama/assets/images/emojis/hmph.gif b/files/assets/images/emojis/hmph.gif similarity index 100% rename from drama/assets/images/emojis/hmph.gif rename to files/assets/images/emojis/hmph.gif diff --git a/drama/assets/images/emojis/holdhands.gif b/files/assets/images/emojis/holdhands.gif similarity index 100% rename from drama/assets/images/emojis/holdhands.gif rename to files/assets/images/emojis/holdhands.gif diff --git a/drama/assets/images/emojis/horny.gif b/files/assets/images/emojis/horny.gif similarity index 100% rename from drama/assets/images/emojis/horny.gif rename to files/assets/images/emojis/horny.gif diff --git a/drama/assets/images/emojis/hug.gif b/files/assets/images/emojis/hug.gif similarity index 100% rename from drama/assets/images/emojis/hug.gif rename to files/assets/images/emojis/hug.gif diff --git a/drama/assets/images/emojis/hugging.gif b/files/assets/images/emojis/hugging.gif similarity index 100% rename from drama/assets/images/emojis/hugging.gif rename to files/assets/images/emojis/hugging.gif diff --git a/drama/assets/images/emojis/hugs.gif b/files/assets/images/emojis/hugs.gif similarity index 100% rename from drama/assets/images/emojis/hugs.gif rename to files/assets/images/emojis/hugs.gif diff --git a/drama/assets/images/emojis/hump.gif b/files/assets/images/emojis/hump.gif similarity index 100% rename from drama/assets/images/emojis/hump.gif rename to files/assets/images/emojis/hump.gif diff --git a/drama/assets/images/emojis/humpbed.gif b/files/assets/images/emojis/humpbed.gif similarity index 100% rename from drama/assets/images/emojis/humpbed.gif rename to files/assets/images/emojis/humpbed.gif diff --git a/drama/assets/images/emojis/hysterical.gif b/files/assets/images/emojis/hysterical.gif similarity index 100% rename from drama/assets/images/emojis/hysterical.gif rename to files/assets/images/emojis/hysterical.gif diff --git a/drama/assets/images/emojis/idontknow.gif b/files/assets/images/emojis/idontknow.gif similarity index 100% rename from drama/assets/images/emojis/idontknow.gif rename to files/assets/images/emojis/idontknow.gif diff --git a/drama/assets/images/emojis/ily.gif b/files/assets/images/emojis/ily.gif similarity index 100% rename from drama/assets/images/emojis/ily.gif rename to files/assets/images/emojis/ily.gif diff --git a/drama/assets/images/emojis/incelpride.gif b/files/assets/images/emojis/incelpride.gif similarity index 100% rename from drama/assets/images/emojis/incelpride.gif rename to files/assets/images/emojis/incelpride.gif diff --git a/drama/assets/images/emojis/inlove.gif b/files/assets/images/emojis/inlove.gif similarity index 100% rename from drama/assets/images/emojis/inlove.gif rename to files/assets/images/emojis/inlove.gif diff --git a/drama/assets/images/emojis/interuptedreading.gif b/files/assets/images/emojis/interuptedreading.gif similarity index 100% rename from drama/assets/images/emojis/interuptedreading.gif rename to files/assets/images/emojis/interuptedreading.gif diff --git a/drama/assets/images/emojis/iseewhatyoudidthere.gif b/files/assets/images/emojis/iseewhatyoudidthere.gif similarity index 100% rename from drama/assets/images/emojis/iseewhatyoudidthere.gif rename to files/assets/images/emojis/iseewhatyoudidthere.gif diff --git a/drama/assets/images/emojis/israel.gif b/files/assets/images/emojis/israel.gif similarity index 100% rename from drama/assets/images/emojis/israel.gif rename to files/assets/images/emojis/israel.gif diff --git a/drama/assets/images/emojis/jason.gif b/files/assets/images/emojis/jason.gif similarity index 100% rename from drama/assets/images/emojis/jason.gif rename to files/assets/images/emojis/jason.gif diff --git a/drama/assets/images/emojis/jawdrop.gif b/files/assets/images/emojis/jawdrop.gif similarity index 100% rename from drama/assets/images/emojis/jawdrop.gif rename to files/assets/images/emojis/jawdrop.gif diff --git a/drama/assets/images/emojis/jedi.gif b/files/assets/images/emojis/jedi.gif similarity index 100% rename from drama/assets/images/emojis/jedi.gif rename to files/assets/images/emojis/jedi.gif diff --git a/drama/assets/images/emojis/jester.gif b/files/assets/images/emojis/jester.gif similarity index 100% rename from drama/assets/images/emojis/jester.gif rename to files/assets/images/emojis/jester.gif diff --git a/drama/assets/images/emojis/kaboom.gif b/files/assets/images/emojis/kaboom.gif similarity index 100% rename from drama/assets/images/emojis/kaboom.gif rename to files/assets/images/emojis/kaboom.gif diff --git a/drama/assets/images/emojis/kazakhstan.gif b/files/assets/images/emojis/kazakhstan.gif similarity index 100% rename from drama/assets/images/emojis/kazakhstan.gif rename to files/assets/images/emojis/kazakhstan.gif diff --git a/drama/assets/images/emojis/kick.gif b/files/assets/images/emojis/kick.gif similarity index 100% rename from drama/assets/images/emojis/kick.gif rename to files/assets/images/emojis/kick.gif diff --git a/drama/assets/images/emojis/killherkillher.gif b/files/assets/images/emojis/killherkillher.gif similarity index 100% rename from drama/assets/images/emojis/killherkillher.gif rename to files/assets/images/emojis/killherkillher.gif diff --git a/drama/assets/images/emojis/kiss.gif b/files/assets/images/emojis/kiss.gif similarity index 100% rename from drama/assets/images/emojis/kiss.gif rename to files/assets/images/emojis/kiss.gif diff --git a/drama/assets/images/emojis/kitty.gif b/files/assets/images/emojis/kitty.gif similarity index 100% rename from drama/assets/images/emojis/kitty.gif rename to files/assets/images/emojis/kitty.gif diff --git a/drama/assets/images/emojis/landlordlove.gif b/files/assets/images/emojis/landlordlove.gif similarity index 100% rename from drama/assets/images/emojis/landlordlove.gif rename to files/assets/images/emojis/landlordlove.gif diff --git a/drama/assets/images/emojis/laughchair.gif b/files/assets/images/emojis/laughchair.gif similarity index 100% rename from drama/assets/images/emojis/laughchair.gif rename to files/assets/images/emojis/laughchair.gif diff --git a/drama/assets/images/emojis/ledesire.gif b/files/assets/images/emojis/ledesire.gif similarity index 100% rename from drama/assets/images/emojis/ledesire.gif rename to files/assets/images/emojis/ledesire.gif diff --git a/drama/assets/images/emojis/leexcited.gif b/files/assets/images/emojis/leexcited.gif similarity index 100% rename from drama/assets/images/emojis/leexcited.gif rename to files/assets/images/emojis/leexcited.gif diff --git a/drama/assets/images/emojis/legenius.gif b/files/assets/images/emojis/legenius.gif similarity index 100% rename from drama/assets/images/emojis/legenius.gif rename to files/assets/images/emojis/legenius.gif diff --git a/drama/assets/images/emojis/lelolidk.gif b/files/assets/images/emojis/lelolidk.gif similarity index 100% rename from drama/assets/images/emojis/lelolidk.gif rename to files/assets/images/emojis/lelolidk.gif diff --git a/drama/assets/images/emojis/lemiddlefinger.gif b/files/assets/images/emojis/lemiddlefinger.gif similarity index 100% rename from drama/assets/images/emojis/lemiddlefinger.gif rename to files/assets/images/emojis/lemiddlefinger.gif diff --git a/drama/assets/images/emojis/lemindblown.gif b/files/assets/images/emojis/lemindblown.gif similarity index 100% rename from drama/assets/images/emojis/lemindblown.gif rename to files/assets/images/emojis/lemindblown.gif diff --git a/drama/assets/images/emojis/leokay.gif b/files/assets/images/emojis/leokay.gif similarity index 100% rename from drama/assets/images/emojis/leokay.gif rename to files/assets/images/emojis/leokay.gif diff --git a/drama/assets/images/emojis/lepanicrunning.gif b/files/assets/images/emojis/lepanicrunning.gif similarity index 100% rename from drama/assets/images/emojis/lepanicrunning.gif rename to files/assets/images/emojis/lepanicrunning.gif diff --git a/drama/assets/images/emojis/lepokerface.gif b/files/assets/images/emojis/lepokerface.gif similarity index 100% rename from drama/assets/images/emojis/lepokerface.gif rename to files/assets/images/emojis/lepokerface.gif diff --git a/drama/assets/images/emojis/lepokerface2.gif b/files/assets/images/emojis/lepokerface2.gif similarity index 100% rename from drama/assets/images/emojis/lepokerface2.gif rename to files/assets/images/emojis/lepokerface2.gif diff --git a/drama/assets/images/emojis/lerageface.gif b/files/assets/images/emojis/lerageface.gif similarity index 100% rename from drama/assets/images/emojis/lerageface.gif rename to files/assets/images/emojis/lerageface.gif diff --git a/drama/assets/images/emojis/leseriousface.gif b/files/assets/images/emojis/leseriousface.gif similarity index 100% rename from drama/assets/images/emojis/leseriousface.gif rename to files/assets/images/emojis/leseriousface.gif diff --git a/drama/assets/images/emojis/lgbt.gif b/files/assets/images/emojis/lgbt.gif similarity index 100% rename from drama/assets/images/emojis/lgbt.gif rename to files/assets/images/emojis/lgbt.gif diff --git a/drama/assets/images/emojis/lick.gif b/files/assets/images/emojis/lick.gif similarity index 100% rename from drama/assets/images/emojis/lick.gif rename to files/assets/images/emojis/lick.gif diff --git a/drama/assets/images/emojis/likeaboss.gif b/files/assets/images/emojis/likeaboss.gif similarity index 100% rename from drama/assets/images/emojis/likeaboss.gif rename to files/assets/images/emojis/likeaboss.gif diff --git a/drama/assets/images/emojis/link.gif b/files/assets/images/emojis/link.gif similarity index 100% rename from drama/assets/images/emojis/link.gif rename to files/assets/images/emojis/link.gif diff --git a/drama/assets/images/emojis/lol.gif b/files/assets/images/emojis/lol.gif similarity index 100% rename from drama/assets/images/emojis/lol.gif rename to files/assets/images/emojis/lol.gif diff --git a/drama/assets/images/emojis/lolbeat.gif b/files/assets/images/emojis/lolbeat.gif similarity index 100% rename from drama/assets/images/emojis/lolbeat.gif rename to files/assets/images/emojis/lolbeat.gif diff --git a/drama/assets/images/emojis/lolface.gif b/files/assets/images/emojis/lolface.gif similarity index 100% rename from drama/assets/images/emojis/lolface.gif rename to files/assets/images/emojis/lolface.gif diff --git a/drama/assets/images/emojis/longwhiskers.gif b/files/assets/images/emojis/longwhiskers.gif similarity index 100% rename from drama/assets/images/emojis/longwhiskers.gif rename to files/assets/images/emojis/longwhiskers.gif diff --git a/drama/assets/images/emojis/loving.gif b/files/assets/images/emojis/loving.gif similarity index 100% rename from drama/assets/images/emojis/loving.gif rename to files/assets/images/emojis/loving.gif diff --git a/drama/assets/images/emojis/makeout.gif b/files/assets/images/emojis/makeout.gif similarity index 100% rename from drama/assets/images/emojis/makeout.gif rename to files/assets/images/emojis/makeout.gif diff --git a/drama/assets/images/emojis/manymiddlefingers.gif b/files/assets/images/emojis/manymiddlefingers.gif similarity index 100% rename from drama/assets/images/emojis/manymiddlefingers.gif rename to files/assets/images/emojis/manymiddlefingers.gif diff --git a/drama/assets/images/emojis/marsey69.gif b/files/assets/images/emojis/marsey69.gif similarity index 100% rename from drama/assets/images/emojis/marsey69.gif rename to files/assets/images/emojis/marsey69.gif diff --git a/drama/assets/images/emojis/marseyangel.gif b/files/assets/images/emojis/marseyangel.gif similarity index 100% rename from drama/assets/images/emojis/marseyangel.gif rename to files/assets/images/emojis/marseyangel.gif diff --git a/drama/assets/images/emojis/marseyasian.gif b/files/assets/images/emojis/marseyasian.gif similarity index 100% rename from drama/assets/images/emojis/marseyasian.gif rename to files/assets/images/emojis/marseyasian.gif diff --git a/drama/assets/images/emojis/marseybingus.gif b/files/assets/images/emojis/marseybingus.gif similarity index 100% rename from drama/assets/images/emojis/marseybingus.gif rename to files/assets/images/emojis/marseybingus.gif diff --git a/drama/assets/images/emojis/marseyblm.gif b/files/assets/images/emojis/marseyblm.gif similarity index 100% rename from drama/assets/images/emojis/marseyblm.gif rename to files/assets/images/emojis/marseyblm.gif diff --git a/drama/assets/images/emojis/marseyblowkiss.gif b/files/assets/images/emojis/marseyblowkiss.gif similarity index 100% rename from drama/assets/images/emojis/marseyblowkiss.gif rename to files/assets/images/emojis/marseyblowkiss.gif diff --git a/drama/assets/images/emojis/marseyburger.gif b/files/assets/images/emojis/marseyburger.gif similarity index 100% rename from drama/assets/images/emojis/marseyburger.gif rename to files/assets/images/emojis/marseyburger.gif diff --git a/drama/assets/images/emojis/marseycomrade.gif b/files/assets/images/emojis/marseycomrade.gif similarity index 100% rename from drama/assets/images/emojis/marseycomrade.gif rename to files/assets/images/emojis/marseycomrade.gif diff --git a/drama/assets/images/emojis/marseycowboy.gif b/files/assets/images/emojis/marseycowboy.gif similarity index 100% rename from drama/assets/images/emojis/marseycowboy.gif rename to files/assets/images/emojis/marseycowboy.gif diff --git a/drama/assets/images/emojis/marseycry.gif b/files/assets/images/emojis/marseycry.gif similarity index 100% rename from drama/assets/images/emojis/marseycry.gif rename to files/assets/images/emojis/marseycry.gif diff --git a/drama/assets/images/emojis/marseydead.gif b/files/assets/images/emojis/marseydead.gif similarity index 100% rename from drama/assets/images/emojis/marseydead.gif rename to files/assets/images/emojis/marseydead.gif diff --git a/drama/assets/images/emojis/marseydepressed.gif b/files/assets/images/emojis/marseydepressed.gif similarity index 100% rename from drama/assets/images/emojis/marseydepressed.gif rename to files/assets/images/emojis/marseydepressed.gif diff --git a/drama/assets/images/emojis/marseydildo.gif b/files/assets/images/emojis/marseydildo.gif similarity index 100% rename from drama/assets/images/emojis/marseydildo.gif rename to files/assets/images/emojis/marseydildo.gif diff --git a/drama/assets/images/emojis/marseyexcited.gif b/files/assets/images/emojis/marseyexcited.gif similarity index 100% rename from drama/assets/images/emojis/marseyexcited.gif rename to files/assets/images/emojis/marseyexcited.gif diff --git a/drama/assets/images/emojis/marseyfacepalm.gif b/files/assets/images/emojis/marseyfacepalm.gif similarity index 100% rename from drama/assets/images/emojis/marseyfacepalm.gif rename to files/assets/images/emojis/marseyfacepalm.gif diff --git a/drama/assets/images/emojis/marseygift.gif b/files/assets/images/emojis/marseygift.gif similarity index 100% rename from drama/assets/images/emojis/marseygift.gif rename to files/assets/images/emojis/marseygift.gif diff --git a/drama/assets/images/emojis/marseyglam.gif b/files/assets/images/emojis/marseyglam.gif similarity index 100% rename from drama/assets/images/emojis/marseyglam.gif rename to files/assets/images/emojis/marseyglam.gif diff --git a/drama/assets/images/emojis/marseygrilling.gif b/files/assets/images/emojis/marseygrilling.gif similarity index 100% rename from drama/assets/images/emojis/marseygrilling.gif rename to files/assets/images/emojis/marseygrilling.gif diff --git a/drama/assets/images/emojis/marseyinabox.gif b/files/assets/images/emojis/marseyinabox.gif similarity index 100% rename from drama/assets/images/emojis/marseyinabox.gif rename to files/assets/images/emojis/marseyinabox.gif diff --git a/drama/assets/images/emojis/marseyira.gif b/files/assets/images/emojis/marseyira.gif similarity index 100% rename from drama/assets/images/emojis/marseyira.gif rename to files/assets/images/emojis/marseyira.gif diff --git a/drama/assets/images/emojis/marseyisis.gif b/files/assets/images/emojis/marseyisis.gif similarity index 100% rename from drama/assets/images/emojis/marseyisis.gif rename to files/assets/images/emojis/marseyisis.gif diff --git a/drama/assets/images/emojis/marseyjamming.gif b/files/assets/images/emojis/marseyjamming.gif similarity index 100% rename from drama/assets/images/emojis/marseyjamming.gif rename to files/assets/images/emojis/marseyjamming.gif diff --git a/drama/assets/images/emojis/marseyjanny.gif b/files/assets/images/emojis/marseyjanny.gif similarity index 100% rename from drama/assets/images/emojis/marseyjanny.gif rename to files/assets/images/emojis/marseyjanny.gif diff --git a/drama/assets/images/emojis/marseylaugh.gif b/files/assets/images/emojis/marseylaugh.gif similarity index 100% rename from drama/assets/images/emojis/marseylaugh.gif rename to files/assets/images/emojis/marseylaugh.gif diff --git a/drama/assets/images/emojis/marseylove.gif b/files/assets/images/emojis/marseylove.gif similarity index 100% rename from drama/assets/images/emojis/marseylove.gif rename to files/assets/images/emojis/marseylove.gif diff --git a/drama/assets/images/emojis/marseymad.gif b/files/assets/images/emojis/marseymad.gif similarity index 100% rename from drama/assets/images/emojis/marseymad.gif rename to files/assets/images/emojis/marseymad.gif diff --git a/drama/assets/images/emojis/marseymerchant.gif b/files/assets/images/emojis/marseymerchant.gif similarity index 100% rename from drama/assets/images/emojis/marseymerchant.gif rename to files/assets/images/emojis/marseymerchant.gif diff --git a/drama/assets/images/emojis/marseymermaid.gif b/files/assets/images/emojis/marseymermaid.gif similarity index 100% rename from drama/assets/images/emojis/marseymermaid.gif rename to files/assets/images/emojis/marseymermaid.gif diff --git a/drama/assets/images/emojis/marseynut.gif b/files/assets/images/emojis/marseynut.gif similarity index 100% rename from drama/assets/images/emojis/marseynut.gif rename to files/assets/images/emojis/marseynut.gif diff --git a/drama/assets/images/emojis/marseypanties.gif b/files/assets/images/emojis/marseypanties.gif similarity index 100% rename from drama/assets/images/emojis/marseypanties.gif rename to files/assets/images/emojis/marseypanties.gif diff --git a/drama/assets/images/emojis/marseyparty.gif b/files/assets/images/emojis/marseyparty.gif similarity index 100% rename from drama/assets/images/emojis/marseyparty.gif rename to files/assets/images/emojis/marseyparty.gif diff --git a/drama/assets/images/emojis/marseypat.gif b/files/assets/images/emojis/marseypat.gif similarity index 100% rename from drama/assets/images/emojis/marseypat.gif rename to files/assets/images/emojis/marseypat.gif diff --git a/drama/assets/images/emojis/marseyrain.gif b/files/assets/images/emojis/marseyrain.gif similarity index 100% rename from drama/assets/images/emojis/marseyrain.gif rename to files/assets/images/emojis/marseyrain.gif diff --git a/drama/assets/images/emojis/marseyreading.gif b/files/assets/images/emojis/marseyreading.gif similarity index 100% rename from drama/assets/images/emojis/marseyreading.gif rename to files/assets/images/emojis/marseyreading.gif diff --git a/drama/assets/images/emojis/marseyready.gif b/files/assets/images/emojis/marseyready.gif similarity index 100% rename from drama/assets/images/emojis/marseyready.gif rename to files/assets/images/emojis/marseyready.gif diff --git a/drama/assets/images/emojis/marseyreich.gif b/files/assets/images/emojis/marseyreich.gif similarity index 100% rename from drama/assets/images/emojis/marseyreich.gif rename to files/assets/images/emojis/marseyreich.gif diff --git a/drama/assets/images/emojis/marseyrentfree.gif b/files/assets/images/emojis/marseyrentfree.gif similarity index 100% rename from drama/assets/images/emojis/marseyrentfree.gif rename to files/assets/images/emojis/marseyrentfree.gif diff --git a/drama/assets/images/emojis/marseyretard.gif b/files/assets/images/emojis/marseyretard.gif similarity index 100% rename from drama/assets/images/emojis/marseyretard.gif rename to files/assets/images/emojis/marseyretard.gif diff --git a/drama/assets/images/emojis/marseysad.gif b/files/assets/images/emojis/marseysad.gif similarity index 100% rename from drama/assets/images/emojis/marseysad.gif rename to files/assets/images/emojis/marseysad.gif diff --git a/drama/assets/images/emojis/marseysadcat.gif b/files/assets/images/emojis/marseysadcat.gif similarity index 100% rename from drama/assets/images/emojis/marseysadcat.gif rename to files/assets/images/emojis/marseysadcat.gif diff --git a/drama/assets/images/emojis/marseyscarf.gif b/files/assets/images/emojis/marseyscarf.gif similarity index 100% rename from drama/assets/images/emojis/marseyscarf.gif rename to files/assets/images/emojis/marseyscarf.gif diff --git a/drama/assets/images/emojis/marseyshook.gif b/files/assets/images/emojis/marseyshook.gif similarity index 100% rename from drama/assets/images/emojis/marseyshook.gif rename to files/assets/images/emojis/marseyshook.gif diff --git a/drama/assets/images/emojis/marseysick.gif b/files/assets/images/emojis/marseysick.gif similarity index 100% rename from drama/assets/images/emojis/marseysick.gif rename to files/assets/images/emojis/marseysick.gif diff --git a/drama/assets/images/emojis/marseysipping.gif b/files/assets/images/emojis/marseysipping.gif similarity index 100% rename from drama/assets/images/emojis/marseysipping.gif rename to files/assets/images/emojis/marseysipping.gif diff --git a/drama/assets/images/emojis/marseysleep.gif b/files/assets/images/emojis/marseysleep.gif similarity index 100% rename from drama/assets/images/emojis/marseysleep.gif rename to files/assets/images/emojis/marseysleep.gif diff --git a/drama/assets/images/emojis/marseysmug.gif b/files/assets/images/emojis/marseysmug.gif similarity index 100% rename from drama/assets/images/emojis/marseysmug.gif rename to files/assets/images/emojis/marseysmug.gif diff --git a/drama/assets/images/emojis/marseythumbsup.gif b/files/assets/images/emojis/marseythumbsup.gif similarity index 100% rename from drama/assets/images/emojis/marseythumbsup.gif rename to files/assets/images/emojis/marseythumbsup.gif diff --git a/drama/assets/images/emojis/marseytrain.gif b/files/assets/images/emojis/marseytrain.gif similarity index 100% rename from drama/assets/images/emojis/marseytrain.gif rename to files/assets/images/emojis/marseytrain.gif diff --git a/drama/assets/images/emojis/marseywave.gif b/files/assets/images/emojis/marseywave.gif similarity index 100% rename from drama/assets/images/emojis/marseywave.gif rename to files/assets/images/emojis/marseywave.gif diff --git a/drama/assets/images/emojis/medal.gif b/files/assets/images/emojis/medal.gif similarity index 100% rename from drama/assets/images/emojis/medal.gif rename to files/assets/images/emojis/medal.gif diff --git a/drama/assets/images/emojis/megaman.gif b/files/assets/images/emojis/megaman.gif similarity index 100% rename from drama/assets/images/emojis/megaman.gif rename to files/assets/images/emojis/megaman.gif diff --git a/drama/assets/images/emojis/megamanguitar.gif b/files/assets/images/emojis/megamanguitar.gif similarity index 100% rename from drama/assets/images/emojis/megamanguitar.gif rename to files/assets/images/emojis/megamanguitar.gif diff --git a/drama/assets/images/emojis/megusta.gif b/files/assets/images/emojis/megusta.gif similarity index 100% rename from drama/assets/images/emojis/megusta.gif rename to files/assets/images/emojis/megusta.gif diff --git a/drama/assets/images/emojis/meow.gif b/files/assets/images/emojis/meow.gif similarity index 100% rename from drama/assets/images/emojis/meow.gif rename to files/assets/images/emojis/meow.gif diff --git a/drama/assets/images/emojis/metime.gif b/files/assets/images/emojis/metime.gif similarity index 100% rename from drama/assets/images/emojis/metime.gif rename to files/assets/images/emojis/metime.gif diff --git a/drama/assets/images/emojis/monke.gif b/files/assets/images/emojis/monke.gif similarity index 100% rename from drama/assets/images/emojis/monke.gif rename to files/assets/images/emojis/monke.gif diff --git a/drama/assets/images/emojis/mooning.gif b/files/assets/images/emojis/mooning.gif similarity index 100% rename from drama/assets/images/emojis/mooning.gif rename to files/assets/images/emojis/mooning.gif diff --git a/drama/assets/images/emojis/motherfucker.gif b/files/assets/images/emojis/motherfucker.gif similarity index 100% rename from drama/assets/images/emojis/motherfucker.gif rename to files/assets/images/emojis/motherfucker.gif diff --git a/drama/assets/images/emojis/motherofgod.gif b/files/assets/images/emojis/motherofgod.gif similarity index 100% rename from drama/assets/images/emojis/motherofgod.gif rename to files/assets/images/emojis/motherofgod.gif diff --git a/drama/assets/images/emojis/mummy.gif b/files/assets/images/emojis/mummy.gif similarity index 100% rename from drama/assets/images/emojis/mummy.gif rename to files/assets/images/emojis/mummy.gif diff --git a/drama/assets/images/emojis/mysides.gif b/files/assets/images/emojis/mysides.gif similarity index 100% rename from drama/assets/images/emojis/mysides.gif rename to files/assets/images/emojis/mysides.gif diff --git a/drama/assets/images/emojis/na.gif b/files/assets/images/emojis/na.gif similarity index 100% rename from drama/assets/images/emojis/na.gif rename to files/assets/images/emojis/na.gif diff --git a/drama/assets/images/emojis/nauseous.gif b/files/assets/images/emojis/nauseous.gif similarity index 100% rename from drama/assets/images/emojis/nauseous.gif rename to files/assets/images/emojis/nauseous.gif diff --git a/drama/assets/images/emojis/nazijak.gif b/files/assets/images/emojis/nazijak.gif similarity index 100% rename from drama/assets/images/emojis/nazijak.gif rename to files/assets/images/emojis/nazijak.gif diff --git a/drama/assets/images/emojis/nervous.gif b/files/assets/images/emojis/nervous.gif similarity index 100% rename from drama/assets/images/emojis/nervous.gif rename to files/assets/images/emojis/nervous.gif diff --git a/drama/assets/images/emojis/niger.gif b/files/assets/images/emojis/niger.gif similarity index 100% rename from drama/assets/images/emojis/niger.gif rename to files/assets/images/emojis/niger.gif diff --git a/drama/assets/images/emojis/ninja.gif b/files/assets/images/emojis/ninja.gif similarity index 100% rename from drama/assets/images/emojis/ninja.gif rename to files/assets/images/emojis/ninja.gif diff --git a/drama/assets/images/emojis/nod.gif b/files/assets/images/emojis/nod.gif similarity index 100% rename from drama/assets/images/emojis/nod.gif rename to files/assets/images/emojis/nod.gif diff --git a/drama/assets/images/emojis/nono.gif b/files/assets/images/emojis/nono.gif similarity index 100% rename from drama/assets/images/emojis/nono.gif rename to files/assets/images/emojis/nono.gif diff --git a/drama/assets/images/emojis/npc.gif b/files/assets/images/emojis/npc.gif similarity index 100% rename from drama/assets/images/emojis/npc.gif rename to files/assets/images/emojis/npc.gif diff --git a/drama/assets/images/emojis/npcfront.gif b/files/assets/images/emojis/npcfront.gif similarity index 100% rename from drama/assets/images/emojis/npcfront.gif rename to files/assets/images/emojis/npcfront.gif diff --git a/drama/assets/images/emojis/npcmaga.gif b/files/assets/images/emojis/npcmaga.gif similarity index 100% rename from drama/assets/images/emojis/npcmaga.gif rename to files/assets/images/emojis/npcmaga.gif diff --git a/drama/assets/images/emojis/ohgodwhy.gif b/files/assets/images/emojis/ohgodwhy.gif similarity index 100% rename from drama/assets/images/emojis/ohgodwhy.gif rename to files/assets/images/emojis/ohgodwhy.gif diff --git a/drama/assets/images/emojis/omg.gif b/files/assets/images/emojis/omg.gif similarity index 100% rename from drama/assets/images/emojis/omg.gif rename to files/assets/images/emojis/omg.gif diff --git a/drama/assets/images/emojis/onfire.gif b/files/assets/images/emojis/onfire.gif similarity index 100% rename from drama/assets/images/emojis/onfire.gif rename to files/assets/images/emojis/onfire.gif diff --git a/drama/assets/images/emojis/ooo.gif b/files/assets/images/emojis/ooo.gif similarity index 100% rename from drama/assets/images/emojis/ooo.gif rename to files/assets/images/emojis/ooo.gif diff --git a/drama/assets/images/emojis/orly.gif b/files/assets/images/emojis/orly.gif similarity index 100% rename from drama/assets/images/emojis/orly.gif rename to files/assets/images/emojis/orly.gif diff --git a/drama/assets/images/emojis/p.gif b/files/assets/images/emojis/p.gif similarity index 100% rename from drama/assets/images/emojis/p.gif rename to files/assets/images/emojis/p.gif diff --git a/drama/assets/images/emojis/paddle.gif b/files/assets/images/emojis/paddle.gif similarity index 100% rename from drama/assets/images/emojis/paddle.gif rename to files/assets/images/emojis/paddle.gif diff --git a/drama/assets/images/emojis/panda.gif b/files/assets/images/emojis/panda.gif similarity index 100% rename from drama/assets/images/emojis/panda.gif rename to files/assets/images/emojis/panda.gif diff --git a/drama/assets/images/emojis/pandabutt.gif b/files/assets/images/emojis/pandabutt.gif similarity index 100% rename from drama/assets/images/emojis/pandabutt.gif rename to files/assets/images/emojis/pandabutt.gif diff --git a/drama/assets/images/emojis/paranoid.gif b/files/assets/images/emojis/paranoid.gif similarity index 100% rename from drama/assets/images/emojis/paranoid.gif rename to files/assets/images/emojis/paranoid.gif diff --git a/drama/assets/images/emojis/party.gif b/files/assets/images/emojis/party.gif similarity index 100% rename from drama/assets/images/emojis/party.gif rename to files/assets/images/emojis/party.gif diff --git a/drama/assets/images/emojis/pat.gif b/files/assets/images/emojis/pat.gif similarity index 100% rename from drama/assets/images/emojis/pat.gif rename to files/assets/images/emojis/pat.gif diff --git a/drama/assets/images/emojis/peek.gif b/files/assets/images/emojis/peek.gif similarity index 100% rename from drama/assets/images/emojis/peek.gif rename to files/assets/images/emojis/peek.gif diff --git a/drama/assets/images/emojis/pervertedspiderman.gif b/files/assets/images/emojis/pervertedspiderman.gif similarity index 100% rename from drama/assets/images/emojis/pervertedspiderman.gif rename to files/assets/images/emojis/pervertedspiderman.gif diff --git a/drama/assets/images/emojis/picard.gif b/files/assets/images/emojis/picard.gif similarity index 100% rename from drama/assets/images/emojis/picard.gif rename to files/assets/images/emojis/picard.gif diff --git a/drama/assets/images/emojis/pikachu.gif b/files/assets/images/emojis/pikachu.gif similarity index 100% rename from drama/assets/images/emojis/pikachu.gif rename to files/assets/images/emojis/pikachu.gif diff --git a/drama/assets/images/emojis/pimp.gif b/files/assets/images/emojis/pimp.gif similarity index 100% rename from drama/assets/images/emojis/pimp.gif rename to files/assets/images/emojis/pimp.gif diff --git a/drama/assets/images/emojis/platyblush.gif b/files/assets/images/emojis/platyblush.gif similarity index 100% rename from drama/assets/images/emojis/platyblush.gif rename to files/assets/images/emojis/platyblush.gif diff --git a/drama/assets/images/emojis/platybruh.gif b/files/assets/images/emojis/platybruh.gif similarity index 100% rename from drama/assets/images/emojis/platybruh.gif rename to files/assets/images/emojis/platybruh.gif diff --git a/drama/assets/images/emojis/platycaveman.gif b/files/assets/images/emojis/platycaveman.gif similarity index 100% rename from drama/assets/images/emojis/platycaveman.gif rename to files/assets/images/emojis/platycaveman.gif diff --git a/drama/assets/images/emojis/platycheer.gif b/files/assets/images/emojis/platycheer.gif similarity index 100% rename from drama/assets/images/emojis/platycheer.gif rename to files/assets/images/emojis/platycheer.gif diff --git a/drama/assets/images/emojis/platydown.gif b/files/assets/images/emojis/platydown.gif similarity index 100% rename from drama/assets/images/emojis/platydown.gif rename to files/assets/images/emojis/platydown.gif diff --git a/drama/assets/images/emojis/platyeyes.gif b/files/assets/images/emojis/platyeyes.gif similarity index 100% rename from drama/assets/images/emojis/platyeyes.gif rename to files/assets/images/emojis/platyeyes.gif diff --git a/drama/assets/images/emojis/platyheart.gif b/files/assets/images/emojis/platyheart.gif similarity index 100% rename from drama/assets/images/emojis/platyheart.gif rename to files/assets/images/emojis/platyheart.gif diff --git a/drama/assets/images/emojis/platylol.gif b/files/assets/images/emojis/platylol.gif similarity index 100% rename from drama/assets/images/emojis/platylol.gif rename to files/assets/images/emojis/platylol.gif diff --git a/drama/assets/images/emojis/platymicdrop.gif b/files/assets/images/emojis/platymicdrop.gif similarity index 100% rename from drama/assets/images/emojis/platymicdrop.gif rename to files/assets/images/emojis/platymicdrop.gif diff --git a/drama/assets/images/emojis/platynooo.gif b/files/assets/images/emojis/platynooo.gif similarity index 100% rename from drama/assets/images/emojis/platynooo.gif rename to files/assets/images/emojis/platynooo.gif diff --git a/drama/assets/images/emojis/platysalute.gif b/files/assets/images/emojis/platysalute.gif similarity index 100% rename from drama/assets/images/emojis/platysalute.gif rename to files/assets/images/emojis/platysalute.gif diff --git a/drama/assets/images/emojis/platyseethe.gif b/files/assets/images/emojis/platyseethe.gif similarity index 100% rename from drama/assets/images/emojis/platyseethe.gif rename to files/assets/images/emojis/platyseethe.gif diff --git a/drama/assets/images/emojis/platythumbsup.gif b/files/assets/images/emojis/platythumbsup.gif similarity index 100% rename from drama/assets/images/emojis/platythumbsup.gif rename to files/assets/images/emojis/platythumbsup.gif diff --git a/drama/assets/images/emojis/platywave.gif b/files/assets/images/emojis/platywave.gif similarity index 100% rename from drama/assets/images/emojis/platywave.gif rename to files/assets/images/emojis/platywave.gif diff --git a/drama/assets/images/emojis/plzdie.gif b/files/assets/images/emojis/plzdie.gif similarity index 100% rename from drama/assets/images/emojis/plzdie.gif rename to files/assets/images/emojis/plzdie.gif diff --git a/drama/assets/images/emojis/poke.gif b/files/assets/images/emojis/poke.gif similarity index 100% rename from drama/assets/images/emojis/poke.gif rename to files/assets/images/emojis/poke.gif diff --git a/drama/assets/images/emojis/popcorn.gif b/files/assets/images/emojis/popcorn.gif similarity index 100% rename from drama/assets/images/emojis/popcorn.gif rename to files/assets/images/emojis/popcorn.gif diff --git a/drama/assets/images/emojis/pout.gif b/files/assets/images/emojis/pout.gif similarity index 100% rename from drama/assets/images/emojis/pout.gif rename to files/assets/images/emojis/pout.gif diff --git a/drama/assets/images/emojis/probe.gif b/files/assets/images/emojis/probe.gif similarity index 100% rename from drama/assets/images/emojis/probe.gif rename to files/assets/images/emojis/probe.gif diff --git a/drama/assets/images/emojis/psychojak.gif b/files/assets/images/emojis/psychojak.gif similarity index 100% rename from drama/assets/images/emojis/psychojak.gif rename to files/assets/images/emojis/psychojak.gif diff --git a/drama/assets/images/emojis/puke.gif b/files/assets/images/emojis/puke.gif similarity index 100% rename from drama/assets/images/emojis/puke.gif rename to files/assets/images/emojis/puke.gif diff --git a/drama/assets/images/emojis/punch.gif b/files/assets/images/emojis/punch.gif similarity index 100% rename from drama/assets/images/emojis/punch.gif rename to files/assets/images/emojis/punch.gif diff --git a/drama/assets/images/emojis/quote.gif b/files/assets/images/emojis/quote.gif similarity index 100% rename from drama/assets/images/emojis/quote.gif rename to files/assets/images/emojis/quote.gif diff --git a/drama/assets/images/emojis/raccoon.gif b/files/assets/images/emojis/raccoon.gif similarity index 100% rename from drama/assets/images/emojis/raccoon.gif rename to files/assets/images/emojis/raccoon.gif diff --git a/drama/assets/images/emojis/ragejak.gif b/files/assets/images/emojis/ragejak.gif similarity index 100% rename from drama/assets/images/emojis/ragejak.gif rename to files/assets/images/emojis/ragejak.gif diff --git a/drama/assets/images/emojis/ragemask.gif b/files/assets/images/emojis/ragemask.gif similarity index 100% rename from drama/assets/images/emojis/ragemask.gif rename to files/assets/images/emojis/ragemask.gif diff --git a/drama/assets/images/emojis/ragestrangle.gif b/files/assets/images/emojis/ragestrangle.gif similarity index 100% rename from drama/assets/images/emojis/ragestrangle.gif rename to files/assets/images/emojis/ragestrangle.gif diff --git a/drama/assets/images/emojis/ramonajak.gif b/files/assets/images/emojis/ramonajak.gif similarity index 100% rename from drama/assets/images/emojis/ramonajak.gif rename to files/assets/images/emojis/ramonajak.gif diff --git a/drama/assets/images/emojis/roar.gif b/files/assets/images/emojis/roar.gif similarity index 100% rename from drama/assets/images/emojis/roar.gif rename to files/assets/images/emojis/roar.gif diff --git a/drama/assets/images/emojis/rofl.gif b/files/assets/images/emojis/rofl.gif similarity index 100% rename from drama/assets/images/emojis/rofl.gif rename to files/assets/images/emojis/rofl.gif diff --git a/drama/assets/images/emojis/roflmao.gif b/files/assets/images/emojis/roflmao.gif similarity index 100% rename from drama/assets/images/emojis/roflmao.gif rename to files/assets/images/emojis/roflmao.gif diff --git a/drama/assets/images/emojis/rolleyes.gif b/files/assets/images/emojis/rolleyes.gif similarity index 100% rename from drama/assets/images/emojis/rolleyes.gif rename to files/assets/images/emojis/rolleyes.gif diff --git a/drama/assets/images/emojis/rukiddingme.gif b/files/assets/images/emojis/rukiddingme.gif similarity index 100% rename from drama/assets/images/emojis/rukiddingme.gif rename to files/assets/images/emojis/rukiddingme.gif diff --git a/drama/assets/images/emojis/sad.gif b/files/assets/images/emojis/sad.gif similarity index 100% rename from drama/assets/images/emojis/sad.gif rename to files/assets/images/emojis/sad.gif diff --git a/drama/assets/images/emojis/sadeyes.gif b/files/assets/images/emojis/sadeyes.gif similarity index 100% rename from drama/assets/images/emojis/sadeyes.gif rename to files/assets/images/emojis/sadeyes.gif diff --git a/drama/assets/images/emojis/sadhug.gif b/files/assets/images/emojis/sadhug.gif similarity index 100% rename from drama/assets/images/emojis/sadhug.gif rename to files/assets/images/emojis/sadhug.gif diff --git a/drama/assets/images/emojis/samurai.gif b/files/assets/images/emojis/samurai.gif similarity index 100% rename from drama/assets/images/emojis/samurai.gif rename to files/assets/images/emojis/samurai.gif diff --git a/drama/assets/images/emojis/sarcasm.gif b/files/assets/images/emojis/sarcasm.gif similarity index 100% rename from drama/assets/images/emojis/sarcasm.gif rename to files/assets/images/emojis/sarcasm.gif diff --git a/drama/assets/images/emojis/saudi.gif b/files/assets/images/emojis/saudi.gif similarity index 100% rename from drama/assets/images/emojis/saudi.gif rename to files/assets/images/emojis/saudi.gif diff --git a/drama/assets/images/emojis/scalperpride.gif b/files/assets/images/emojis/scalperpride.gif similarity index 100% rename from drama/assets/images/emojis/scalperpride.gif rename to files/assets/images/emojis/scalperpride.gif diff --git a/drama/assets/images/emojis/scoot.gif b/files/assets/images/emojis/scoot.gif similarity index 100% rename from drama/assets/images/emojis/scoot.gif rename to files/assets/images/emojis/scoot.gif diff --git a/drama/assets/images/emojis/scream.gif b/files/assets/images/emojis/scream.gif similarity index 100% rename from drama/assets/images/emojis/scream.gif rename to files/assets/images/emojis/scream.gif diff --git a/drama/assets/images/emojis/shmoopy.gif b/files/assets/images/emojis/shmoopy.gif similarity index 100% rename from drama/assets/images/emojis/shmoopy.gif rename to files/assets/images/emojis/shmoopy.gif diff --git a/drama/assets/images/emojis/shrug.gif b/files/assets/images/emojis/shrug.gif similarity index 100% rename from drama/assets/images/emojis/shrug.gif rename to files/assets/images/emojis/shrug.gif diff --git a/drama/assets/images/emojis/skull.gif b/files/assets/images/emojis/skull.gif similarity index 100% rename from drama/assets/images/emojis/skull.gif rename to files/assets/images/emojis/skull.gif diff --git a/drama/assets/images/emojis/slap.gif b/files/assets/images/emojis/slap.gif similarity index 100% rename from drama/assets/images/emojis/slap.gif rename to files/assets/images/emojis/slap.gif diff --git a/drama/assets/images/emojis/slapfight.gif b/files/assets/images/emojis/slapfight.gif similarity index 100% rename from drama/assets/images/emojis/slapfight.gif rename to files/assets/images/emojis/slapfight.gif diff --git a/drama/assets/images/emojis/sleepy.gif b/files/assets/images/emojis/sleepy.gif similarity index 100% rename from drama/assets/images/emojis/sleepy.gif rename to files/assets/images/emojis/sleepy.gif diff --git a/drama/assets/images/emojis/smackfish.gif b/files/assets/images/emojis/smackfish.gif similarity index 100% rename from drama/assets/images/emojis/smackfish.gif rename to files/assets/images/emojis/smackfish.gif diff --git a/drama/assets/images/emojis/smackhead.gif b/files/assets/images/emojis/smackhead.gif similarity index 100% rename from drama/assets/images/emojis/smackhead.gif rename to files/assets/images/emojis/smackhead.gif diff --git a/drama/assets/images/emojis/smh.gif b/files/assets/images/emojis/smh.gif similarity index 100% rename from drama/assets/images/emojis/smh.gif rename to files/assets/images/emojis/smh.gif diff --git a/drama/assets/images/emojis/smile.gif b/files/assets/images/emojis/smile.gif similarity index 100% rename from drama/assets/images/emojis/smile.gif rename to files/assets/images/emojis/smile.gif diff --git a/drama/assets/images/emojis/smoke.gif b/files/assets/images/emojis/smoke.gif similarity index 100% rename from drama/assets/images/emojis/smoke.gif rename to files/assets/images/emojis/smoke.gif diff --git a/drama/assets/images/emojis/sonic.gif b/files/assets/images/emojis/sonic.gif similarity index 100% rename from drama/assets/images/emojis/sonic.gif rename to files/assets/images/emojis/sonic.gif diff --git a/drama/assets/images/emojis/soyjackwow.gif b/files/assets/images/emojis/soyjackwow.gif similarity index 100% rename from drama/assets/images/emojis/soyjackwow.gif rename to files/assets/images/emojis/soyjackwow.gif diff --git a/drama/assets/images/emojis/soyjak.gif b/files/assets/images/emojis/soyjak.gif similarity index 100% rename from drama/assets/images/emojis/soyjak.gif rename to files/assets/images/emojis/soyjak.gif diff --git a/drama/assets/images/emojis/soyjakfront.gif b/files/assets/images/emojis/soyjakfront.gif similarity index 100% rename from drama/assets/images/emojis/soyjakfront.gif rename to files/assets/images/emojis/soyjakfront.gif diff --git a/drama/assets/images/emojis/soyjakhipster.gif b/files/assets/images/emojis/soyjakhipster.gif similarity index 100% rename from drama/assets/images/emojis/soyjakhipster.gif rename to files/assets/images/emojis/soyjakhipster.gif diff --git a/drama/assets/images/emojis/soyjakmaga.gif b/files/assets/images/emojis/soyjakmaga.gif similarity index 100% rename from drama/assets/images/emojis/soyjakmaga.gif rename to files/assets/images/emojis/soyjakmaga.gif diff --git a/drama/assets/images/emojis/soyjakyell.gif b/files/assets/images/emojis/soyjakyell.gif similarity index 100% rename from drama/assets/images/emojis/soyjakyell.gif rename to files/assets/images/emojis/soyjakyell.gif diff --git a/drama/assets/images/emojis/spank.gif b/files/assets/images/emojis/spank.gif similarity index 100% rename from drama/assets/images/emojis/spank.gif rename to files/assets/images/emojis/spank.gif diff --git a/drama/assets/images/emojis/sparta.gif b/files/assets/images/emojis/sparta.gif similarity index 100% rename from drama/assets/images/emojis/sparta.gif rename to files/assets/images/emojis/sparta.gif diff --git a/drama/assets/images/emojis/sperm.gif b/files/assets/images/emojis/sperm.gif similarity index 100% rename from drama/assets/images/emojis/sperm.gif rename to files/assets/images/emojis/sperm.gif diff --git a/drama/assets/images/emojis/spiderman.gif b/files/assets/images/emojis/spiderman.gif similarity index 100% rename from drama/assets/images/emojis/spiderman.gif rename to files/assets/images/emojis/spiderman.gif diff --git a/drama/assets/images/emojis/stab.gif b/files/assets/images/emojis/stab.gif similarity index 100% rename from drama/assets/images/emojis/stab.gif rename to files/assets/images/emojis/stab.gif diff --git a/drama/assets/images/emojis/star.gif b/files/assets/images/emojis/star.gif similarity index 100% rename from drama/assets/images/emojis/star.gif rename to files/assets/images/emojis/star.gif diff --git a/drama/assets/images/emojis/stare.gif b/files/assets/images/emojis/stare.gif similarity index 100% rename from drama/assets/images/emojis/stare.gif rename to files/assets/images/emojis/stare.gif diff --git a/drama/assets/images/emojis/stfu.gif b/files/assets/images/emojis/stfu.gif similarity index 100% rename from drama/assets/images/emojis/stfu.gif rename to files/assets/images/emojis/stfu.gif diff --git a/drama/assets/images/emojis/suicide.gif b/files/assets/images/emojis/suicide.gif similarity index 100% rename from drama/assets/images/emojis/suicide.gif rename to files/assets/images/emojis/suicide.gif diff --git a/drama/assets/images/emojis/superstraight.gif b/files/assets/images/emojis/superstraight.gif similarity index 100% rename from drama/assets/images/emojis/superstraight.gif rename to files/assets/images/emojis/superstraight.gif diff --git a/drama/assets/images/emojis/surprisehug.gif b/files/assets/images/emojis/surprisehug.gif similarity index 100% rename from drama/assets/images/emojis/surprisehug.gif rename to files/assets/images/emojis/surprisehug.gif diff --git a/drama/assets/images/emojis/suspicious.gif b/files/assets/images/emojis/suspicious.gif similarity index 100% rename from drama/assets/images/emojis/suspicious.gif rename to files/assets/images/emojis/suspicious.gif diff --git a/drama/assets/images/emojis/sweat.gif b/files/assets/images/emojis/sweat.gif similarity index 100% rename from drama/assets/images/emojis/sweat.gif rename to files/assets/images/emojis/sweat.gif diff --git a/drama/assets/images/emojis/swordfight.gif b/files/assets/images/emojis/swordfight.gif similarity index 100% rename from drama/assets/images/emojis/swordfight.gif rename to files/assets/images/emojis/swordfight.gif diff --git a/drama/assets/images/emojis/taco.gif b/files/assets/images/emojis/taco.gif similarity index 100% rename from drama/assets/images/emojis/taco.gif rename to files/assets/images/emojis/taco.gif diff --git a/drama/assets/images/emojis/talk2hand.gif b/files/assets/images/emojis/talk2hand.gif similarity index 100% rename from drama/assets/images/emojis/talk2hand.gif rename to files/assets/images/emojis/talk2hand.gif diff --git a/drama/assets/images/emojis/tantrum.gif b/files/assets/images/emojis/tantrum.gif similarity index 100% rename from drama/assets/images/emojis/tantrum.gif rename to files/assets/images/emojis/tantrum.gif diff --git a/drama/assets/images/emojis/tayaaa.gif b/files/assets/images/emojis/tayaaa.gif similarity index 100% rename from drama/assets/images/emojis/tayaaa.gif rename to files/assets/images/emojis/tayaaa.gif diff --git a/drama/assets/images/emojis/tayaaaa.gif b/files/assets/images/emojis/tayaaaa.gif similarity index 100% rename from drama/assets/images/emojis/tayaaaa.gif rename to files/assets/images/emojis/tayaaaa.gif diff --git a/drama/assets/images/emojis/tayadmire.gif b/files/assets/images/emojis/tayadmire.gif similarity index 100% rename from drama/assets/images/emojis/tayadmire.gif rename to files/assets/images/emojis/tayadmire.gif diff --git a/drama/assets/images/emojis/taycat.gif b/files/assets/images/emojis/taycat.gif similarity index 100% rename from drama/assets/images/emojis/taycat.gif rename to files/assets/images/emojis/taycat.gif diff --git a/drama/assets/images/emojis/taycelebrate.gif b/files/assets/images/emojis/taycelebrate.gif similarity index 100% rename from drama/assets/images/emojis/taycelebrate.gif rename to files/assets/images/emojis/taycelebrate.gif diff --git a/drama/assets/images/emojis/taychefkiss.gif b/files/assets/images/emojis/taychefkiss.gif similarity index 100% rename from drama/assets/images/emojis/taychefkiss.gif rename to files/assets/images/emojis/taychefkiss.gif diff --git a/drama/assets/images/emojis/taychristmas.gif b/files/assets/images/emojis/taychristmas.gif similarity index 100% rename from drama/assets/images/emojis/taychristmas.gif rename to files/assets/images/emojis/taychristmas.gif diff --git a/drama/assets/images/emojis/tayclap.gif b/files/assets/images/emojis/tayclap.gif similarity index 100% rename from drama/assets/images/emojis/tayclap.gif rename to files/assets/images/emojis/tayclap.gif diff --git a/drama/assets/images/emojis/taycold.gif b/files/assets/images/emojis/taycold.gif similarity index 100% rename from drama/assets/images/emojis/taycold.gif rename to files/assets/images/emojis/taycold.gif diff --git a/drama/assets/images/emojis/taycrown.gif b/files/assets/images/emojis/taycrown.gif similarity index 100% rename from drama/assets/images/emojis/taycrown.gif rename to files/assets/images/emojis/taycrown.gif diff --git a/drama/assets/images/emojis/tayflex.gif b/files/assets/images/emojis/tayflex.gif similarity index 100% rename from drama/assets/images/emojis/tayflex.gif rename to files/assets/images/emojis/tayflex.gif diff --git a/drama/assets/images/emojis/tayflirt.gif b/files/assets/images/emojis/tayflirt.gif similarity index 100% rename from drama/assets/images/emojis/tayflirt.gif rename to files/assets/images/emojis/tayflirt.gif diff --git a/drama/assets/images/emojis/taygrimacing.gif b/files/assets/images/emojis/taygrimacing.gif similarity index 100% rename from drama/assets/images/emojis/taygrimacing.gif rename to files/assets/images/emojis/taygrimacing.gif diff --git a/drama/assets/images/emojis/tayhappy.gif b/files/assets/images/emojis/tayhappy.gif similarity index 100% rename from drama/assets/images/emojis/tayhappy.gif rename to files/assets/images/emojis/tayhappy.gif diff --git a/drama/assets/images/emojis/tayheart.gif b/files/assets/images/emojis/tayheart.gif similarity index 100% rename from drama/assets/images/emojis/tayheart.gif rename to files/assets/images/emojis/tayheart.gif diff --git a/drama/assets/images/emojis/tayhmm.gif b/files/assets/images/emojis/tayhmm.gif similarity index 100% rename from drama/assets/images/emojis/tayhmm.gif rename to files/assets/images/emojis/tayhmm.gif diff --git a/drama/assets/images/emojis/tayhuh.gif b/files/assets/images/emojis/tayhuh.gif similarity index 100% rename from drama/assets/images/emojis/tayhuh.gif rename to files/assets/images/emojis/tayhuh.gif diff --git a/drama/assets/images/emojis/tayhyperdab.gif b/files/assets/images/emojis/tayhyperdab.gif similarity index 100% rename from drama/assets/images/emojis/tayhyperdab.gif rename to files/assets/images/emojis/tayhyperdab.gif diff --git a/drama/assets/images/emojis/tayjammin.gif b/files/assets/images/emojis/tayjammin.gif similarity index 100% rename from drama/assets/images/emojis/tayjammin.gif rename to files/assets/images/emojis/tayjammin.gif diff --git a/drama/assets/images/emojis/taylaugh.gif b/files/assets/images/emojis/taylaugh.gif similarity index 100% rename from drama/assets/images/emojis/taylaugh.gif rename to files/assets/images/emojis/taylaugh.gif diff --git a/drama/assets/images/emojis/taymindblown.gif b/files/assets/images/emojis/taymindblown.gif similarity index 100% rename from drama/assets/images/emojis/taymindblown.gif rename to files/assets/images/emojis/taymindblown.gif diff --git a/drama/assets/images/emojis/tayno.gif b/files/assets/images/emojis/tayno.gif similarity index 100% rename from drama/assets/images/emojis/tayno.gif rename to files/assets/images/emojis/tayno.gif diff --git a/drama/assets/images/emojis/taynod.gif b/files/assets/images/emojis/taynod.gif similarity index 100% rename from drama/assets/images/emojis/taynod.gif rename to files/assets/images/emojis/taynod.gif diff --git a/drama/assets/images/emojis/taypeace.gif b/files/assets/images/emojis/taypeace.gif similarity index 100% rename from drama/assets/images/emojis/taypeace.gif rename to files/assets/images/emojis/taypeace.gif diff --git a/drama/assets/images/emojis/taypray.gif b/files/assets/images/emojis/taypray.gif similarity index 100% rename from drama/assets/images/emojis/taypray.gif rename to files/assets/images/emojis/taypray.gif diff --git a/drama/assets/images/emojis/tayrun.gif b/files/assets/images/emojis/tayrun.gif similarity index 100% rename from drama/assets/images/emojis/tayrun.gif rename to files/assets/images/emojis/tayrun.gif diff --git a/drama/assets/images/emojis/tayscrunch.gif b/files/assets/images/emojis/tayscrunch.gif similarity index 100% rename from drama/assets/images/emojis/tayscrunch.gif rename to files/assets/images/emojis/tayscrunch.gif diff --git a/drama/assets/images/emojis/tayshake.gif b/files/assets/images/emojis/tayshake.gif similarity index 100% rename from drama/assets/images/emojis/tayshake.gif rename to files/assets/images/emojis/tayshake.gif diff --git a/drama/assets/images/emojis/tayshrug.gif b/files/assets/images/emojis/tayshrug.gif similarity index 100% rename from drama/assets/images/emojis/tayshrug.gif rename to files/assets/images/emojis/tayshrug.gif diff --git a/drama/assets/images/emojis/taysilly.gif b/files/assets/images/emojis/taysilly.gif similarity index 100% rename from drama/assets/images/emojis/taysilly.gif rename to files/assets/images/emojis/taysilly.gif diff --git a/drama/assets/images/emojis/tayslide.gif b/files/assets/images/emojis/tayslide.gif similarity index 100% rename from drama/assets/images/emojis/tayslide.gif rename to files/assets/images/emojis/tayslide.gif diff --git a/drama/assets/images/emojis/taysmart.gif b/files/assets/images/emojis/taysmart.gif similarity index 100% rename from drama/assets/images/emojis/taysmart.gif rename to files/assets/images/emojis/taysmart.gif diff --git a/drama/assets/images/emojis/taystop.gif b/files/assets/images/emojis/taystop.gif similarity index 100% rename from drama/assets/images/emojis/taystop.gif rename to files/assets/images/emojis/taystop.gif diff --git a/drama/assets/images/emojis/taytantrum.gif b/files/assets/images/emojis/taytantrum.gif similarity index 100% rename from drama/assets/images/emojis/taytantrum.gif rename to files/assets/images/emojis/taytantrum.gif diff --git a/drama/assets/images/emojis/taytea.gif b/files/assets/images/emojis/taytea.gif similarity index 100% rename from drama/assets/images/emojis/taytea.gif rename to files/assets/images/emojis/taytea.gif diff --git a/drama/assets/images/emojis/taythink.gif b/files/assets/images/emojis/taythink.gif similarity index 100% rename from drama/assets/images/emojis/taythink.gif rename to files/assets/images/emojis/taythink.gif diff --git a/drama/assets/images/emojis/tayvibin.gif b/files/assets/images/emojis/tayvibin.gif similarity index 100% rename from drama/assets/images/emojis/tayvibin.gif rename to files/assets/images/emojis/tayvibin.gif diff --git a/drama/assets/images/emojis/taywhat.gif b/files/assets/images/emojis/taywhat.gif similarity index 100% rename from drama/assets/images/emojis/taywhat.gif rename to files/assets/images/emojis/taywhat.gif diff --git a/drama/assets/images/emojis/taywine.gif b/files/assets/images/emojis/taywine.gif similarity index 100% rename from drama/assets/images/emojis/taywine.gif rename to files/assets/images/emojis/taywine.gif diff --git a/drama/assets/images/emojis/taywine2.gif b/files/assets/images/emojis/taywine2.gif similarity index 100% rename from drama/assets/images/emojis/taywine2.gif rename to files/assets/images/emojis/taywine2.gif diff --git a/drama/assets/images/emojis/taywink.gif b/files/assets/images/emojis/taywink.gif similarity index 100% rename from drama/assets/images/emojis/taywink.gif rename to files/assets/images/emojis/taywink.gif diff --git a/drama/assets/images/emojis/tayyes.gif b/files/assets/images/emojis/tayyes.gif similarity index 100% rename from drama/assets/images/emojis/tayyes.gif rename to files/assets/images/emojis/tayyes.gif diff --git a/drama/assets/images/emojis/teehee.gif b/files/assets/images/emojis/teehee.gif similarity index 100% rename from drama/assets/images/emojis/teehee.gif rename to files/assets/images/emojis/teehee.gif diff --git a/drama/assets/images/emojis/tfwyougettrolled.gif b/files/assets/images/emojis/tfwyougettrolled.gif similarity index 100% rename from drama/assets/images/emojis/tfwyougettrolled.gif rename to files/assets/images/emojis/tfwyougettrolled.gif diff --git a/drama/assets/images/emojis/thinking.gif b/files/assets/images/emojis/thinking.gif similarity index 100% rename from drama/assets/images/emojis/thinking.gif rename to files/assets/images/emojis/thinking.gif diff --git a/drama/assets/images/emojis/threesome.gif b/files/assets/images/emojis/threesome.gif similarity index 100% rename from drama/assets/images/emojis/threesome.gif rename to files/assets/images/emojis/threesome.gif diff --git a/drama/assets/images/emojis/throw.gif b/files/assets/images/emojis/throw.gif similarity index 100% rename from drama/assets/images/emojis/throw.gif rename to files/assets/images/emojis/throw.gif diff --git a/drama/assets/images/emojis/throwaway.gif b/files/assets/images/emojis/throwaway.gif similarity index 100% rename from drama/assets/images/emojis/throwaway.gif rename to files/assets/images/emojis/throwaway.gif diff --git a/drama/assets/images/emojis/tickle.gif b/files/assets/images/emojis/tickle.gif similarity index 100% rename from drama/assets/images/emojis/tickle.gif rename to files/assets/images/emojis/tickle.gif diff --git a/drama/assets/images/emojis/tomboy.gif b/files/assets/images/emojis/tomboy.gif similarity index 100% rename from drama/assets/images/emojis/tomboy.gif rename to files/assets/images/emojis/tomboy.gif diff --git a/drama/assets/images/emojis/trans.gif b/files/assets/images/emojis/trans.gif similarity index 100% rename from drama/assets/images/emojis/trans.gif rename to files/assets/images/emojis/trans.gif diff --git a/drama/assets/images/emojis/translord.gif b/files/assets/images/emojis/translord.gif similarity index 100% rename from drama/assets/images/emojis/translord.gif rename to files/assets/images/emojis/translord.gif diff --git a/drama/assets/images/emojis/transracial.gif b/files/assets/images/emojis/transracial.gif similarity index 100% rename from drama/assets/images/emojis/transracial.gif rename to files/assets/images/emojis/transracial.gif diff --git a/files/assets/images/emojis/troll.gif b/files/assets/images/emojis/troll.gif new file mode 100644 index 000000000..a1d1b776a Binary files /dev/null and b/files/assets/images/emojis/troll.gif differ diff --git a/drama/assets/images/emojis/trollolol.gif b/files/assets/images/emojis/trollolol.gif similarity index 100% rename from drama/assets/images/emojis/trollolol.gif rename to files/assets/images/emojis/trollolol.gif diff --git a/drama/assets/images/emojis/truestorybro.gif b/files/assets/images/emojis/truestorybro.gif similarity index 100% rename from drama/assets/images/emojis/truestorybro.gif rename to files/assets/images/emojis/truestorybro.gif diff --git a/drama/assets/images/emojis/typing.gif b/files/assets/images/emojis/typing.gif similarity index 100% rename from drama/assets/images/emojis/typing.gif rename to files/assets/images/emojis/typing.gif diff --git a/drama/assets/images/emojis/uhuh.gif b/files/assets/images/emojis/uhuh.gif similarity index 100% rename from drama/assets/images/emojis/uhuh.gif rename to files/assets/images/emojis/uhuh.gif diff --git a/drama/assets/images/emojis/usa.gif b/files/assets/images/emojis/usa.gif similarity index 100% rename from drama/assets/images/emojis/usa.gif rename to files/assets/images/emojis/usa.gif diff --git a/drama/assets/images/emojis/vampbat.gif b/files/assets/images/emojis/vampbat.gif similarity index 100% rename from drama/assets/images/emojis/vampbat.gif rename to files/assets/images/emojis/vampbat.gif diff --git a/drama/assets/images/emojis/viking.gif b/files/assets/images/emojis/viking.gif similarity index 100% rename from drama/assets/images/emojis/viking.gif rename to files/assets/images/emojis/viking.gif diff --git a/drama/assets/images/emojis/violin.gif b/files/assets/images/emojis/violin.gif similarity index 100% rename from drama/assets/images/emojis/violin.gif rename to files/assets/images/emojis/violin.gif diff --git a/drama/assets/images/emojis/vulgar.gif b/files/assets/images/emojis/vulgar.gif similarity index 100% rename from drama/assets/images/emojis/vulgar.gif rename to files/assets/images/emojis/vulgar.gif diff --git a/drama/assets/images/emojis/wah.gif b/files/assets/images/emojis/wah.gif similarity index 100% rename from drama/assets/images/emojis/wah.gif rename to files/assets/images/emojis/wah.gif diff --git a/drama/assets/images/emojis/wat.gif b/files/assets/images/emojis/wat.gif similarity index 100% rename from drama/assets/images/emojis/wat.gif rename to files/assets/images/emojis/wat.gif diff --git a/drama/assets/images/emojis/whip.gif b/files/assets/images/emojis/whip.gif similarity index 100% rename from drama/assets/images/emojis/whip.gif rename to files/assets/images/emojis/whip.gif diff --git a/drama/assets/images/emojis/whipping.gif b/files/assets/images/emojis/whipping.gif similarity index 100% rename from drama/assets/images/emojis/whipping.gif rename to files/assets/images/emojis/whipping.gif diff --git a/drama/assets/images/emojis/wink.gif b/files/assets/images/emojis/wink.gif similarity index 100% rename from drama/assets/images/emojis/wink.gif rename to files/assets/images/emojis/wink.gif diff --git a/drama/assets/images/emojis/witch.gif b/files/assets/images/emojis/witch.gif similarity index 100% rename from drama/assets/images/emojis/witch.gif rename to files/assets/images/emojis/witch.gif diff --git a/drama/assets/images/emojis/wizard.gif b/files/assets/images/emojis/wizard.gif similarity index 100% rename from drama/assets/images/emojis/wizard.gif rename to files/assets/images/emojis/wizard.gif diff --git a/drama/assets/images/emojis/woah.gif b/files/assets/images/emojis/woah.gif similarity index 100% rename from drama/assets/images/emojis/woah.gif rename to files/assets/images/emojis/woah.gif diff --git a/drama/assets/images/emojis/woo.gif b/files/assets/images/emojis/woo.gif similarity index 100% rename from drama/assets/images/emojis/woo.gif rename to files/assets/images/emojis/woo.gif diff --git a/drama/assets/images/emojis/work.gif b/files/assets/images/emojis/work.gif similarity index 100% rename from drama/assets/images/emojis/work.gif rename to files/assets/images/emojis/work.gif diff --git a/drama/assets/images/emojis/worm.gif b/files/assets/images/emojis/worm.gif similarity index 100% rename from drama/assets/images/emojis/worm.gif rename to files/assets/images/emojis/worm.gif diff --git a/drama/assets/images/emojis/worship.gif b/files/assets/images/emojis/worship.gif similarity index 100% rename from drama/assets/images/emojis/worship.gif rename to files/assets/images/emojis/worship.gif diff --git a/drama/assets/images/emojis/wow.gif b/files/assets/images/emojis/wow.gif similarity index 100% rename from drama/assets/images/emojis/wow.gif rename to files/assets/images/emojis/wow.gif diff --git a/drama/assets/images/emojis/xallthey.gif b/files/assets/images/emojis/xallthey.gif similarity index 100% rename from drama/assets/images/emojis/xallthey.gif rename to files/assets/images/emojis/xallthey.gif diff --git a/drama/assets/images/emojis/yay.gif b/files/assets/images/emojis/yay.gif similarity index 100% rename from drama/assets/images/emojis/yay.gif rename to files/assets/images/emojis/yay.gif diff --git a/drama/assets/images/emojis/yuno.gif b/files/assets/images/emojis/yuno.gif similarity index 100% rename from drama/assets/images/emojis/yuno.gif rename to files/assets/images/emojis/yuno.gif diff --git a/drama/assets/images/emojis/zoomer.gif b/files/assets/images/emojis/zoomer.gif similarity index 100% rename from drama/assets/images/emojis/zoomer.gif rename to files/assets/images/emojis/zoomer.gif diff --git a/drama/assets/images/emojis/zoomersoy.gif b/files/assets/images/emojis/zoomersoy.gif similarity index 100% rename from drama/assets/images/emojis/zoomersoy.gif rename to files/assets/images/emojis/zoomersoy.gif diff --git a/drama/assets/images/emojis/zzz.gif b/files/assets/images/emojis/zzz.gif similarity index 100% rename from drama/assets/images/emojis/zzz.gif rename to files/assets/images/emojis/zzz.gif diff --git a/drama/assets/images/favicon.png b/files/assets/images/favicon.png similarity index 100% rename from drama/assets/images/favicon.png rename to files/assets/images/favicon.png diff --git a/drama/assets/images/fly-sprite.png b/files/assets/images/fly-sprite.png similarity index 100% rename from drama/assets/images/fly-sprite.png rename to files/assets/images/fly-sprite.png diff --git a/drama/assets/images/drama.gif b/files/assets/images/logo.gif similarity index 100% rename from drama/assets/images/drama.gif rename to files/assets/images/logo.gif diff --git a/drama/assets/images/nsfw.png b/files/assets/images/nsfw.png similarity index 100% rename from drama/assets/images/nsfw.png rename to files/assets/images/nsfw.png diff --git a/drama/assets/images/platy.jpg b/files/assets/images/platy.jpg similarity index 100% rename from drama/assets/images/platy.jpg rename to files/assets/images/platy.jpg diff --git a/drama/assets/images/preview.png b/files/assets/images/preview.png similarity index 100% rename from drama/assets/images/preview.png rename to files/assets/images/preview.png diff --git a/drama/assets/images/ruckus.png b/files/assets/images/ruckus.png similarity index 100% rename from drama/assets/images/ruckus.png rename to files/assets/images/ruckus.png diff --git a/drama/assets/images/seized.png b/files/assets/images/seized.png similarity index 100% rename from drama/assets/images/seized.png rename to files/assets/images/seized.png diff --git a/drama/assets/images/spider-sprite.png b/files/assets/images/spider-sprite.png similarity index 100% rename from drama/assets/images/spider-sprite.png rename to files/assets/images/spider-sprite.png diff --git a/drama/assets/js/all_js.js b/files/assets/js/all_js.js similarity index 94% rename from drama/assets/js/all_js.js rename to files/assets/js/all_js.js index 7d43bd399..92721afb5 100644 --- a/drama/assets/js/all_js.js +++ b/files/assets/js/all_js.js @@ -56,11 +56,11 @@ document.body.addEventListener('keydown', function(event) { }, { type:'rage', - emojis: ['bitchplease','cerealguypart2','challengeaccepted','contentiouscereal','cryingatcuteness','derp','derpcornsyrup','derpcrying','derpcute','derpdumb','derpeuphoria','derpinahd','derpinapokerface','derpinasnickering','derpprocessing','derprealization','derpsnickering','derptalking','derpthinking','derpthumbsup','derpunimpressed','derpwhy','donotwant','epicfacefeatures','fancywithwine','fffffffuuuuuuuuuuuu','flipthetable','foreveralone','foreveralonehappy','hewillnever','idontknow','interuptedreading','iseewhatyoudidthere','killherkillher','ledesire','leexcited','legenius','lelolidk','lemiddlefinger','lemindblown','leokay','lepanicrunning','lepokerface','lepokerface2','lerageface','leseriousface','likeaboss','lolface','longwhiskers','manymiddlefingers','megusta','motherfucker','motherofgod','mysides','ohgodwhy','pervertedspiderman','picard','ragestrangle','rukiddingme','tfwyougettrolled','trollolol','truestorybro','xallthey','yuno'] + emojis: ['troll','bitchplease','cerealguypart2','challengeaccepted','contentiouscereal','cryingatcuteness','derp','derpcornsyrup','derpcrying','derpcute','derpdumb','derpeuphoria','derpinahd','derpinapokerface','derpinasnickering','derpprocessing','derprealization','derpsnickering','derptalking','derpthinking','derpthumbsup','derpunimpressed','derpwhy','donotwant','epicfacefeatures','fancywithwine','fffffffuuuuuuuuuuuu','flipthetable','foreveralone','foreveralonehappy','hewillnever','idontknow','interuptedreading','iseewhatyoudidthere','killherkillher','ledesire','leexcited','legenius','lelolidk','lemiddlefinger','lemindblown','leokay','lepanicrunning','lepokerface','lepokerface2','lerageface','leseriousface','likeaboss','lolface','longwhiskers','manymiddlefingers','megusta','motherfucker','motherofgod','mysides','ohgodwhy','pervertedspiderman','picard','ragestrangle','rukiddingme','tfwyougettrolled','trollolol','truestorybro','xallthey','yuno'] }, { type:'wojak', - emojis: ['abusivewife','ancap','bardfinn','bloomer','boomer','boomermonster','brainletbush','brainletcaved','brainletchair','brainletchest','brainletmaga','brainletpit','chad','chadarab','chadasian','chadblack','chadjesus','chadjew','chadjihadi','chadlatino','chadlibleft','chadnordic','chadsikh','chadusa','coomer','doomer','doomerfront','doomergirl','ethot','fatbrain','fatpriest','femboy','gogetter','grug','monke','nazijak','npc','npcfront','npcmaga','psychojak','ragejak','ragemask','ramonajak','soyjackwow','soyjak','soyjakfront','soyjakhipster','soyjakmaga','soyjakyell','tomboy','zoomer','zoomersoy'] + emojis: ['gigachad','chadyes','chadno','abusivewife','ancap','bardfinn','bloomer','boomer','boomermonster','brainletbush','brainletcaved','brainletchair','brainletchest','brainletmaga','brainletpit','chad','chadarab','chadasian','chadblack','chadjesus','chadjew','chadjihadi','chadlatino','chadlibleft','chadnordic','chadsikh','chadusa','coomer','doomer','doomerfront','doomergirl','ethot','fatbrain','fatpriest','femboy','gogetter','grug','monke','nazijak','npc','npcfront','npcmaga','psychojak','ragejak','ragemask','ramonajak','soyjackwow','soyjak','soyjakfront','soyjakhipster','soyjakmaga','soyjakyell','tomboy','zoomer','zoomersoy'] }, { type:'flags', diff --git a/drama/assets/js/bootstrap.js b/files/assets/js/bootstrap.js similarity index 100% rename from drama/assets/js/bootstrap.js rename to files/assets/js/bootstrap.js diff --git a/drama/assets/js/bootstrap.min.js b/files/assets/js/bootstrap.min.js similarity index 100% rename from drama/assets/js/bootstrap.min.js rename to files/assets/js/bootstrap.min.js diff --git a/drama/assets/js/bug-min.js b/files/assets/js/bug-min.js similarity index 100% rename from drama/assets/js/bug-min.js rename to files/assets/js/bug-min.js diff --git a/drama/assets/js/twitter.js b/files/assets/js/twitter.js similarity index 100% rename from drama/assets/js/twitter.js rename to files/assets/js/twitter.js diff --git a/drama/assets/manifest.json b/files/assets/manifest.json similarity index 100% rename from drama/assets/manifest.json rename to files/assets/manifest.json diff --git a/drama/assets/robots.txt b/files/assets/robots.txt similarity index 100% rename from drama/assets/robots.txt rename to files/assets/robots.txt diff --git a/drama/assets/style/4chan.scss b/files/assets/style/4chan.scss similarity index 100% rename from drama/assets/style/4chan.scss rename to files/assets/style/4chan.scss diff --git a/drama/assets/style/4chan_2a96f3.css b/files/assets/style/4chan_2a96f3.css similarity index 99% rename from drama/assets/style/4chan_2a96f3.css rename to files/assets/style/4chan_2a96f3.css index 9a2441c2b..b0b95e5f2 100644 --- a/drama/assets/style/4chan_2a96f3.css +++ b/files/assets/style/4chan_2a96f3.css @@ -27543,11 +27543,11 @@ div.banned { } div.deleted { - background-color: #FEFCBF; + background-color: #FEFCBF !important; } div.deleted.banned { - background-color: #ffcc99; + background-color: #ffcc99 !important; } .text-admin { diff --git a/drama/assets/style/4chan_30409f.css b/files/assets/style/4chan_30409f.css similarity index 99% rename from drama/assets/style/4chan_30409f.css rename to files/assets/style/4chan_30409f.css index e2b932c38..f100f2434 100644 --- a/drama/assets/style/4chan_30409f.css +++ b/files/assets/style/4chan_30409f.css @@ -27543,11 +27543,11 @@ div.banned { } div.deleted { - background-color: #FEFCBF; + background-color: #FEFCBF !important; } div.deleted.banned { - background-color: #ffcc99; + background-color: #ffcc99 !important; } .text-admin { diff --git a/drama/assets/style/4chan_38a169.css b/files/assets/style/4chan_38a169.css similarity index 99% rename from drama/assets/style/4chan_38a169.css rename to files/assets/style/4chan_38a169.css index 398aeb387..bafe4f58a 100644 --- a/drama/assets/style/4chan_38a169.css +++ b/files/assets/style/4chan_38a169.css @@ -27543,11 +27543,11 @@ div.banned { } div.deleted { - background-color: #FEFCBF; + background-color: #FEFCBF !important; } div.deleted.banned { - background-color: #ffcc99; + background-color: #ffcc99 !important; } .text-admin { diff --git a/drama/assets/style/4chan_3e98a7.css b/files/assets/style/4chan_3e98a7.css similarity index 99% rename from drama/assets/style/4chan_3e98a7.css rename to files/assets/style/4chan_3e98a7.css index 5361eb4cd..9d6510dc8 100644 --- a/drama/assets/style/4chan_3e98a7.css +++ b/files/assets/style/4chan_3e98a7.css @@ -27543,11 +27543,11 @@ div.banned { } div.deleted { - background-color: #FEFCBF; + background-color: #FEFCBF !important; } div.deleted.banned { - background-color: #ffcc99; + background-color: #ffcc99 !important; } .text-admin { diff --git a/drama/assets/style/4chan_62ca56.css b/files/assets/style/4chan_62ca56.css similarity index 99% rename from drama/assets/style/4chan_62ca56.css rename to files/assets/style/4chan_62ca56.css index fe0396ffd..7a629d8fb 100644 --- a/drama/assets/style/4chan_62ca56.css +++ b/files/assets/style/4chan_62ca56.css @@ -27543,11 +27543,11 @@ div.banned { } div.deleted { - background-color: #FEFCBF; + background-color: #FEFCBF !important; } div.deleted.banned { - background-color: #ffcc99; + background-color: #ffcc99 !important; } .text-admin { diff --git a/drama/assets/style/4chan_7b9ae4.css b/files/assets/style/4chan_7b9ae4.css similarity index 99% rename from drama/assets/style/4chan_7b9ae4.css rename to files/assets/style/4chan_7b9ae4.css index 716486ef6..a9bcd5d5e 100644 --- a/drama/assets/style/4chan_7b9ae4.css +++ b/files/assets/style/4chan_7b9ae4.css @@ -27543,11 +27543,11 @@ div.banned { } div.deleted { - background-color: #FEFCBF; + background-color: #FEFCBF !important; } div.deleted.banned { - background-color: #ffcc99; + background-color: #ffcc99 !important; } .text-admin { diff --git a/drama/assets/style/4chan_7f8fa6.css b/files/assets/style/4chan_7f8fa6.css similarity index 99% rename from drama/assets/style/4chan_7f8fa6.css rename to files/assets/style/4chan_7f8fa6.css index f79eb636b..5872b068e 100644 --- a/drama/assets/style/4chan_7f8fa6.css +++ b/files/assets/style/4chan_7f8fa6.css @@ -27543,11 +27543,11 @@ div.banned { } div.deleted { - background-color: #FEFCBF; + background-color: #FEFCBF !important; } div.deleted.banned { - background-color: #ffcc99; + background-color: #ffcc99 !important; } .text-admin { diff --git a/drama/assets/style/4chan_805ad5.css b/files/assets/style/4chan_805ad5.css similarity index 99% rename from drama/assets/style/4chan_805ad5.css rename to files/assets/style/4chan_805ad5.css index 21e69afd2..155ce8fd1 100644 --- a/drama/assets/style/4chan_805ad5.css +++ b/files/assets/style/4chan_805ad5.css @@ -27543,11 +27543,11 @@ div.banned { } div.deleted { - background-color: #FEFCBF; + background-color: #FEFCBF !important; } div.deleted.banned { - background-color: #ffcc99; + background-color: #ffcc99 !important; } .text-admin { diff --git a/drama/assets/style/4chan_80ffff.css b/files/assets/style/4chan_80ffff.css similarity index 99% rename from drama/assets/style/4chan_80ffff.css rename to files/assets/style/4chan_80ffff.css index 083dba1ae..d26c34739 100644 --- a/drama/assets/style/4chan_80ffff.css +++ b/files/assets/style/4chan_80ffff.css @@ -27543,11 +27543,11 @@ div.banned { } div.deleted { - background-color: #FEFCBF; + background-color: #FEFCBF !important; } div.deleted.banned { - background-color: #ffcc99; + background-color: #ffcc99 !important; } .text-admin { diff --git a/drama/assets/style/4chan_e4432d.css b/files/assets/style/4chan_e4432d.css similarity index 99% rename from drama/assets/style/4chan_e4432d.css rename to files/assets/style/4chan_e4432d.css index cc9ebd624..70ba1f5a5 100644 --- a/drama/assets/style/4chan_e4432d.css +++ b/files/assets/style/4chan_e4432d.css @@ -27543,11 +27543,11 @@ div.banned { } div.deleted { - background-color: #FEFCBF; + background-color: #FEFCBF !important; } div.deleted.banned { - background-color: #ffcc99; + background-color: #ffcc99 !important; } .text-admin { diff --git a/drama/assets/style/4chan_eb4963.css b/files/assets/style/4chan_eb4963.css similarity index 99% rename from drama/assets/style/4chan_eb4963.css rename to files/assets/style/4chan_eb4963.css index 575245aff..604508422 100644 --- a/drama/assets/style/4chan_eb4963.css +++ b/files/assets/style/4chan_eb4963.css @@ -27543,11 +27543,11 @@ div.banned { } div.deleted { - background-color: #FEFCBF; + background-color: #FEFCBF !important; } div.deleted.banned { - background-color: #ffcc99; + background-color: #ffcc99 !important; } .text-admin { diff --git a/drama/assets/style/4chan_ec72de.css b/files/assets/style/4chan_ec72de.css similarity index 99% rename from drama/assets/style/4chan_ec72de.css rename to files/assets/style/4chan_ec72de.css index 3174249e1..4fb4afe3d 100644 --- a/drama/assets/style/4chan_ec72de.css +++ b/files/assets/style/4chan_ec72de.css @@ -27543,11 +27543,11 @@ div.banned { } div.deleted { - background-color: #FEFCBF; + background-color: #FEFCBF !important; } div.deleted.banned { - background-color: #ffcc99; + background-color: #ffcc99 !important; } .text-admin { diff --git a/drama/assets/style/4chan_f39731.css b/files/assets/style/4chan_f39731.css similarity index 99% rename from drama/assets/style/4chan_f39731.css rename to files/assets/style/4chan_f39731.css index 6bccff379..58939c8f6 100644 --- a/drama/assets/style/4chan_f39731.css +++ b/files/assets/style/4chan_f39731.css @@ -27543,11 +27543,11 @@ div.banned { } div.deleted { - background-color: #FEFCBF; + background-color: #FEFCBF !important; } div.deleted.banned { - background-color: #ffcc99; + background-color: #ffcc99 !important; } .text-admin { diff --git a/drama/assets/style/4chan_f8db58.css b/files/assets/style/4chan_f8db58.css similarity index 99% rename from drama/assets/style/4chan_f8db58.css rename to files/assets/style/4chan_f8db58.css index 83824557d..cc0d88302 100644 --- a/drama/assets/style/4chan_f8db58.css +++ b/files/assets/style/4chan_f8db58.css @@ -27543,11 +27543,11 @@ div.banned { } div.deleted { - background-color: #FEFCBF; + background-color: #FEFCBF !important; } div.deleted.banned { - background-color: #ffcc99; + background-color: #ffcc99 !important; } .text-admin { diff --git a/drama/assets/style/4chan_ff0000.css b/files/assets/style/4chan_ff0000.css similarity index 99% rename from drama/assets/style/4chan_ff0000.css rename to files/assets/style/4chan_ff0000.css index 28dc752f9..d6b348911 100644 --- a/drama/assets/style/4chan_ff0000.css +++ b/files/assets/style/4chan_ff0000.css @@ -27543,11 +27543,11 @@ div.banned { } div.deleted { - background-color: #FEFCBF; + background-color: #FEFCBF !important; } div.deleted.banned { - background-color: #ffcc99; + background-color: #ffcc99 !important; } .text-admin { diff --git a/drama/assets/style/4chan_ff66ac.css b/files/assets/style/4chan_ff66ac.css similarity index 99% rename from drama/assets/style/4chan_ff66ac.css rename to files/assets/style/4chan_ff66ac.css index b93f2373b..ce71839bb 100644 --- a/drama/assets/style/4chan_ff66ac.css +++ b/files/assets/style/4chan_ff66ac.css @@ -27543,11 +27543,11 @@ div.banned { } div.deleted { - background-color: #FEFCBF; + background-color: #FEFCBF !important; } div.deleted.banned { - background-color: #ffcc99; + background-color: #ffcc99 !important; } .text-admin { diff --git a/drama/assets/style/agendaposter.css b/files/assets/style/agendaposter.css similarity index 88% rename from drama/assets/style/agendaposter.css rename to files/assets/style/agendaposter.css index 5759dd301..191aa589b 100644 --- a/drama/assets/style/agendaposter.css +++ b/files/assets/style/agendaposter.css @@ -18,10 +18,6 @@ html { .nav-item .text-small-extra.text-purple i { font-size: 11px !important } -.nav-item .text-small-extra.text-purple::after { - content: "-9999 Dramacoins"; - font-size: 11px !important -} /*h1, h2, h3, h4, h5, h6, p, span, label { background-image: linear-gradient(to left, violet, indigo, blue, green, yellow, orange, red); diff --git a/drama/assets/style/coffee.scss b/files/assets/style/coffee.scss similarity index 100% rename from drama/assets/style/coffee.scss rename to files/assets/style/coffee.scss diff --git a/drama/assets/style/coffee_2a96f3.css b/files/assets/style/coffee_2a96f3.css similarity index 99% rename from drama/assets/style/coffee_2a96f3.css rename to files/assets/style/coffee_2a96f3.css index 963a12a35..04fd0f564 100644 --- a/drama/assets/style/coffee_2a96f3.css +++ b/files/assets/style/coffee_2a96f3.css @@ -27544,11 +27544,11 @@ div.banned { } div.deleted { - background-color: #FEFCBF; + background-color: #FEFCBF !important; } div.deleted.banned { - background-color: #ffcc99; + background-color: #ffcc99 !important; } .text-admin { diff --git a/drama/assets/style/coffee_30409f.css b/files/assets/style/coffee_30409f.css similarity index 99% rename from drama/assets/style/coffee_30409f.css rename to files/assets/style/coffee_30409f.css index 861622140..f09a06b6e 100644 --- a/drama/assets/style/coffee_30409f.css +++ b/files/assets/style/coffee_30409f.css @@ -27544,11 +27544,11 @@ div.banned { } div.deleted { - background-color: #FEFCBF; + background-color: #FEFCBF !important; } div.deleted.banned { - background-color: #ffcc99; + background-color: #ffcc99 !important; } .text-admin { diff --git a/drama/assets/style/coffee_38a169.css b/files/assets/style/coffee_38a169.css similarity index 99% rename from drama/assets/style/coffee_38a169.css rename to files/assets/style/coffee_38a169.css index b4798ac12..e193259dc 100644 --- a/drama/assets/style/coffee_38a169.css +++ b/files/assets/style/coffee_38a169.css @@ -27544,11 +27544,11 @@ div.banned { } div.deleted { - background-color: #FEFCBF; + background-color: #FEFCBF !important; } div.deleted.banned { - background-color: #ffcc99; + background-color: #ffcc99 !important; } .text-admin { diff --git a/drama/assets/style/coffee_3e98a7.css b/files/assets/style/coffee_3e98a7.css similarity index 99% rename from drama/assets/style/coffee_3e98a7.css rename to files/assets/style/coffee_3e98a7.css index 60f316bde..84b16b0ef 100644 --- a/drama/assets/style/coffee_3e98a7.css +++ b/files/assets/style/coffee_3e98a7.css @@ -27544,11 +27544,11 @@ div.banned { } div.deleted { - background-color: #FEFCBF; + background-color: #FEFCBF !important; } div.deleted.banned { - background-color: #ffcc99; + background-color: #ffcc99 !important; } .text-admin { diff --git a/drama/assets/style/coffee_62ca56.css b/files/assets/style/coffee_62ca56.css similarity index 99% rename from drama/assets/style/coffee_62ca56.css rename to files/assets/style/coffee_62ca56.css index 73f6a119a..c37438adf 100644 --- a/drama/assets/style/coffee_62ca56.css +++ b/files/assets/style/coffee_62ca56.css @@ -27544,11 +27544,11 @@ div.banned { } div.deleted { - background-color: #FEFCBF; + background-color: #FEFCBF !important; } div.deleted.banned { - background-color: #ffcc99; + background-color: #ffcc99 !important; } .text-admin { diff --git a/drama/assets/style/coffee_7b9ae4.css b/files/assets/style/coffee_7b9ae4.css similarity index 99% rename from drama/assets/style/coffee_7b9ae4.css rename to files/assets/style/coffee_7b9ae4.css index 94b1d60d9..e9828e054 100644 --- a/drama/assets/style/coffee_7b9ae4.css +++ b/files/assets/style/coffee_7b9ae4.css @@ -27544,11 +27544,11 @@ div.banned { } div.deleted { - background-color: #FEFCBF; + background-color: #FEFCBF !important; } div.deleted.banned { - background-color: #ffcc99; + background-color: #ffcc99 !important; } .text-admin { diff --git a/drama/assets/style/coffee_7f8fa6.css b/files/assets/style/coffee_7f8fa6.css similarity index 99% rename from drama/assets/style/coffee_7f8fa6.css rename to files/assets/style/coffee_7f8fa6.css index cfe8c7ddb..7f8b3ae54 100644 --- a/drama/assets/style/coffee_7f8fa6.css +++ b/files/assets/style/coffee_7f8fa6.css @@ -27544,11 +27544,11 @@ div.banned { } div.deleted { - background-color: #FEFCBF; + background-color: #FEFCBF !important; } div.deleted.banned { - background-color: #ffcc99; + background-color: #ffcc99 !important; } .text-admin { diff --git a/drama/assets/style/coffee_805ad5.css b/files/assets/style/coffee_805ad5.css similarity index 99% rename from drama/assets/style/coffee_805ad5.css rename to files/assets/style/coffee_805ad5.css index eabb366d7..cad732268 100644 --- a/drama/assets/style/coffee_805ad5.css +++ b/files/assets/style/coffee_805ad5.css @@ -27544,11 +27544,11 @@ div.banned { } div.deleted { - background-color: #FEFCBF; + background-color: #FEFCBF !important; } div.deleted.banned { - background-color: #ffcc99; + background-color: #ffcc99 !important; } .text-admin { diff --git a/drama/assets/style/coffee_80ffff.css b/files/assets/style/coffee_80ffff.css similarity index 99% rename from drama/assets/style/coffee_80ffff.css rename to files/assets/style/coffee_80ffff.css index 3c8e5d5c4..717744907 100644 --- a/drama/assets/style/coffee_80ffff.css +++ b/files/assets/style/coffee_80ffff.css @@ -27544,11 +27544,11 @@ div.banned { } div.deleted { - background-color: #FEFCBF; + background-color: #FEFCBF !important; } div.deleted.banned { - background-color: #ffcc99; + background-color: #ffcc99 !important; } .text-admin { diff --git a/drama/assets/style/coffee_e4432d.css b/files/assets/style/coffee_e4432d.css similarity index 99% rename from drama/assets/style/coffee_e4432d.css rename to files/assets/style/coffee_e4432d.css index 2dc074f33..b99eb4768 100644 --- a/drama/assets/style/coffee_e4432d.css +++ b/files/assets/style/coffee_e4432d.css @@ -27544,11 +27544,11 @@ div.banned { } div.deleted { - background-color: #FEFCBF; + background-color: #FEFCBF !important; } div.deleted.banned { - background-color: #ffcc99; + background-color: #ffcc99 !important; } .text-admin { diff --git a/drama/assets/style/coffee_eb4963.css b/files/assets/style/coffee_eb4963.css similarity index 99% rename from drama/assets/style/coffee_eb4963.css rename to files/assets/style/coffee_eb4963.css index 7b8808d1b..9326822f9 100644 --- a/drama/assets/style/coffee_eb4963.css +++ b/files/assets/style/coffee_eb4963.css @@ -27544,11 +27544,11 @@ div.banned { } div.deleted { - background-color: #FEFCBF; + background-color: #FEFCBF !important; } div.deleted.banned { - background-color: #ffcc99; + background-color: #ffcc99 !important; } .text-admin { diff --git a/drama/assets/style/coffee_ec72de.css b/files/assets/style/coffee_ec72de.css similarity index 99% rename from drama/assets/style/coffee_ec72de.css rename to files/assets/style/coffee_ec72de.css index 2a53e0253..91c6e8b54 100644 --- a/drama/assets/style/coffee_ec72de.css +++ b/files/assets/style/coffee_ec72de.css @@ -27544,11 +27544,11 @@ div.banned { } div.deleted { - background-color: #FEFCBF; + background-color: #FEFCBF !important; } div.deleted.banned { - background-color: #ffcc99; + background-color: #ffcc99 !important; } .text-admin { diff --git a/drama/assets/style/coffee_f39731.css b/files/assets/style/coffee_f39731.css similarity index 99% rename from drama/assets/style/coffee_f39731.css rename to files/assets/style/coffee_f39731.css index 54fd99572..b61c620ae 100644 --- a/drama/assets/style/coffee_f39731.css +++ b/files/assets/style/coffee_f39731.css @@ -27544,11 +27544,11 @@ div.banned { } div.deleted { - background-color: #FEFCBF; + background-color: #FEFCBF !important; } div.deleted.banned { - background-color: #ffcc99; + background-color: #ffcc99 !important; } .text-admin { diff --git a/drama/assets/style/coffee_f8db58.css b/files/assets/style/coffee_f8db58.css similarity index 99% rename from drama/assets/style/coffee_f8db58.css rename to files/assets/style/coffee_f8db58.css index 4661c40c4..6be2223bb 100644 --- a/drama/assets/style/coffee_f8db58.css +++ b/files/assets/style/coffee_f8db58.css @@ -27544,11 +27544,11 @@ div.banned { } div.deleted { - background-color: #FEFCBF; + background-color: #FEFCBF !important; } div.deleted.banned { - background-color: #ffcc99; + background-color: #ffcc99 !important; } .text-admin { diff --git a/drama/assets/style/coffee_ff0000.css b/files/assets/style/coffee_ff0000.css similarity index 99% rename from drama/assets/style/coffee_ff0000.css rename to files/assets/style/coffee_ff0000.css index dd8edfc78..5f3c76830 100644 --- a/drama/assets/style/coffee_ff0000.css +++ b/files/assets/style/coffee_ff0000.css @@ -27544,11 +27544,11 @@ div.banned { } div.deleted { - background-color: #FEFCBF; + background-color: #FEFCBF !important; } div.deleted.banned { - background-color: #ffcc99; + background-color: #ffcc99 !important; } .text-admin { diff --git a/drama/assets/style/coffee_ff66ac.css b/files/assets/style/coffee_ff66ac.css similarity index 99% rename from drama/assets/style/coffee_ff66ac.css rename to files/assets/style/coffee_ff66ac.css index afcd02c7c..53ce60501 100644 --- a/drama/assets/style/coffee_ff66ac.css +++ b/files/assets/style/coffee_ff66ac.css @@ -27544,11 +27544,11 @@ div.banned { } div.deleted { - background-color: #FEFCBF; + background-color: #FEFCBF !important; } div.deleted.banned { - background-color: #ffcc99; + background-color: #ffcc99 !important; } .text-admin { diff --git a/drama/assets/style/dark.scss b/files/assets/style/dark.scss similarity index 100% rename from drama/assets/style/dark.scss rename to files/assets/style/dark.scss diff --git a/drama/assets/style/dark_2a96f3.css b/files/assets/style/dark_2a96f3.css similarity index 99% rename from drama/assets/style/dark_2a96f3.css rename to files/assets/style/dark_2a96f3.css index 51dce1aeb..ae6684ef3 100644 --- a/drama/assets/style/dark_2a96f3.css +++ b/files/assets/style/dark_2a96f3.css @@ -27543,11 +27543,11 @@ div.banned { } div.deleted { - background-color: #969600; + background-color: #969600 !important; } div.deleted.banned { - background-color: #964000; + background-color: #964000 !important; } .text-admin { diff --git a/drama/assets/style/dark_30409f.css b/files/assets/style/dark_30409f.css similarity index 99% rename from drama/assets/style/dark_30409f.css rename to files/assets/style/dark_30409f.css index 9366eaf62..c7f2076db 100644 --- a/drama/assets/style/dark_30409f.css +++ b/files/assets/style/dark_30409f.css @@ -27543,11 +27543,11 @@ div.banned { } div.deleted { - background-color: #969600; + background-color: #969600 !important; } div.deleted.banned { - background-color: #964000; + background-color: #964000 !important; } .text-admin { diff --git a/drama/assets/style/dark_38a169.css b/files/assets/style/dark_38a169.css similarity index 99% rename from drama/assets/style/dark_38a169.css rename to files/assets/style/dark_38a169.css index f1c532874..5e84d6a9e 100644 --- a/drama/assets/style/dark_38a169.css +++ b/files/assets/style/dark_38a169.css @@ -27543,11 +27543,11 @@ div.banned { } div.deleted { - background-color: #969600; + background-color: #969600 !important; } div.deleted.banned { - background-color: #964000; + background-color: #964000 !important; } .text-admin { diff --git a/drama/assets/style/dark_3e98a7.css b/files/assets/style/dark_3e98a7.css similarity index 99% rename from drama/assets/style/dark_3e98a7.css rename to files/assets/style/dark_3e98a7.css index aa1713a83..6275e9121 100644 --- a/drama/assets/style/dark_3e98a7.css +++ b/files/assets/style/dark_3e98a7.css @@ -27543,11 +27543,11 @@ div.banned { } div.deleted { - background-color: #969600; + background-color: #969600 !important; } div.deleted.banned { - background-color: #964000; + background-color: #964000 !important; } .text-admin { diff --git a/drama/assets/style/dark_62ca56.css b/files/assets/style/dark_62ca56.css similarity index 99% rename from drama/assets/style/dark_62ca56.css rename to files/assets/style/dark_62ca56.css index 46a14ee2e..a8dd79365 100644 --- a/drama/assets/style/dark_62ca56.css +++ b/files/assets/style/dark_62ca56.css @@ -27543,11 +27543,11 @@ div.banned { } div.deleted { - background-color: #969600; + background-color: #969600 !important; } div.deleted.banned { - background-color: #964000; + background-color: #964000 !important; } .text-admin { diff --git a/drama/assets/style/dark_7b9ae4.css b/files/assets/style/dark_7b9ae4.css similarity index 99% rename from drama/assets/style/dark_7b9ae4.css rename to files/assets/style/dark_7b9ae4.css index 8e17f5d1c..337f69d99 100644 --- a/drama/assets/style/dark_7b9ae4.css +++ b/files/assets/style/dark_7b9ae4.css @@ -27543,11 +27543,11 @@ div.banned { } div.deleted { - background-color: #969600; + background-color: #969600 !important; } div.deleted.banned { - background-color: #964000; + background-color: #964000 !important; } .text-admin { diff --git a/drama/assets/style/dark_7f8fa6.css b/files/assets/style/dark_7f8fa6.css similarity index 99% rename from drama/assets/style/dark_7f8fa6.css rename to files/assets/style/dark_7f8fa6.css index b7c380db0..1b2e1c6a1 100644 --- a/drama/assets/style/dark_7f8fa6.css +++ b/files/assets/style/dark_7f8fa6.css @@ -27543,11 +27543,11 @@ div.banned { } div.deleted { - background-color: #969600; + background-color: #969600 !important; } div.deleted.banned { - background-color: #964000; + background-color: #964000 !important; } .text-admin { diff --git a/drama/assets/style/dark_805ad5.css b/files/assets/style/dark_805ad5.css similarity index 99% rename from drama/assets/style/dark_805ad5.css rename to files/assets/style/dark_805ad5.css index 74a21b921..53f8c95b8 100644 --- a/drama/assets/style/dark_805ad5.css +++ b/files/assets/style/dark_805ad5.css @@ -27543,11 +27543,11 @@ div.banned { } div.deleted { - background-color: #969600; + background-color: #969600 !important; } div.deleted.banned { - background-color: #964000; + background-color: #964000 !important; } .text-admin { diff --git a/drama/assets/style/dark_80ffff.css b/files/assets/style/dark_80ffff.css similarity index 99% rename from drama/assets/style/dark_80ffff.css rename to files/assets/style/dark_80ffff.css index 06a5b7206..53377b758 100644 --- a/drama/assets/style/dark_80ffff.css +++ b/files/assets/style/dark_80ffff.css @@ -27543,11 +27543,11 @@ div.banned { } div.deleted { - background-color: #969600; + background-color: #969600 !important; } div.deleted.banned { - background-color: #964000; + background-color: #964000 !important; } .text-admin { diff --git a/drama/assets/style/dark_e4432d.css b/files/assets/style/dark_e4432d.css similarity index 99% rename from drama/assets/style/dark_e4432d.css rename to files/assets/style/dark_e4432d.css index 2701c9ff8..ec0cd8850 100644 --- a/drama/assets/style/dark_e4432d.css +++ b/files/assets/style/dark_e4432d.css @@ -27543,11 +27543,11 @@ div.banned { } div.deleted { - background-color: #969600; + background-color: #969600 !important; } div.deleted.banned { - background-color: #964000; + background-color: #964000 !important; } .text-admin { diff --git a/drama/assets/style/dark_eb4963.css b/files/assets/style/dark_eb4963.css similarity index 99% rename from drama/assets/style/dark_eb4963.css rename to files/assets/style/dark_eb4963.css index 090315128..2a5778f4e 100644 --- a/drama/assets/style/dark_eb4963.css +++ b/files/assets/style/dark_eb4963.css @@ -27543,11 +27543,11 @@ div.banned { } div.deleted { - background-color: #969600; + background-color: #969600 !important; } div.deleted.banned { - background-color: #964000; + background-color: #964000 !important; } .text-admin { diff --git a/drama/assets/style/dark_ec72de.css b/files/assets/style/dark_ec72de.css similarity index 99% rename from drama/assets/style/dark_ec72de.css rename to files/assets/style/dark_ec72de.css index 72af935e4..37ed91e6c 100644 --- a/drama/assets/style/dark_ec72de.css +++ b/files/assets/style/dark_ec72de.css @@ -27543,11 +27543,11 @@ div.banned { } div.deleted { - background-color: #969600; + background-color: #969600 !important; } div.deleted.banned { - background-color: #964000; + background-color: #964000 !important; } .text-admin { diff --git a/drama/assets/style/dark_f39731.css b/files/assets/style/dark_f39731.css similarity index 99% rename from drama/assets/style/dark_f39731.css rename to files/assets/style/dark_f39731.css index 82f664636..ba6a134ed 100644 --- a/drama/assets/style/dark_f39731.css +++ b/files/assets/style/dark_f39731.css @@ -27543,11 +27543,11 @@ div.banned { } div.deleted { - background-color: #969600; + background-color: #969600 !important; } div.deleted.banned { - background-color: #964000; + background-color: #964000 !important; } .text-admin { diff --git a/drama/assets/style/dark_f8db58.css b/files/assets/style/dark_f8db58.css similarity index 99% rename from drama/assets/style/dark_f8db58.css rename to files/assets/style/dark_f8db58.css index 5cfb2bd2f..c0d1dea9b 100644 --- a/drama/assets/style/dark_f8db58.css +++ b/files/assets/style/dark_f8db58.css @@ -27543,11 +27543,11 @@ div.banned { } div.deleted { - background-color: #969600; + background-color: #969600 !important; } div.deleted.banned { - background-color: #964000; + background-color: #964000 !important; } .text-admin { diff --git a/drama/assets/style/dark_ff0000.css b/files/assets/style/dark_ff0000.css similarity index 99% rename from drama/assets/style/dark_ff0000.css rename to files/assets/style/dark_ff0000.css index 86a945904..20ab7bb70 100644 --- a/drama/assets/style/dark_ff0000.css +++ b/files/assets/style/dark_ff0000.css @@ -27543,11 +27543,11 @@ div.banned { } div.deleted { - background-color: #969600; + background-color: #969600 !important; } div.deleted.banned { - background-color: #964000; + background-color: #964000 !important; } .text-admin { diff --git a/drama/assets/style/dark_ff66ac.css b/files/assets/style/dark_ff66ac.css similarity index 99% rename from drama/assets/style/dark_ff66ac.css rename to files/assets/style/dark_ff66ac.css index 740e0615f..6bbf4dd10 100644 --- a/drama/assets/style/dark_ff66ac.css +++ b/files/assets/style/dark_ff66ac.css @@ -27543,11 +27543,11 @@ div.banned { } div.deleted { - background-color: #969600; + background-color: #969600 !important; } div.deleted.banned { - background-color: #964000; + background-color: #964000 !important; } .text-admin { diff --git a/drama/assets/style/fa.css b/files/assets/style/fa.css similarity index 100% rename from drama/assets/style/fa.css rename to files/assets/style/fa.css diff --git a/drama/assets/style/light.scss b/files/assets/style/light.scss similarity index 100% rename from drama/assets/style/light.scss rename to files/assets/style/light.scss diff --git a/drama/assets/style/light_2a96f3.css b/files/assets/style/light_2a96f3.css similarity index 100% rename from drama/assets/style/light_2a96f3.css rename to files/assets/style/light_2a96f3.css diff --git a/drama/assets/style/light_30409f.css b/files/assets/style/light_30409f.css similarity index 100% rename from drama/assets/style/light_30409f.css rename to files/assets/style/light_30409f.css diff --git a/drama/assets/style/light_38a169.css b/files/assets/style/light_38a169.css similarity index 100% rename from drama/assets/style/light_38a169.css rename to files/assets/style/light_38a169.css diff --git a/drama/assets/style/light_3e98a7.css b/files/assets/style/light_3e98a7.css similarity index 100% rename from drama/assets/style/light_3e98a7.css rename to files/assets/style/light_3e98a7.css diff --git a/drama/assets/style/light_62ca56.css b/files/assets/style/light_62ca56.css similarity index 100% rename from drama/assets/style/light_62ca56.css rename to files/assets/style/light_62ca56.css diff --git a/drama/assets/style/light_7b9ae4.css b/files/assets/style/light_7b9ae4.css similarity index 100% rename from drama/assets/style/light_7b9ae4.css rename to files/assets/style/light_7b9ae4.css diff --git a/drama/assets/style/light_7f8fa6.css b/files/assets/style/light_7f8fa6.css similarity index 100% rename from drama/assets/style/light_7f8fa6.css rename to files/assets/style/light_7f8fa6.css diff --git a/drama/assets/style/light_805ad5.css b/files/assets/style/light_805ad5.css similarity index 100% rename from drama/assets/style/light_805ad5.css rename to files/assets/style/light_805ad5.css diff --git a/drama/assets/style/light_80ffff.css b/files/assets/style/light_80ffff.css similarity index 100% rename from drama/assets/style/light_80ffff.css rename to files/assets/style/light_80ffff.css diff --git a/drama/assets/style/light_e4432d.css b/files/assets/style/light_e4432d.css similarity index 100% rename from drama/assets/style/light_e4432d.css rename to files/assets/style/light_e4432d.css diff --git a/drama/assets/style/light_eb4963.css b/files/assets/style/light_eb4963.css similarity index 100% rename from drama/assets/style/light_eb4963.css rename to files/assets/style/light_eb4963.css diff --git a/drama/assets/style/light_ec72de.css b/files/assets/style/light_ec72de.css similarity index 100% rename from drama/assets/style/light_ec72de.css rename to files/assets/style/light_ec72de.css diff --git a/drama/assets/style/light_f39731.css b/files/assets/style/light_f39731.css similarity index 100% rename from drama/assets/style/light_f39731.css rename to files/assets/style/light_f39731.css diff --git a/drama/assets/style/light_f8db58.css b/files/assets/style/light_f8db58.css similarity index 100% rename from drama/assets/style/light_f8db58.css rename to files/assets/style/light_f8db58.css diff --git a/drama/assets/style/light_ff0000.css b/files/assets/style/light_ff0000.css similarity index 100% rename from drama/assets/style/light_ff0000.css rename to files/assets/style/light_ff0000.css diff --git a/drama/assets/style/light_ff66ac.css b/files/assets/style/light_ff66ac.css similarity index 100% rename from drama/assets/style/light_ff66ac.css rename to files/assets/style/light_ff66ac.css diff --git a/drama/assets/style/main.scss b/files/assets/style/main.scss similarity index 99% rename from drama/assets/style/main.scss rename to files/assets/style/main.scss index 11e91f010..f155253ec 100644 --- a/drama/assets/style/main.scss +++ b/files/assets/style/main.scss @@ -3842,15 +3842,15 @@ div.banned { } div.deleted { - background-color: $deleted; + background-color: $deleted !important; } div.deleted.banned { - background-color: $deletedandbanned + background-color: $deletedandbanned !important; } .text-admin { - color: $admin + color: $admin; } .in-comment-image { diff --git a/drama/assets/style/midnight.scss b/files/assets/style/midnight.scss similarity index 100% rename from drama/assets/style/midnight.scss rename to files/assets/style/midnight.scss diff --git a/drama/assets/style/midnight_2a96f3.css b/files/assets/style/midnight_2a96f3.css similarity index 99% rename from drama/assets/style/midnight_2a96f3.css rename to files/assets/style/midnight_2a96f3.css index 85db56c2a..b68244bf6 100644 --- a/drama/assets/style/midnight_2a96f3.css +++ b/files/assets/style/midnight_2a96f3.css @@ -27543,11 +27543,11 @@ div.banned { } div.deleted { - background-color: #969600; + background-color: #969600 !important; } div.deleted.banned { - background-color: #964000; + background-color: #964000 !important; } .text-admin { diff --git a/drama/assets/style/midnight_30409f.css b/files/assets/style/midnight_30409f.css similarity index 99% rename from drama/assets/style/midnight_30409f.css rename to files/assets/style/midnight_30409f.css index 5269ed8d5..7db040312 100644 --- a/drama/assets/style/midnight_30409f.css +++ b/files/assets/style/midnight_30409f.css @@ -27543,11 +27543,11 @@ div.banned { } div.deleted { - background-color: #969600; + background-color: #969600 !important; } div.deleted.banned { - background-color: #964000; + background-color: #964000 !important; } .text-admin { diff --git a/drama/assets/style/midnight_38a169.css b/files/assets/style/midnight_38a169.css similarity index 99% rename from drama/assets/style/midnight_38a169.css rename to files/assets/style/midnight_38a169.css index 6142dc0ac..55d02d9dd 100644 --- a/drama/assets/style/midnight_38a169.css +++ b/files/assets/style/midnight_38a169.css @@ -27543,11 +27543,11 @@ div.banned { } div.deleted { - background-color: #969600; + background-color: #969600 !important; } div.deleted.banned { - background-color: #964000; + background-color: #964000 !important; } .text-admin { diff --git a/drama/assets/style/midnight_3e98a7.css b/files/assets/style/midnight_3e98a7.css similarity index 99% rename from drama/assets/style/midnight_3e98a7.css rename to files/assets/style/midnight_3e98a7.css index e1ab9df9c..885ef724a 100644 --- a/drama/assets/style/midnight_3e98a7.css +++ b/files/assets/style/midnight_3e98a7.css @@ -27543,11 +27543,11 @@ div.banned { } div.deleted { - background-color: #969600; + background-color: #969600 !important; } div.deleted.banned { - background-color: #964000; + background-color: #964000 !important; } .text-admin { diff --git a/drama/assets/style/midnight_62ca56.css b/files/assets/style/midnight_62ca56.css similarity index 99% rename from drama/assets/style/midnight_62ca56.css rename to files/assets/style/midnight_62ca56.css index 3afd4168c..5f7cc71fb 100644 --- a/drama/assets/style/midnight_62ca56.css +++ b/files/assets/style/midnight_62ca56.css @@ -27543,11 +27543,11 @@ div.banned { } div.deleted { - background-color: #969600; + background-color: #969600 !important; } div.deleted.banned { - background-color: #964000; + background-color: #964000 !important; } .text-admin { diff --git a/drama/assets/style/midnight_7b9ae4.css b/files/assets/style/midnight_7b9ae4.css similarity index 99% rename from drama/assets/style/midnight_7b9ae4.css rename to files/assets/style/midnight_7b9ae4.css index a9676f94a..f785cd92a 100644 --- a/drama/assets/style/midnight_7b9ae4.css +++ b/files/assets/style/midnight_7b9ae4.css @@ -27543,11 +27543,11 @@ div.banned { } div.deleted { - background-color: #969600; + background-color: #969600 !important; } div.deleted.banned { - background-color: #964000; + background-color: #964000 !important; } .text-admin { diff --git a/drama/assets/style/midnight_7f8fa6.css b/files/assets/style/midnight_7f8fa6.css similarity index 99% rename from drama/assets/style/midnight_7f8fa6.css rename to files/assets/style/midnight_7f8fa6.css index 956a6435e..bc102cb40 100644 --- a/drama/assets/style/midnight_7f8fa6.css +++ b/files/assets/style/midnight_7f8fa6.css @@ -27543,11 +27543,11 @@ div.banned { } div.deleted { - background-color: #969600; + background-color: #969600 !important; } div.deleted.banned { - background-color: #964000; + background-color: #964000 !important; } .text-admin { diff --git a/drama/assets/style/midnight_805ad5.css b/files/assets/style/midnight_805ad5.css similarity index 99% rename from drama/assets/style/midnight_805ad5.css rename to files/assets/style/midnight_805ad5.css index 5f1d6f44c..d126714ca 100644 --- a/drama/assets/style/midnight_805ad5.css +++ b/files/assets/style/midnight_805ad5.css @@ -27543,11 +27543,11 @@ div.banned { } div.deleted { - background-color: #969600; + background-color: #969600 !important; } div.deleted.banned { - background-color: #964000; + background-color: #964000 !important; } .text-admin { diff --git a/drama/assets/style/midnight_80ffff.css b/files/assets/style/midnight_80ffff.css similarity index 99% rename from drama/assets/style/midnight_80ffff.css rename to files/assets/style/midnight_80ffff.css index 36e18bb3d..ede7ae5b6 100644 --- a/drama/assets/style/midnight_80ffff.css +++ b/files/assets/style/midnight_80ffff.css @@ -27543,11 +27543,11 @@ div.banned { } div.deleted { - background-color: #969600; + background-color: #969600 !important; } div.deleted.banned { - background-color: #964000; + background-color: #964000 !important; } .text-admin { diff --git a/drama/assets/style/midnight_e4432d.css b/files/assets/style/midnight_e4432d.css similarity index 99% rename from drama/assets/style/midnight_e4432d.css rename to files/assets/style/midnight_e4432d.css index a4dc01bd8..1cf812597 100644 --- a/drama/assets/style/midnight_e4432d.css +++ b/files/assets/style/midnight_e4432d.css @@ -27543,11 +27543,11 @@ div.banned { } div.deleted { - background-color: #969600; + background-color: #969600 !important; } div.deleted.banned { - background-color: #964000; + background-color: #964000 !important; } .text-admin { diff --git a/drama/assets/style/midnight_eb4963.css b/files/assets/style/midnight_eb4963.css similarity index 99% rename from drama/assets/style/midnight_eb4963.css rename to files/assets/style/midnight_eb4963.css index 2b4ed562e..4c5a45368 100644 --- a/drama/assets/style/midnight_eb4963.css +++ b/files/assets/style/midnight_eb4963.css @@ -27543,11 +27543,11 @@ div.banned { } div.deleted { - background-color: #969600; + background-color: #969600 !important; } div.deleted.banned { - background-color: #964000; + background-color: #964000 !important; } .text-admin { diff --git a/drama/assets/style/midnight_ec72de.css b/files/assets/style/midnight_ec72de.css similarity index 99% rename from drama/assets/style/midnight_ec72de.css rename to files/assets/style/midnight_ec72de.css index e0d55b547..7206528c2 100644 --- a/drama/assets/style/midnight_ec72de.css +++ b/files/assets/style/midnight_ec72de.css @@ -27543,11 +27543,11 @@ div.banned { } div.deleted { - background-color: #969600; + background-color: #969600 !important; } div.deleted.banned { - background-color: #964000; + background-color: #964000 !important; } .text-admin { diff --git a/drama/assets/style/midnight_f39731.css b/files/assets/style/midnight_f39731.css similarity index 99% rename from drama/assets/style/midnight_f39731.css rename to files/assets/style/midnight_f39731.css index 8371f7b14..c5d6988ec 100644 --- a/drama/assets/style/midnight_f39731.css +++ b/files/assets/style/midnight_f39731.css @@ -27543,11 +27543,11 @@ div.banned { } div.deleted { - background-color: #969600; + background-color: #969600 !important; } div.deleted.banned { - background-color: #964000; + background-color: #964000 !important; } .text-admin { diff --git a/drama/assets/style/midnight_f8db58.css b/files/assets/style/midnight_f8db58.css similarity index 99% rename from drama/assets/style/midnight_f8db58.css rename to files/assets/style/midnight_f8db58.css index 2f1fca682..78eb62305 100644 --- a/drama/assets/style/midnight_f8db58.css +++ b/files/assets/style/midnight_f8db58.css @@ -27543,11 +27543,11 @@ div.banned { } div.deleted { - background-color: #969600; + background-color: #969600 !important; } div.deleted.banned { - background-color: #964000; + background-color: #964000 !important; } .text-admin { diff --git a/drama/assets/style/midnight_ff0000.css b/files/assets/style/midnight_ff0000.css similarity index 99% rename from drama/assets/style/midnight_ff0000.css rename to files/assets/style/midnight_ff0000.css index dea0e5ab9..7724b1b45 100644 --- a/drama/assets/style/midnight_ff0000.css +++ b/files/assets/style/midnight_ff0000.css @@ -27543,11 +27543,11 @@ div.banned { } div.deleted { - background-color: #969600; + background-color: #969600 !important; } div.deleted.banned { - background-color: #964000; + background-color: #964000 !important; } .text-admin { diff --git a/drama/assets/style/midnight_ff66ac.css b/files/assets/style/midnight_ff66ac.css similarity index 99% rename from drama/assets/style/midnight_ff66ac.css rename to files/assets/style/midnight_ff66ac.css index 016229332..853ca4063 100644 --- a/drama/assets/style/midnight_ff66ac.css +++ b/files/assets/style/midnight_ff66ac.css @@ -27543,11 +27543,11 @@ div.banned { } div.deleted { - background-color: #969600; + background-color: #969600 !important; } div.deleted.banned { - background-color: #964000; + background-color: #964000 !important; } .text-admin { diff --git a/drama/assets/style/node_modules/bootstrap/LICENSE b/files/assets/style/node_modules/bootstrap/LICENSE similarity index 100% rename from drama/assets/style/node_modules/bootstrap/LICENSE rename to files/assets/style/node_modules/bootstrap/LICENSE diff --git a/drama/assets/style/node_modules/bootstrap/README.md b/files/assets/style/node_modules/bootstrap/README.md similarity index 100% rename from drama/assets/style/node_modules/bootstrap/README.md rename to files/assets/style/node_modules/bootstrap/README.md diff --git a/drama/assets/style/node_modules/bootstrap/js/src/alert.js b/files/assets/style/node_modules/bootstrap/js/src/alert.js similarity index 100% rename from drama/assets/style/node_modules/bootstrap/js/src/alert.js rename to files/assets/style/node_modules/bootstrap/js/src/alert.js diff --git a/drama/assets/style/node_modules/bootstrap/js/src/button.js b/files/assets/style/node_modules/bootstrap/js/src/button.js similarity index 100% rename from drama/assets/style/node_modules/bootstrap/js/src/button.js rename to files/assets/style/node_modules/bootstrap/js/src/button.js diff --git a/drama/assets/style/node_modules/bootstrap/js/src/carousel.js b/files/assets/style/node_modules/bootstrap/js/src/carousel.js similarity index 100% rename from drama/assets/style/node_modules/bootstrap/js/src/carousel.js rename to files/assets/style/node_modules/bootstrap/js/src/carousel.js diff --git a/drama/assets/style/node_modules/bootstrap/js/src/collapse.js b/files/assets/style/node_modules/bootstrap/js/src/collapse.js similarity index 100% rename from drama/assets/style/node_modules/bootstrap/js/src/collapse.js rename to files/assets/style/node_modules/bootstrap/js/src/collapse.js diff --git a/drama/assets/style/node_modules/bootstrap/js/src/dropdown.js b/files/assets/style/node_modules/bootstrap/js/src/dropdown.js similarity index 100% rename from drama/assets/style/node_modules/bootstrap/js/src/dropdown.js rename to files/assets/style/node_modules/bootstrap/js/src/dropdown.js diff --git a/drama/assets/style/node_modules/bootstrap/js/src/index.js b/files/assets/style/node_modules/bootstrap/js/src/index.js similarity index 100% rename from drama/assets/style/node_modules/bootstrap/js/src/index.js rename to files/assets/style/node_modules/bootstrap/js/src/index.js diff --git a/drama/assets/style/node_modules/bootstrap/js/src/modal.js b/files/assets/style/node_modules/bootstrap/js/src/modal.js similarity index 100% rename from drama/assets/style/node_modules/bootstrap/js/src/modal.js rename to files/assets/style/node_modules/bootstrap/js/src/modal.js diff --git a/drama/assets/style/node_modules/bootstrap/js/src/popover.js b/files/assets/style/node_modules/bootstrap/js/src/popover.js similarity index 100% rename from drama/assets/style/node_modules/bootstrap/js/src/popover.js rename to files/assets/style/node_modules/bootstrap/js/src/popover.js diff --git a/drama/assets/style/node_modules/bootstrap/js/src/scrollspy.js b/files/assets/style/node_modules/bootstrap/js/src/scrollspy.js similarity index 100% rename from drama/assets/style/node_modules/bootstrap/js/src/scrollspy.js rename to files/assets/style/node_modules/bootstrap/js/src/scrollspy.js diff --git a/drama/assets/style/node_modules/bootstrap/js/src/tab.js b/files/assets/style/node_modules/bootstrap/js/src/tab.js similarity index 100% rename from drama/assets/style/node_modules/bootstrap/js/src/tab.js rename to files/assets/style/node_modules/bootstrap/js/src/tab.js diff --git a/drama/assets/style/node_modules/bootstrap/js/src/toast.js b/files/assets/style/node_modules/bootstrap/js/src/toast.js similarity index 100% rename from drama/assets/style/node_modules/bootstrap/js/src/toast.js rename to files/assets/style/node_modules/bootstrap/js/src/toast.js diff --git a/drama/assets/style/node_modules/bootstrap/js/src/tools/sanitizer.js b/files/assets/style/node_modules/bootstrap/js/src/tools/sanitizer.js similarity index 100% rename from drama/assets/style/node_modules/bootstrap/js/src/tools/sanitizer.js rename to files/assets/style/node_modules/bootstrap/js/src/tools/sanitizer.js diff --git a/drama/assets/style/node_modules/bootstrap/js/src/tooltip.js b/files/assets/style/node_modules/bootstrap/js/src/tooltip.js similarity index 100% rename from drama/assets/style/node_modules/bootstrap/js/src/tooltip.js rename to files/assets/style/node_modules/bootstrap/js/src/tooltip.js diff --git a/drama/assets/style/node_modules/bootstrap/js/src/util.js b/files/assets/style/node_modules/bootstrap/js/src/util.js similarity index 100% rename from drama/assets/style/node_modules/bootstrap/js/src/util.js rename to files/assets/style/node_modules/bootstrap/js/src/util.js diff --git a/drama/assets/style/node_modules/bootstrap/package.json b/files/assets/style/node_modules/bootstrap/package.json similarity index 100% rename from drama/assets/style/node_modules/bootstrap/package.json rename to files/assets/style/node_modules/bootstrap/package.json diff --git a/drama/assets/style/node_modules/bootstrap/scss/_alert.scss b/files/assets/style/node_modules/bootstrap/scss/_alert.scss similarity index 100% rename from drama/assets/style/node_modules/bootstrap/scss/_alert.scss rename to files/assets/style/node_modules/bootstrap/scss/_alert.scss diff --git a/drama/assets/style/node_modules/bootstrap/scss/_badge.scss b/files/assets/style/node_modules/bootstrap/scss/_badge.scss similarity index 100% rename from drama/assets/style/node_modules/bootstrap/scss/_badge.scss rename to files/assets/style/node_modules/bootstrap/scss/_badge.scss diff --git a/drama/assets/style/node_modules/bootstrap/scss/_breadcrumb.scss b/files/assets/style/node_modules/bootstrap/scss/_breadcrumb.scss similarity index 100% rename from drama/assets/style/node_modules/bootstrap/scss/_breadcrumb.scss rename to files/assets/style/node_modules/bootstrap/scss/_breadcrumb.scss diff --git a/drama/assets/style/node_modules/bootstrap/scss/_button-group.scss b/files/assets/style/node_modules/bootstrap/scss/_button-group.scss similarity index 100% rename from drama/assets/style/node_modules/bootstrap/scss/_button-group.scss rename to files/assets/style/node_modules/bootstrap/scss/_button-group.scss diff --git a/drama/assets/style/node_modules/bootstrap/scss/_buttons.scss b/files/assets/style/node_modules/bootstrap/scss/_buttons.scss similarity index 100% rename from drama/assets/style/node_modules/bootstrap/scss/_buttons.scss rename to files/assets/style/node_modules/bootstrap/scss/_buttons.scss diff --git a/drama/assets/style/node_modules/bootstrap/scss/_card.scss b/files/assets/style/node_modules/bootstrap/scss/_card.scss similarity index 100% rename from drama/assets/style/node_modules/bootstrap/scss/_card.scss rename to files/assets/style/node_modules/bootstrap/scss/_card.scss diff --git a/drama/assets/style/node_modules/bootstrap/scss/_carousel.scss b/files/assets/style/node_modules/bootstrap/scss/_carousel.scss similarity index 100% rename from drama/assets/style/node_modules/bootstrap/scss/_carousel.scss rename to files/assets/style/node_modules/bootstrap/scss/_carousel.scss diff --git a/drama/assets/style/node_modules/bootstrap/scss/_close.scss b/files/assets/style/node_modules/bootstrap/scss/_close.scss similarity index 100% rename from drama/assets/style/node_modules/bootstrap/scss/_close.scss rename to files/assets/style/node_modules/bootstrap/scss/_close.scss diff --git a/drama/assets/style/node_modules/bootstrap/scss/_code.scss b/files/assets/style/node_modules/bootstrap/scss/_code.scss similarity index 100% rename from drama/assets/style/node_modules/bootstrap/scss/_code.scss rename to files/assets/style/node_modules/bootstrap/scss/_code.scss diff --git a/drama/assets/style/node_modules/bootstrap/scss/_custom-forms.scss b/files/assets/style/node_modules/bootstrap/scss/_custom-forms.scss similarity index 100% rename from drama/assets/style/node_modules/bootstrap/scss/_custom-forms.scss rename to files/assets/style/node_modules/bootstrap/scss/_custom-forms.scss diff --git a/drama/assets/style/node_modules/bootstrap/scss/_dropdown.scss b/files/assets/style/node_modules/bootstrap/scss/_dropdown.scss similarity index 100% rename from drama/assets/style/node_modules/bootstrap/scss/_dropdown.scss rename to files/assets/style/node_modules/bootstrap/scss/_dropdown.scss diff --git a/drama/assets/style/node_modules/bootstrap/scss/_forms.scss b/files/assets/style/node_modules/bootstrap/scss/_forms.scss similarity index 100% rename from drama/assets/style/node_modules/bootstrap/scss/_forms.scss rename to files/assets/style/node_modules/bootstrap/scss/_forms.scss diff --git a/drama/assets/style/node_modules/bootstrap/scss/_functions.scss b/files/assets/style/node_modules/bootstrap/scss/_functions.scss similarity index 100% rename from drama/assets/style/node_modules/bootstrap/scss/_functions.scss rename to files/assets/style/node_modules/bootstrap/scss/_functions.scss diff --git a/drama/assets/style/node_modules/bootstrap/scss/_grid.scss b/files/assets/style/node_modules/bootstrap/scss/_grid.scss similarity index 100% rename from drama/assets/style/node_modules/bootstrap/scss/_grid.scss rename to files/assets/style/node_modules/bootstrap/scss/_grid.scss diff --git a/drama/assets/style/node_modules/bootstrap/scss/_images.scss b/files/assets/style/node_modules/bootstrap/scss/_images.scss similarity index 100% rename from drama/assets/style/node_modules/bootstrap/scss/_images.scss rename to files/assets/style/node_modules/bootstrap/scss/_images.scss diff --git a/drama/assets/style/node_modules/bootstrap/scss/_input-group.scss b/files/assets/style/node_modules/bootstrap/scss/_input-group.scss similarity index 100% rename from drama/assets/style/node_modules/bootstrap/scss/_input-group.scss rename to files/assets/style/node_modules/bootstrap/scss/_input-group.scss diff --git a/drama/assets/style/node_modules/bootstrap/scss/_jumbotron.scss b/files/assets/style/node_modules/bootstrap/scss/_jumbotron.scss similarity index 100% rename from drama/assets/style/node_modules/bootstrap/scss/_jumbotron.scss rename to files/assets/style/node_modules/bootstrap/scss/_jumbotron.scss diff --git a/drama/assets/style/node_modules/bootstrap/scss/_list-group.scss b/files/assets/style/node_modules/bootstrap/scss/_list-group.scss similarity index 100% rename from drama/assets/style/node_modules/bootstrap/scss/_list-group.scss rename to files/assets/style/node_modules/bootstrap/scss/_list-group.scss diff --git a/drama/assets/style/node_modules/bootstrap/scss/_media.scss b/files/assets/style/node_modules/bootstrap/scss/_media.scss similarity index 100% rename from drama/assets/style/node_modules/bootstrap/scss/_media.scss rename to files/assets/style/node_modules/bootstrap/scss/_media.scss diff --git a/drama/assets/style/node_modules/bootstrap/scss/_mixins.scss b/files/assets/style/node_modules/bootstrap/scss/_mixins.scss similarity index 100% rename from drama/assets/style/node_modules/bootstrap/scss/_mixins.scss rename to files/assets/style/node_modules/bootstrap/scss/_mixins.scss diff --git a/drama/assets/style/node_modules/bootstrap/scss/_modal.scss b/files/assets/style/node_modules/bootstrap/scss/_modal.scss similarity index 100% rename from drama/assets/style/node_modules/bootstrap/scss/_modal.scss rename to files/assets/style/node_modules/bootstrap/scss/_modal.scss diff --git a/drama/assets/style/node_modules/bootstrap/scss/_nav.scss b/files/assets/style/node_modules/bootstrap/scss/_nav.scss similarity index 100% rename from drama/assets/style/node_modules/bootstrap/scss/_nav.scss rename to files/assets/style/node_modules/bootstrap/scss/_nav.scss diff --git a/drama/assets/style/node_modules/bootstrap/scss/_navbar.scss b/files/assets/style/node_modules/bootstrap/scss/_navbar.scss similarity index 100% rename from drama/assets/style/node_modules/bootstrap/scss/_navbar.scss rename to files/assets/style/node_modules/bootstrap/scss/_navbar.scss diff --git a/drama/assets/style/node_modules/bootstrap/scss/_pagination.scss b/files/assets/style/node_modules/bootstrap/scss/_pagination.scss similarity index 100% rename from drama/assets/style/node_modules/bootstrap/scss/_pagination.scss rename to files/assets/style/node_modules/bootstrap/scss/_pagination.scss diff --git a/drama/assets/style/node_modules/bootstrap/scss/_popover.scss b/files/assets/style/node_modules/bootstrap/scss/_popover.scss similarity index 100% rename from drama/assets/style/node_modules/bootstrap/scss/_popover.scss rename to files/assets/style/node_modules/bootstrap/scss/_popover.scss diff --git a/drama/assets/style/node_modules/bootstrap/scss/_print.scss b/files/assets/style/node_modules/bootstrap/scss/_print.scss similarity index 100% rename from drama/assets/style/node_modules/bootstrap/scss/_print.scss rename to files/assets/style/node_modules/bootstrap/scss/_print.scss diff --git a/drama/assets/style/node_modules/bootstrap/scss/_progress.scss b/files/assets/style/node_modules/bootstrap/scss/_progress.scss similarity index 100% rename from drama/assets/style/node_modules/bootstrap/scss/_progress.scss rename to files/assets/style/node_modules/bootstrap/scss/_progress.scss diff --git a/drama/assets/style/node_modules/bootstrap/scss/_reboot.scss b/files/assets/style/node_modules/bootstrap/scss/_reboot.scss similarity index 100% rename from drama/assets/style/node_modules/bootstrap/scss/_reboot.scss rename to files/assets/style/node_modules/bootstrap/scss/_reboot.scss diff --git a/drama/assets/style/node_modules/bootstrap/scss/_root.scss b/files/assets/style/node_modules/bootstrap/scss/_root.scss similarity index 100% rename from drama/assets/style/node_modules/bootstrap/scss/_root.scss rename to files/assets/style/node_modules/bootstrap/scss/_root.scss diff --git a/drama/assets/style/node_modules/bootstrap/scss/_spinners.scss b/files/assets/style/node_modules/bootstrap/scss/_spinners.scss similarity index 100% rename from drama/assets/style/node_modules/bootstrap/scss/_spinners.scss rename to files/assets/style/node_modules/bootstrap/scss/_spinners.scss diff --git a/drama/assets/style/node_modules/bootstrap/scss/_tables.scss b/files/assets/style/node_modules/bootstrap/scss/_tables.scss similarity index 100% rename from drama/assets/style/node_modules/bootstrap/scss/_tables.scss rename to files/assets/style/node_modules/bootstrap/scss/_tables.scss diff --git a/drama/assets/style/node_modules/bootstrap/scss/_toasts.scss b/files/assets/style/node_modules/bootstrap/scss/_toasts.scss similarity index 100% rename from drama/assets/style/node_modules/bootstrap/scss/_toasts.scss rename to files/assets/style/node_modules/bootstrap/scss/_toasts.scss diff --git a/drama/assets/style/node_modules/bootstrap/scss/_tooltip.scss b/files/assets/style/node_modules/bootstrap/scss/_tooltip.scss similarity index 100% rename from drama/assets/style/node_modules/bootstrap/scss/_tooltip.scss rename to files/assets/style/node_modules/bootstrap/scss/_tooltip.scss diff --git a/drama/assets/style/node_modules/bootstrap/scss/_transitions.scss b/files/assets/style/node_modules/bootstrap/scss/_transitions.scss similarity index 100% rename from drama/assets/style/node_modules/bootstrap/scss/_transitions.scss rename to files/assets/style/node_modules/bootstrap/scss/_transitions.scss diff --git a/drama/assets/style/node_modules/bootstrap/scss/_type.scss b/files/assets/style/node_modules/bootstrap/scss/_type.scss similarity index 100% rename from drama/assets/style/node_modules/bootstrap/scss/_type.scss rename to files/assets/style/node_modules/bootstrap/scss/_type.scss diff --git a/drama/assets/style/node_modules/bootstrap/scss/_utilities.scss b/files/assets/style/node_modules/bootstrap/scss/_utilities.scss similarity index 100% rename from drama/assets/style/node_modules/bootstrap/scss/_utilities.scss rename to files/assets/style/node_modules/bootstrap/scss/_utilities.scss diff --git a/drama/assets/style/node_modules/bootstrap/scss/_variables.scss b/files/assets/style/node_modules/bootstrap/scss/_variables.scss similarity index 100% rename from drama/assets/style/node_modules/bootstrap/scss/_variables.scss rename to files/assets/style/node_modules/bootstrap/scss/_variables.scss diff --git a/drama/assets/style/node_modules/bootstrap/scss/bootstrap-grid.scss b/files/assets/style/node_modules/bootstrap/scss/bootstrap-grid.scss similarity index 100% rename from drama/assets/style/node_modules/bootstrap/scss/bootstrap-grid.scss rename to files/assets/style/node_modules/bootstrap/scss/bootstrap-grid.scss diff --git a/drama/assets/style/node_modules/bootstrap/scss/bootstrap-reboot.scss b/files/assets/style/node_modules/bootstrap/scss/bootstrap-reboot.scss similarity index 100% rename from drama/assets/style/node_modules/bootstrap/scss/bootstrap-reboot.scss rename to files/assets/style/node_modules/bootstrap/scss/bootstrap-reboot.scss diff --git a/drama/assets/style/node_modules/bootstrap/scss/bootstrap.scss b/files/assets/style/node_modules/bootstrap/scss/bootstrap.scss similarity index 100% rename from drama/assets/style/node_modules/bootstrap/scss/bootstrap.scss rename to files/assets/style/node_modules/bootstrap/scss/bootstrap.scss diff --git a/drama/assets/style/node_modules/bootstrap/scss/mixins/_alert.scss b/files/assets/style/node_modules/bootstrap/scss/mixins/_alert.scss similarity index 100% rename from drama/assets/style/node_modules/bootstrap/scss/mixins/_alert.scss rename to files/assets/style/node_modules/bootstrap/scss/mixins/_alert.scss diff --git a/drama/assets/style/node_modules/bootstrap/scss/mixins/_background-variant.scss b/files/assets/style/node_modules/bootstrap/scss/mixins/_background-variant.scss similarity index 100% rename from drama/assets/style/node_modules/bootstrap/scss/mixins/_background-variant.scss rename to files/assets/style/node_modules/bootstrap/scss/mixins/_background-variant.scss diff --git a/drama/assets/style/node_modules/bootstrap/scss/mixins/_badge.scss b/files/assets/style/node_modules/bootstrap/scss/mixins/_badge.scss similarity index 100% rename from drama/assets/style/node_modules/bootstrap/scss/mixins/_badge.scss rename to files/assets/style/node_modules/bootstrap/scss/mixins/_badge.scss diff --git a/drama/assets/style/node_modules/bootstrap/scss/mixins/_border-radius.scss b/files/assets/style/node_modules/bootstrap/scss/mixins/_border-radius.scss similarity index 100% rename from drama/assets/style/node_modules/bootstrap/scss/mixins/_border-radius.scss rename to files/assets/style/node_modules/bootstrap/scss/mixins/_border-radius.scss diff --git a/drama/assets/style/node_modules/bootstrap/scss/mixins/_box-shadow.scss b/files/assets/style/node_modules/bootstrap/scss/mixins/_box-shadow.scss similarity index 100% rename from drama/assets/style/node_modules/bootstrap/scss/mixins/_box-shadow.scss rename to files/assets/style/node_modules/bootstrap/scss/mixins/_box-shadow.scss diff --git a/drama/assets/style/node_modules/bootstrap/scss/mixins/_breakpoints.scss b/files/assets/style/node_modules/bootstrap/scss/mixins/_breakpoints.scss similarity index 100% rename from drama/assets/style/node_modules/bootstrap/scss/mixins/_breakpoints.scss rename to files/assets/style/node_modules/bootstrap/scss/mixins/_breakpoints.scss diff --git a/drama/assets/style/node_modules/bootstrap/scss/mixins/_buttons.scss b/files/assets/style/node_modules/bootstrap/scss/mixins/_buttons.scss similarity index 100% rename from drama/assets/style/node_modules/bootstrap/scss/mixins/_buttons.scss rename to files/assets/style/node_modules/bootstrap/scss/mixins/_buttons.scss diff --git a/drama/assets/style/node_modules/bootstrap/scss/mixins/_caret.scss b/files/assets/style/node_modules/bootstrap/scss/mixins/_caret.scss similarity index 100% rename from drama/assets/style/node_modules/bootstrap/scss/mixins/_caret.scss rename to files/assets/style/node_modules/bootstrap/scss/mixins/_caret.scss diff --git a/drama/assets/style/node_modules/bootstrap/scss/mixins/_clearfix.scss b/files/assets/style/node_modules/bootstrap/scss/mixins/_clearfix.scss similarity index 100% rename from drama/assets/style/node_modules/bootstrap/scss/mixins/_clearfix.scss rename to files/assets/style/node_modules/bootstrap/scss/mixins/_clearfix.scss diff --git a/drama/assets/style/node_modules/bootstrap/scss/mixins/_deprecate.scss b/files/assets/style/node_modules/bootstrap/scss/mixins/_deprecate.scss similarity index 100% rename from drama/assets/style/node_modules/bootstrap/scss/mixins/_deprecate.scss rename to files/assets/style/node_modules/bootstrap/scss/mixins/_deprecate.scss diff --git a/drama/assets/style/node_modules/bootstrap/scss/mixins/_float.scss b/files/assets/style/node_modules/bootstrap/scss/mixins/_float.scss similarity index 100% rename from drama/assets/style/node_modules/bootstrap/scss/mixins/_float.scss rename to files/assets/style/node_modules/bootstrap/scss/mixins/_float.scss diff --git a/drama/assets/style/node_modules/bootstrap/scss/mixins/_forms.scss b/files/assets/style/node_modules/bootstrap/scss/mixins/_forms.scss similarity index 100% rename from drama/assets/style/node_modules/bootstrap/scss/mixins/_forms.scss rename to files/assets/style/node_modules/bootstrap/scss/mixins/_forms.scss diff --git a/drama/assets/style/node_modules/bootstrap/scss/mixins/_gradients.scss b/files/assets/style/node_modules/bootstrap/scss/mixins/_gradients.scss similarity index 100% rename from drama/assets/style/node_modules/bootstrap/scss/mixins/_gradients.scss rename to files/assets/style/node_modules/bootstrap/scss/mixins/_gradients.scss diff --git a/drama/assets/style/node_modules/bootstrap/scss/mixins/_grid-framework.scss b/files/assets/style/node_modules/bootstrap/scss/mixins/_grid-framework.scss similarity index 100% rename from drama/assets/style/node_modules/bootstrap/scss/mixins/_grid-framework.scss rename to files/assets/style/node_modules/bootstrap/scss/mixins/_grid-framework.scss diff --git a/drama/assets/style/node_modules/bootstrap/scss/mixins/_grid.scss b/files/assets/style/node_modules/bootstrap/scss/mixins/_grid.scss similarity index 100% rename from drama/assets/style/node_modules/bootstrap/scss/mixins/_grid.scss rename to files/assets/style/node_modules/bootstrap/scss/mixins/_grid.scss diff --git a/drama/assets/style/node_modules/bootstrap/scss/mixins/_hover.scss b/files/assets/style/node_modules/bootstrap/scss/mixins/_hover.scss similarity index 100% rename from drama/assets/style/node_modules/bootstrap/scss/mixins/_hover.scss rename to files/assets/style/node_modules/bootstrap/scss/mixins/_hover.scss diff --git a/drama/assets/style/node_modules/bootstrap/scss/mixins/_image.scss b/files/assets/style/node_modules/bootstrap/scss/mixins/_image.scss similarity index 100% rename from drama/assets/style/node_modules/bootstrap/scss/mixins/_image.scss rename to files/assets/style/node_modules/bootstrap/scss/mixins/_image.scss diff --git a/drama/assets/style/node_modules/bootstrap/scss/mixins/_list-group.scss b/files/assets/style/node_modules/bootstrap/scss/mixins/_list-group.scss similarity index 100% rename from drama/assets/style/node_modules/bootstrap/scss/mixins/_list-group.scss rename to files/assets/style/node_modules/bootstrap/scss/mixins/_list-group.scss diff --git a/drama/assets/style/node_modules/bootstrap/scss/mixins/_lists.scss b/files/assets/style/node_modules/bootstrap/scss/mixins/_lists.scss similarity index 100% rename from drama/assets/style/node_modules/bootstrap/scss/mixins/_lists.scss rename to files/assets/style/node_modules/bootstrap/scss/mixins/_lists.scss diff --git a/drama/assets/style/node_modules/bootstrap/scss/mixins/_nav-divider.scss b/files/assets/style/node_modules/bootstrap/scss/mixins/_nav-divider.scss similarity index 100% rename from drama/assets/style/node_modules/bootstrap/scss/mixins/_nav-divider.scss rename to files/assets/style/node_modules/bootstrap/scss/mixins/_nav-divider.scss diff --git a/drama/assets/style/node_modules/bootstrap/scss/mixins/_pagination.scss b/files/assets/style/node_modules/bootstrap/scss/mixins/_pagination.scss similarity index 100% rename from drama/assets/style/node_modules/bootstrap/scss/mixins/_pagination.scss rename to files/assets/style/node_modules/bootstrap/scss/mixins/_pagination.scss diff --git a/drama/assets/style/node_modules/bootstrap/scss/mixins/_reset-text.scss b/files/assets/style/node_modules/bootstrap/scss/mixins/_reset-text.scss similarity index 100% rename from drama/assets/style/node_modules/bootstrap/scss/mixins/_reset-text.scss rename to files/assets/style/node_modules/bootstrap/scss/mixins/_reset-text.scss diff --git a/drama/assets/style/node_modules/bootstrap/scss/mixins/_resize.scss b/files/assets/style/node_modules/bootstrap/scss/mixins/_resize.scss similarity index 100% rename from drama/assets/style/node_modules/bootstrap/scss/mixins/_resize.scss rename to files/assets/style/node_modules/bootstrap/scss/mixins/_resize.scss diff --git a/drama/assets/style/node_modules/bootstrap/scss/mixins/_screen-reader.scss b/files/assets/style/node_modules/bootstrap/scss/mixins/_screen-reader.scss similarity index 100% rename from drama/assets/style/node_modules/bootstrap/scss/mixins/_screen-reader.scss rename to files/assets/style/node_modules/bootstrap/scss/mixins/_screen-reader.scss diff --git a/drama/assets/style/node_modules/bootstrap/scss/mixins/_size.scss b/files/assets/style/node_modules/bootstrap/scss/mixins/_size.scss similarity index 100% rename from drama/assets/style/node_modules/bootstrap/scss/mixins/_size.scss rename to files/assets/style/node_modules/bootstrap/scss/mixins/_size.scss diff --git a/drama/assets/style/node_modules/bootstrap/scss/mixins/_table-row.scss b/files/assets/style/node_modules/bootstrap/scss/mixins/_table-row.scss similarity index 100% rename from drama/assets/style/node_modules/bootstrap/scss/mixins/_table-row.scss rename to files/assets/style/node_modules/bootstrap/scss/mixins/_table-row.scss diff --git a/drama/assets/style/node_modules/bootstrap/scss/mixins/_text-emphasis.scss b/files/assets/style/node_modules/bootstrap/scss/mixins/_text-emphasis.scss similarity index 100% rename from drama/assets/style/node_modules/bootstrap/scss/mixins/_text-emphasis.scss rename to files/assets/style/node_modules/bootstrap/scss/mixins/_text-emphasis.scss diff --git a/drama/assets/style/node_modules/bootstrap/scss/mixins/_text-hide.scss b/files/assets/style/node_modules/bootstrap/scss/mixins/_text-hide.scss similarity index 100% rename from drama/assets/style/node_modules/bootstrap/scss/mixins/_text-hide.scss rename to files/assets/style/node_modules/bootstrap/scss/mixins/_text-hide.scss diff --git a/drama/assets/style/node_modules/bootstrap/scss/mixins/_text-truncate.scss b/files/assets/style/node_modules/bootstrap/scss/mixins/_text-truncate.scss similarity index 100% rename from drama/assets/style/node_modules/bootstrap/scss/mixins/_text-truncate.scss rename to files/assets/style/node_modules/bootstrap/scss/mixins/_text-truncate.scss diff --git a/drama/assets/style/node_modules/bootstrap/scss/mixins/_transition.scss b/files/assets/style/node_modules/bootstrap/scss/mixins/_transition.scss similarity index 100% rename from drama/assets/style/node_modules/bootstrap/scss/mixins/_transition.scss rename to files/assets/style/node_modules/bootstrap/scss/mixins/_transition.scss diff --git a/drama/assets/style/node_modules/bootstrap/scss/mixins/_visibility.scss b/files/assets/style/node_modules/bootstrap/scss/mixins/_visibility.scss similarity index 100% rename from drama/assets/style/node_modules/bootstrap/scss/mixins/_visibility.scss rename to files/assets/style/node_modules/bootstrap/scss/mixins/_visibility.scss diff --git a/drama/assets/style/node_modules/bootstrap/scss/utilities/_align.scss b/files/assets/style/node_modules/bootstrap/scss/utilities/_align.scss similarity index 100% rename from drama/assets/style/node_modules/bootstrap/scss/utilities/_align.scss rename to files/assets/style/node_modules/bootstrap/scss/utilities/_align.scss diff --git a/drama/assets/style/node_modules/bootstrap/scss/utilities/_background.scss b/files/assets/style/node_modules/bootstrap/scss/utilities/_background.scss similarity index 100% rename from drama/assets/style/node_modules/bootstrap/scss/utilities/_background.scss rename to files/assets/style/node_modules/bootstrap/scss/utilities/_background.scss diff --git a/drama/assets/style/node_modules/bootstrap/scss/utilities/_borders.scss b/files/assets/style/node_modules/bootstrap/scss/utilities/_borders.scss similarity index 100% rename from drama/assets/style/node_modules/bootstrap/scss/utilities/_borders.scss rename to files/assets/style/node_modules/bootstrap/scss/utilities/_borders.scss diff --git a/drama/assets/style/node_modules/bootstrap/scss/utilities/_clearfix.scss b/files/assets/style/node_modules/bootstrap/scss/utilities/_clearfix.scss similarity index 100% rename from drama/assets/style/node_modules/bootstrap/scss/utilities/_clearfix.scss rename to files/assets/style/node_modules/bootstrap/scss/utilities/_clearfix.scss diff --git a/drama/assets/style/node_modules/bootstrap/scss/utilities/_display.scss b/files/assets/style/node_modules/bootstrap/scss/utilities/_display.scss similarity index 100% rename from drama/assets/style/node_modules/bootstrap/scss/utilities/_display.scss rename to files/assets/style/node_modules/bootstrap/scss/utilities/_display.scss diff --git a/drama/assets/style/node_modules/bootstrap/scss/utilities/_embed.scss b/files/assets/style/node_modules/bootstrap/scss/utilities/_embed.scss similarity index 100% rename from drama/assets/style/node_modules/bootstrap/scss/utilities/_embed.scss rename to files/assets/style/node_modules/bootstrap/scss/utilities/_embed.scss diff --git a/drama/assets/style/node_modules/bootstrap/scss/utilities/_flex.scss b/files/assets/style/node_modules/bootstrap/scss/utilities/_flex.scss similarity index 100% rename from drama/assets/style/node_modules/bootstrap/scss/utilities/_flex.scss rename to files/assets/style/node_modules/bootstrap/scss/utilities/_flex.scss diff --git a/drama/assets/style/node_modules/bootstrap/scss/utilities/_float.scss b/files/assets/style/node_modules/bootstrap/scss/utilities/_float.scss similarity index 100% rename from drama/assets/style/node_modules/bootstrap/scss/utilities/_float.scss rename to files/assets/style/node_modules/bootstrap/scss/utilities/_float.scss diff --git a/drama/assets/style/node_modules/bootstrap/scss/utilities/_overflow.scss b/files/assets/style/node_modules/bootstrap/scss/utilities/_overflow.scss similarity index 100% rename from drama/assets/style/node_modules/bootstrap/scss/utilities/_overflow.scss rename to files/assets/style/node_modules/bootstrap/scss/utilities/_overflow.scss diff --git a/drama/assets/style/node_modules/bootstrap/scss/utilities/_position.scss b/files/assets/style/node_modules/bootstrap/scss/utilities/_position.scss similarity index 100% rename from drama/assets/style/node_modules/bootstrap/scss/utilities/_position.scss rename to files/assets/style/node_modules/bootstrap/scss/utilities/_position.scss diff --git a/drama/assets/style/node_modules/bootstrap/scss/utilities/_screenreaders.scss b/files/assets/style/node_modules/bootstrap/scss/utilities/_screenreaders.scss similarity index 100% rename from drama/assets/style/node_modules/bootstrap/scss/utilities/_screenreaders.scss rename to files/assets/style/node_modules/bootstrap/scss/utilities/_screenreaders.scss diff --git a/drama/assets/style/node_modules/bootstrap/scss/utilities/_shadows.scss b/files/assets/style/node_modules/bootstrap/scss/utilities/_shadows.scss similarity index 100% rename from drama/assets/style/node_modules/bootstrap/scss/utilities/_shadows.scss rename to files/assets/style/node_modules/bootstrap/scss/utilities/_shadows.scss diff --git a/drama/assets/style/node_modules/bootstrap/scss/utilities/_sizing.scss b/files/assets/style/node_modules/bootstrap/scss/utilities/_sizing.scss similarity index 100% rename from drama/assets/style/node_modules/bootstrap/scss/utilities/_sizing.scss rename to files/assets/style/node_modules/bootstrap/scss/utilities/_sizing.scss diff --git a/drama/assets/style/node_modules/bootstrap/scss/utilities/_spacing.scss b/files/assets/style/node_modules/bootstrap/scss/utilities/_spacing.scss similarity index 100% rename from drama/assets/style/node_modules/bootstrap/scss/utilities/_spacing.scss rename to files/assets/style/node_modules/bootstrap/scss/utilities/_spacing.scss diff --git a/drama/assets/style/node_modules/bootstrap/scss/utilities/_stretched-link.scss b/files/assets/style/node_modules/bootstrap/scss/utilities/_stretched-link.scss similarity index 100% rename from drama/assets/style/node_modules/bootstrap/scss/utilities/_stretched-link.scss rename to files/assets/style/node_modules/bootstrap/scss/utilities/_stretched-link.scss diff --git a/drama/assets/style/node_modules/bootstrap/scss/utilities/_text.scss b/files/assets/style/node_modules/bootstrap/scss/utilities/_text.scss similarity index 100% rename from drama/assets/style/node_modules/bootstrap/scss/utilities/_text.scss rename to files/assets/style/node_modules/bootstrap/scss/utilities/_text.scss diff --git a/drama/assets/style/node_modules/bootstrap/scss/utilities/_visibility.scss b/files/assets/style/node_modules/bootstrap/scss/utilities/_visibility.scss similarity index 100% rename from drama/assets/style/node_modules/bootstrap/scss/utilities/_visibility.scss rename to files/assets/style/node_modules/bootstrap/scss/utilities/_visibility.scss diff --git a/drama/assets/style/node_modules/bootstrap/scss/vendor/_rfs.scss b/files/assets/style/node_modules/bootstrap/scss/vendor/_rfs.scss similarity index 100% rename from drama/assets/style/node_modules/bootstrap/scss/vendor/_rfs.scss rename to files/assets/style/node_modules/bootstrap/scss/vendor/_rfs.scss diff --git a/drama/assets/style/tron.scss b/files/assets/style/tron.scss similarity index 100% rename from drama/assets/style/tron.scss rename to files/assets/style/tron.scss diff --git a/drama/assets/style/tron_2a96f3.css b/files/assets/style/tron_2a96f3.css similarity index 99% rename from drama/assets/style/tron_2a96f3.css rename to files/assets/style/tron_2a96f3.css index d54cab057..fbb0fdf5b 100644 --- a/drama/assets/style/tron_2a96f3.css +++ b/files/assets/style/tron_2a96f3.css @@ -27544,11 +27544,11 @@ div.banned { } div.deleted { - background-color: #969600; + background-color: #969600 !important; } div.deleted.banned { - background-color: #964000; + background-color: #964000 !important; } .text-admin { diff --git a/drama/assets/style/tron_30409f.css b/files/assets/style/tron_30409f.css similarity index 99% rename from drama/assets/style/tron_30409f.css rename to files/assets/style/tron_30409f.css index 14ecf99ca..9a541fe72 100644 --- a/drama/assets/style/tron_30409f.css +++ b/files/assets/style/tron_30409f.css @@ -27544,11 +27544,11 @@ div.banned { } div.deleted { - background-color: #969600; + background-color: #969600 !important; } div.deleted.banned { - background-color: #964000; + background-color: #964000 !important; } .text-admin { diff --git a/drama/assets/style/tron_38a169.css b/files/assets/style/tron_38a169.css similarity index 99% rename from drama/assets/style/tron_38a169.css rename to files/assets/style/tron_38a169.css index d0ac3146f..fd55d9092 100644 --- a/drama/assets/style/tron_38a169.css +++ b/files/assets/style/tron_38a169.css @@ -27544,11 +27544,11 @@ div.banned { } div.deleted { - background-color: #969600; + background-color: #969600 !important; } div.deleted.banned { - background-color: #964000; + background-color: #964000 !important; } .text-admin { diff --git a/drama/assets/style/tron_3e98a7.css b/files/assets/style/tron_3e98a7.css similarity index 99% rename from drama/assets/style/tron_3e98a7.css rename to files/assets/style/tron_3e98a7.css index 1c094fcaa..043f76bd7 100644 --- a/drama/assets/style/tron_3e98a7.css +++ b/files/assets/style/tron_3e98a7.css @@ -27544,11 +27544,11 @@ div.banned { } div.deleted { - background-color: #969600; + background-color: #969600 !important; } div.deleted.banned { - background-color: #964000; + background-color: #964000 !important; } .text-admin { diff --git a/drama/assets/style/tron_62ca56.css b/files/assets/style/tron_62ca56.css similarity index 99% rename from drama/assets/style/tron_62ca56.css rename to files/assets/style/tron_62ca56.css index 83a699a76..7e9b0b6e2 100644 --- a/drama/assets/style/tron_62ca56.css +++ b/files/assets/style/tron_62ca56.css @@ -27544,11 +27544,11 @@ div.banned { } div.deleted { - background-color: #969600; + background-color: #969600 !important; } div.deleted.banned { - background-color: #964000; + background-color: #964000 !important; } .text-admin { diff --git a/drama/assets/style/tron_7b9ae4.css b/files/assets/style/tron_7b9ae4.css similarity index 99% rename from drama/assets/style/tron_7b9ae4.css rename to files/assets/style/tron_7b9ae4.css index ce5272c1e..c78906d3c 100644 --- a/drama/assets/style/tron_7b9ae4.css +++ b/files/assets/style/tron_7b9ae4.css @@ -27544,11 +27544,11 @@ div.banned { } div.deleted { - background-color: #969600; + background-color: #969600 !important; } div.deleted.banned { - background-color: #964000; + background-color: #964000 !important; } .text-admin { diff --git a/drama/assets/style/tron_7f8fa6.css b/files/assets/style/tron_7f8fa6.css similarity index 99% rename from drama/assets/style/tron_7f8fa6.css rename to files/assets/style/tron_7f8fa6.css index 399da6589..36c4a0542 100644 --- a/drama/assets/style/tron_7f8fa6.css +++ b/files/assets/style/tron_7f8fa6.css @@ -27544,11 +27544,11 @@ div.banned { } div.deleted { - background-color: #969600; + background-color: #969600 !important; } div.deleted.banned { - background-color: #964000; + background-color: #964000 !important; } .text-admin { diff --git a/drama/assets/style/tron_805ad5.css b/files/assets/style/tron_805ad5.css similarity index 99% rename from drama/assets/style/tron_805ad5.css rename to files/assets/style/tron_805ad5.css index d2fce74cd..41594433d 100644 --- a/drama/assets/style/tron_805ad5.css +++ b/files/assets/style/tron_805ad5.css @@ -27544,11 +27544,11 @@ div.banned { } div.deleted { - background-color: #969600; + background-color: #969600 !important; } div.deleted.banned { - background-color: #964000; + background-color: #964000 !important; } .text-admin { diff --git a/drama/assets/style/tron_80ffff.css b/files/assets/style/tron_80ffff.css similarity index 99% rename from drama/assets/style/tron_80ffff.css rename to files/assets/style/tron_80ffff.css index 17d228940..8f5cd1a58 100644 --- a/drama/assets/style/tron_80ffff.css +++ b/files/assets/style/tron_80ffff.css @@ -27544,11 +27544,11 @@ div.banned { } div.deleted { - background-color: #969600; + background-color: #969600 !important; } div.deleted.banned { - background-color: #964000; + background-color: #964000 !important; } .text-admin { diff --git a/drama/assets/style/tron_e4432d.css b/files/assets/style/tron_e4432d.css similarity index 99% rename from drama/assets/style/tron_e4432d.css rename to files/assets/style/tron_e4432d.css index 8078ca3cf..47ea9824b 100644 --- a/drama/assets/style/tron_e4432d.css +++ b/files/assets/style/tron_e4432d.css @@ -27544,11 +27544,11 @@ div.banned { } div.deleted { - background-color: #969600; + background-color: #969600 !important; } div.deleted.banned { - background-color: #964000; + background-color: #964000 !important; } .text-admin { diff --git a/drama/assets/style/tron_eb4963.css b/files/assets/style/tron_eb4963.css similarity index 99% rename from drama/assets/style/tron_eb4963.css rename to files/assets/style/tron_eb4963.css index 626b9ebfc..0e4275299 100644 --- a/drama/assets/style/tron_eb4963.css +++ b/files/assets/style/tron_eb4963.css @@ -27544,11 +27544,11 @@ div.banned { } div.deleted { - background-color: #969600; + background-color: #969600 !important; } div.deleted.banned { - background-color: #964000; + background-color: #964000 !important; } .text-admin { diff --git a/drama/assets/style/tron_ec72de.css b/files/assets/style/tron_ec72de.css similarity index 99% rename from drama/assets/style/tron_ec72de.css rename to files/assets/style/tron_ec72de.css index e826abe37..fd409e55f 100644 --- a/drama/assets/style/tron_ec72de.css +++ b/files/assets/style/tron_ec72de.css @@ -27544,11 +27544,11 @@ div.banned { } div.deleted { - background-color: #969600; + background-color: #969600 !important; } div.deleted.banned { - background-color: #964000; + background-color: #964000 !important; } .text-admin { diff --git a/drama/assets/style/tron_f39731.css b/files/assets/style/tron_f39731.css similarity index 99% rename from drama/assets/style/tron_f39731.css rename to files/assets/style/tron_f39731.css index 2512c282a..bd301a531 100644 --- a/drama/assets/style/tron_f39731.css +++ b/files/assets/style/tron_f39731.css @@ -27544,11 +27544,11 @@ div.banned { } div.deleted { - background-color: #969600; + background-color: #969600 !important; } div.deleted.banned { - background-color: #964000; + background-color: #964000 !important; } .text-admin { diff --git a/drama/assets/style/tron_f8db58.css b/files/assets/style/tron_f8db58.css similarity index 99% rename from drama/assets/style/tron_f8db58.css rename to files/assets/style/tron_f8db58.css index aef0b1f26..64b235461 100644 --- a/drama/assets/style/tron_f8db58.css +++ b/files/assets/style/tron_f8db58.css @@ -27544,11 +27544,11 @@ div.banned { } div.deleted { - background-color: #969600; + background-color: #969600 !important; } div.deleted.banned { - background-color: #964000; + background-color: #964000 !important; } .text-admin { diff --git a/drama/assets/style/tron_ff0000.css b/files/assets/style/tron_ff0000.css similarity index 99% rename from drama/assets/style/tron_ff0000.css rename to files/assets/style/tron_ff0000.css index 8d3eb9674..dbf09769c 100644 --- a/drama/assets/style/tron_ff0000.css +++ b/files/assets/style/tron_ff0000.css @@ -27544,11 +27544,11 @@ div.banned { } div.deleted { - background-color: #969600; + background-color: #969600 !important; } div.deleted.banned { - background-color: #964000; + background-color: #964000 !important; } .text-admin { diff --git a/drama/assets/style/tron_ff66ac.css b/files/assets/style/tron_ff66ac.css similarity index 99% rename from drama/assets/style/tron_ff66ac.css rename to files/assets/style/tron_ff66ac.css index 14cdafe2f..a5fc0ccc6 100644 --- a/drama/assets/style/tron_ff66ac.css +++ b/files/assets/style/tron_ff66ac.css @@ -27544,11 +27544,11 @@ div.banned { } div.deleted { - background-color: #969600; + background-color: #969600 !important; } div.deleted.banned { - background-color: #964000; + background-color: #964000 !important; } .text-admin { diff --git a/drama/assets/webfonts/fa-brands-400.ttf b/files/assets/webfonts/fa-brands-400.ttf similarity index 100% rename from drama/assets/webfonts/fa-brands-400.ttf rename to files/assets/webfonts/fa-brands-400.ttf diff --git a/drama/assets/webfonts/fa-brands-400.woff b/files/assets/webfonts/fa-brands-400.woff similarity index 100% rename from drama/assets/webfonts/fa-brands-400.woff rename to files/assets/webfonts/fa-brands-400.woff diff --git a/drama/assets/webfonts/fa-brands-400.woff2 b/files/assets/webfonts/fa-brands-400.woff2 similarity index 100% rename from drama/assets/webfonts/fa-brands-400.woff2 rename to files/assets/webfonts/fa-brands-400.woff2 diff --git a/drama/assets/webfonts/fa-duotone-900.ttf b/files/assets/webfonts/fa-duotone-900.ttf similarity index 100% rename from drama/assets/webfonts/fa-duotone-900.ttf rename to files/assets/webfonts/fa-duotone-900.ttf diff --git a/drama/assets/webfonts/fa-duotone-900.woff b/files/assets/webfonts/fa-duotone-900.woff similarity index 100% rename from drama/assets/webfonts/fa-duotone-900.woff rename to files/assets/webfonts/fa-duotone-900.woff diff --git a/drama/assets/webfonts/fa-duotone-900.woff2 b/files/assets/webfonts/fa-duotone-900.woff2 similarity index 100% rename from drama/assets/webfonts/fa-duotone-900.woff2 rename to files/assets/webfonts/fa-duotone-900.woff2 diff --git a/drama/assets/webfonts/fa-light-300.ttf b/files/assets/webfonts/fa-light-300.ttf similarity index 100% rename from drama/assets/webfonts/fa-light-300.ttf rename to files/assets/webfonts/fa-light-300.ttf diff --git a/drama/assets/webfonts/fa-light-300.woff b/files/assets/webfonts/fa-light-300.woff similarity index 100% rename from drama/assets/webfonts/fa-light-300.woff rename to files/assets/webfonts/fa-light-300.woff diff --git a/drama/assets/webfonts/fa-light-300.woff2 b/files/assets/webfonts/fa-light-300.woff2 similarity index 100% rename from drama/assets/webfonts/fa-light-300.woff2 rename to files/assets/webfonts/fa-light-300.woff2 diff --git a/drama/assets/webfonts/fa-regular-400.ttf b/files/assets/webfonts/fa-regular-400.ttf similarity index 100% rename from drama/assets/webfonts/fa-regular-400.ttf rename to files/assets/webfonts/fa-regular-400.ttf diff --git a/drama/assets/webfonts/fa-regular-400.woff b/files/assets/webfonts/fa-regular-400.woff similarity index 100% rename from drama/assets/webfonts/fa-regular-400.woff rename to files/assets/webfonts/fa-regular-400.woff diff --git a/drama/assets/webfonts/fa-regular-400.woff2 b/files/assets/webfonts/fa-regular-400.woff2 similarity index 100% rename from drama/assets/webfonts/fa-regular-400.woff2 rename to files/assets/webfonts/fa-regular-400.woff2 diff --git a/drama/assets/webfonts/fa-solid-900.ttf b/files/assets/webfonts/fa-solid-900.ttf similarity index 100% rename from drama/assets/webfonts/fa-solid-900.ttf rename to files/assets/webfonts/fa-solid-900.ttf diff --git a/drama/assets/webfonts/fa-solid-900.woff b/files/assets/webfonts/fa-solid-900.woff similarity index 100% rename from drama/assets/webfonts/fa-solid-900.woff rename to files/assets/webfonts/fa-solid-900.woff diff --git a/drama/assets/webfonts/fa-solid-900.woff2 b/files/assets/webfonts/fa-solid-900.woff2 similarity index 100% rename from drama/assets/webfonts/fa-solid-900.woff2 rename to files/assets/webfonts/fa-solid-900.woff2 diff --git a/drama/classes/__init__.py b/files/classes/__init__.py similarity index 100% rename from drama/classes/__init__.py rename to files/classes/__init__.py diff --git a/drama/classes/agents.py b/files/classes/agents.py similarity index 91% rename from drama/classes/agents.py rename to files/classes/agents.py index fb0d0ad2e..dfce0c62d 100644 --- a/drama/classes/agents.py +++ b/files/classes/agents.py @@ -1,5 +1,5 @@ from sqlalchemy import * -from drama.__main__ import Base +from files.__main__ import Base class Agent(Base): diff --git a/drama/classes/alts.py b/files/classes/alts.py similarity index 90% rename from drama/classes/alts.py rename to files/classes/alts.py index 5bc5c16d8..04a6f00ef 100644 --- a/drama/classes/alts.py +++ b/files/classes/alts.py @@ -1,5 +1,5 @@ from sqlalchemy import * -from drama.__main__ import Base +from files.__main__ import Base class Alt(Base): diff --git a/drama/classes/award.py b/files/classes/award.py similarity index 97% rename from drama/classes/award.py rename to files/classes/award.py index 9eb2e7c1a..cc1f1ea0d 100644 --- a/drama/classes/award.py +++ b/files/classes/award.py @@ -1,6 +1,6 @@ from sqlalchemy import * from sqlalchemy.orm import relationship -from drama.__main__ import Base +from files.__main__ import Base AWARDS = { "ban": { diff --git a/drama/classes/badges.py b/files/classes/badges.py similarity index 97% rename from drama/classes/badges.py rename to files/classes/badges.py index 2af5edc35..bd5787dfc 100644 --- a/drama/classes/badges.py +++ b/files/classes/badges.py @@ -1,7 +1,7 @@ from sqlalchemy import * from sqlalchemy.orm import relationship -from drama.__main__ import Base, app +from files.__main__ import Base, app class BadgeDef(Base): diff --git a/drama/classes/clients.py b/files/classes/clients.py similarity index 97% rename from drama/classes/clients.py rename to files/classes/clients.py index 588db1f47..b1449e11b 100644 --- a/drama/classes/clients.py +++ b/files/classes/clients.py @@ -5,7 +5,7 @@ from sqlalchemy.orm import relationship, lazyload from .mix_ins import Stndrd from .submission import Submission from .comment import Comment -from drama.__main__ import Base +from files.__main__ import Base class OauthApp(Base, Stndrd): diff --git a/drama/classes/comment.py b/files/classes/comment.py similarity index 99% rename from drama/classes/comment.py rename to files/classes/comment.py index 38e0db165..da0528dec 100644 --- a/drama/classes/comment.py +++ b/files/classes/comment.py @@ -1,8 +1,8 @@ from flask import * from sqlalchemy import * from sqlalchemy.orm import relationship, deferred -from drama.helpers.lazy import lazy -from drama.__main__ import Base +from files.helpers.lazy import lazy +from files.__main__ import Base from .mix_ins import * from .flags import CommentFlag diff --git a/drama/classes/domains.py b/files/classes/domains.py similarity index 91% rename from drama/classes/domains.py rename to files/classes/domains.py index 17e620f6a..5fbb26b9e 100644 --- a/drama/classes/domains.py +++ b/files/classes/domains.py @@ -1,5 +1,5 @@ from sqlalchemy import * -from drama.__main__ import Base +from files.__main__ import Base class BannedDomain(Base): diff --git a/drama/classes/flags.py b/files/classes/flags.py similarity index 96% rename from drama/classes/flags.py rename to files/classes/flags.py index 3d8f3519a..7d36ba7f0 100644 --- a/drama/classes/flags.py +++ b/files/classes/flags.py @@ -1,6 +1,6 @@ from sqlalchemy import * from sqlalchemy.orm import relationship -from drama.__main__ import Base +from files.__main__ import Base from .mix_ins import * class Flag(Base, Stndrd): diff --git a/drama/classes/images.py b/files/classes/images.py similarity index 95% rename from drama/classes/images.py rename to files/classes/images.py index 701dd8dcd..5840c350a 100644 --- a/drama/classes/images.py +++ b/files/classes/images.py @@ -1,6 +1,6 @@ from sqlalchemy import * from flask import g -from drama.__main__ import Base +from files.__main__ import Base class Image(Base): diff --git a/files/classes/lolwtf.py b/files/classes/lolwtf.py new file mode 100644 index 000000000..5d26c7cf8 --- /dev/null +++ b/files/classes/lolwtf.py @@ -0,0 +1,2 @@ + +from files.__main__ import Base, app \ No newline at end of file diff --git a/drama/classes/mix_ins.py b/files/classes/mix_ins.py similarity index 98% rename from drama/classes/mix_ins.py rename to files/classes/mix_ins.py index 9f5728008..731d36ab4 100644 --- a/drama/classes/mix_ins.py +++ b/files/classes/mix_ins.py @@ -1,4 +1,4 @@ -from drama.helpers.lazy import lazy +from files.helpers.lazy import lazy import math import random import time diff --git a/drama/classes/mod_logs.py b/files/classes/mod_logs.py similarity index 99% rename from drama/classes/mod_logs.py rename to files/classes/mod_logs.py index b18fc4d81..941e08d3c 100644 --- a/drama/classes/mod_logs.py +++ b/files/classes/mod_logs.py @@ -1,6 +1,6 @@ from sqlalchemy import * from sqlalchemy.orm import relationship -from drama.__main__ import Base +from files.__main__ import Base from .mix_ins import * import time diff --git a/drama/classes/submission.py b/files/classes/submission.py similarity index 99% rename from drama/classes/submission.py rename to files/classes/submission.py index 7bab4d740..511214c8c 100644 --- a/drama/classes/submission.py +++ b/files/classes/submission.py @@ -3,13 +3,13 @@ from sqlalchemy import * from sqlalchemy.orm import relationship, deferred import re, random from urllib.parse import urlparse -from drama.helpers.lazy import lazy -from drama.__main__ import Base +from files.helpers.lazy import lazy +from files.__main__ import Base from .mix_ins import * from .flags import * from os import environ -site = environ.get("domain").strip() +site = environ.get("DOMAIN").strip() class SubmissionAux(Base): diff --git a/drama/classes/subscriptions.py b/files/classes/subscriptions.py similarity index 96% rename from drama/classes/subscriptions.py rename to files/classes/subscriptions.py index 9cd327e39..8c41470fa 100644 --- a/drama/classes/subscriptions.py +++ b/files/classes/subscriptions.py @@ -1,6 +1,6 @@ from sqlalchemy import * from sqlalchemy.orm import relationship -from drama.__main__ import Base +from files.__main__ import Base import time diff --git a/drama/classes/user.py b/files/classes/user.py similarity index 98% rename from drama/classes/user.py rename to files/classes/user.py index 33d102c55..7f0516b70 100644 --- a/drama/classes/user.py +++ b/files/classes/user.py @@ -2,8 +2,8 @@ from sqlalchemy.orm import deferred, contains_eager, aliased from secrets import token_hex import pyotp -from drama.helpers.discord import delete_role -from drama.helpers.images import * +from files.helpers.discord import delete_role +from files.helpers.images import * from .alts import Alt from .submission import SaveRelationship from .comment import Notification @@ -11,10 +11,10 @@ from .subscriptions import * from .userblock import * from .badges import * from .clients import * -from drama.__main__ import Base, cache -from drama.helpers.security import * +from files.__main__ import Base, cache +from files.helpers.security import * -site = environ.get("domain").strip() +site = environ.get("DOMAIN").strip() class User(Base, Stndrd, Age_times): __tablename__ = "users" @@ -79,7 +79,7 @@ class User(Base, Stndrd, Age_times): ban_reason = Column(String, default="") login_nonce = Column(Integer, default=0) reserved = Column(String(256)) - dramacoins = Column(Integer, default=0) + coins = Column(Integer, default=0) mfa_secret = deferred(Column(String(16))) is_private = Column(Boolean, default=False) stored_subscriber_count = Column(Integer, default=0) @@ -491,7 +491,7 @@ class User(Base, Stndrd, Age_times): data = self.json_core data["badges"] = [x.json_core for x in self.badges] - data['dramacoins'] = int(self.dramacoins) + data['coins'] = int(self.coins) data['post_count'] = self.post_count data['comment_count'] = self.comment_count diff --git a/drama/classes/userblock.py b/files/classes/userblock.py similarity index 94% rename from drama/classes/userblock.py rename to files/classes/userblock.py index 547fab79b..ee491901a 100644 --- a/drama/classes/userblock.py +++ b/files/classes/userblock.py @@ -1,7 +1,7 @@ from sqlalchemy import * from sqlalchemy.orm import relationship from .mix_ins import * -from drama.__main__ import Base +from files.__main__ import Base class UserBlock(Base, Stndrd, Age_times): diff --git a/drama/classes/votes.py b/files/classes/votes.py similarity index 98% rename from drama/classes/votes.py rename to files/classes/votes.py index 4873d50bb..8b19f2685 100644 --- a/drama/classes/votes.py +++ b/files/classes/votes.py @@ -1,7 +1,7 @@ from flask import * from sqlalchemy import * from sqlalchemy.orm import relationship -from drama.__main__ import Base +from files.__main__ import Base class Vote(Base): diff --git a/drama/helpers/alerts.py b/files/helpers/alerts.py similarity index 99% rename from drama/helpers/alerts.py rename to files/helpers/alerts.py index ec0d44296..44eb22d9f 100644 --- a/drama/helpers/alerts.py +++ b/files/helpers/alerts.py @@ -1,6 +1,6 @@ import mistletoe -from drama.classes import * +from files.classes import * from flask import g from .markdown import * from .sanitize import * diff --git a/drama/helpers/base36.py b/files/helpers/base36.py similarity index 100% rename from drama/helpers/base36.py rename to files/helpers/base36.py diff --git a/drama/helpers/discord.py b/files/helpers/discord.py similarity index 100% rename from drama/helpers/discord.py rename to files/helpers/discord.py diff --git a/drama/helpers/filters.py b/files/helpers/filters.py similarity index 95% rename from drama/helpers/filters.py rename to files/helpers/filters.py index e6bc67d47..c4c33cebe 100644 --- a/drama/helpers/filters.py +++ b/files/helpers/filters.py @@ -1,7 +1,7 @@ from bs4 import BeautifulSoup from flask import * from urllib.parse import urlparse -from drama.classes import BannedDomain +from files.classes import BannedDomain def filter_comment_html(html_text): diff --git a/drama/helpers/get.py b/files/helpers/get.py similarity index 99% rename from drama/helpers/get.py rename to files/helpers/get.py index 43110e8ee..efa3b333b 100644 --- a/drama/helpers/get.py +++ b/files/helpers/get.py @@ -1,4 +1,4 @@ -from drama.classes import * +from files.classes import * from flask import g from sqlalchemy.orm import joinedload, aliased diff --git a/drama/helpers/images.py b/files/helpers/images.py similarity index 86% rename from drama/helpers/images.py rename to files/helpers/images.py index d16158b6e..759947636 100644 --- a/drama/helpers/images.py +++ b/files/helpers/images.py @@ -2,11 +2,11 @@ import requests from os import environ from PIL import Image as IImage, ImageSequence import base64 -from drama.classes.images import * +from files.classes.images import * CF_KEY = environ.get("CLOUDFLARE_KEY").strip() CF_ZONE = environ.get("CLOUDFLARE_ZONE").strip() -imgurkey = environ.get("imgurkey").strip() +IMGUR_KEY = environ.get("IMGUR_KEY").strip() def upload_file(file=None, resize=False, png=False): @@ -35,12 +35,10 @@ def upload_file(file=None, resize=False, png=False): try: with open(filedir, 'rb') as f: data={'image': base64.b64encode(f.read())} - req = requests.post('https://api.imgur.com/3/upload.json', headers = {"Authorization": f"Client-ID {imgurkey}"}, data=data) + req = requests.post('https://api.imgur.com/3/upload.json', headers = {"Authorization": f"Client-ID {IMGUR_KEY}"}, data=data) resp = req.json()['data'] url = resp['link'].replace(".png", "_d.png").replace(".jpg", "_d.jpg").replace(".jpeg", "_d.jpeg") + "?maxwidth=9999" - except: - print(req.text) - return + except: return new_image = Image(text=url, deletehash=resp["deletehash"]) g.db.add(new_image) diff --git a/drama/helpers/jinja2.py b/files/helpers/jinja2.py similarity index 90% rename from drama/helpers/jinja2.py rename to files/helpers/jinja2.py index d19bdbdfc..20897b42b 100644 --- a/drama/helpers/jinja2.py +++ b/files/helpers/jinja2.py @@ -1,6 +1,6 @@ from os import environ, path from .get import * -from drama.__main__ import app, cache +from files.__main__ import app, cache @app.template_filter("total_users") @@ -14,7 +14,7 @@ def total_users(x): @cache.memoize(timeout=60 * 60 * 24) def source_code(file_name): - return open(path.expanduser('~') + '/drama/' + + return open(path.expanduser('~') + '/files/' + file_name, mode="r+").read() diff --git a/drama/helpers/lazy.py b/files/helpers/lazy.py similarity index 100% rename from drama/helpers/lazy.py rename to files/helpers/lazy.py diff --git a/drama/helpers/markdown.py b/files/helpers/markdown.py similarity index 100% rename from drama/helpers/markdown.py rename to files/helpers/markdown.py diff --git a/drama/helpers/redis.py b/files/helpers/redis.py similarity index 100% rename from drama/helpers/redis.py rename to files/helpers/redis.py diff --git a/drama/helpers/sanitize.py b/files/helpers/sanitize.py similarity index 95% rename from drama/helpers/sanitize.py rename to files/helpers/sanitize.py index 70e5ce973..eb53d4b37 100644 --- a/drama/helpers/sanitize.py +++ b/files/helpers/sanitize.py @@ -6,7 +6,7 @@ from functools import partial from .get import * from os import path -site = environ.get("domain").strip() +site = environ.get("DOMAIN").strip() _allowed_tags = tags = ['b', 'blockquote', @@ -72,7 +72,7 @@ def a_modify(attrs, new=False): attrs[(None, "rel")] = "nofollow noopener" # Force https for all external links in comments - # (Drama already forces its own https) + # (Website already forces its own https) new_url = ParseResult(scheme="https", netloc=parsed_url.netloc, path=parsed_url.path, @@ -178,12 +178,12 @@ def sanitize(text, linkgen=False, flair=False): start = '<s>' end = '</s>' - if start in sanitized and end in sanitized and start in sanitized.split(end)[0] and end in sanitized.split(start)[1]: sanitized = sanitized.replace(start, '').replace(end, '') + if start in sanitized and end in sanitized and start in sanitized.split(end)[0] and end in sanitized.split(start)[1]: sanitized = sanitized.replace(start, '').replace(end, '') if flair: emojisize = 20 else: emojisize = 30 for i in re.finditer(':(.{1,30}?):', sanitized): - if path.isfile(f'./drama/assets/images/emojis/{i.group(1)}.gif'): + if path.isfile(f'./files/assets/images/emojis/{i.group(1)}.gif'): sanitized = sanitized.replace(f':{i.group(1)}:', f'') sanitized = sanitized.replace("https://www.", "https://").replace("https://youtu.be/", "https://youtube.com/embed/").replace("https://music.youtube.com/watch?v=", "https://youtube.com/embed/").replace("/watch?v=", "/embed/").replace("https://open.spotify.com/", "https://open.spotify.com/embed/").replace("https://streamable.com/", "https://streamable.com/e/").replace("https://youtube.com/shorts/", "https://youtube.com/embed/") diff --git a/drama/helpers/security.py b/files/helpers/security.py similarity index 100% rename from drama/helpers/security.py rename to files/helpers/security.py diff --git a/drama/helpers/session.py b/files/helpers/session.py similarity index 100% rename from drama/helpers/session.py rename to files/helpers/session.py diff --git a/drama/helpers/sqla_values.py b/files/helpers/sqla_values.py similarity index 100% rename from drama/helpers/sqla_values.py rename to files/helpers/sqla_values.py diff --git a/drama/helpers/thumbs.py b/files/helpers/thumbs.py similarity index 100% rename from drama/helpers/thumbs.py rename to files/helpers/thumbs.py diff --git a/drama/helpers/wrappers.py b/files/helpers/wrappers.py similarity index 96% rename from drama/helpers/wrappers.py rename to files/helpers/wrappers.py index 4ba2bd33b..0fb05f179 100644 --- a/drama/helpers/wrappers.py +++ b/files/helpers/wrappers.py @@ -3,7 +3,7 @@ from sqlalchemy.sql import visitors from werkzeug.wrappers.response import Response as RespObj from .get import * from .alerts import send_notification -from drama.__main__ import app +from files.__main__ import app def get_logged_in_user(): @@ -48,7 +48,7 @@ def check_ban_evade(v): if random.randint(0,30) < v.ban_evade: v.ban(reason="ban evasion") - send_notification(1046, v, "Your Drama account has been permanently suspended for the following reason:\n\n> ban evasion") + send_notification(1046, v, "Your account has been permanently suspended for the following reason:\n\n> ban evasion") for post in g.db.query(Submission).filter_by(author_id=v.id).all(): if post.is_banned: diff --git a/drama/mail/__init__.py b/files/mail/__init__.py similarity index 100% rename from drama/mail/__init__.py rename to files/mail/__init__.py diff --git a/drama/mail/mail.py b/files/mail/mail.py similarity index 87% rename from drama/mail/mail.py rename to files/mail/mail.py index 5738978e2..34953ae76 100644 --- a/drama/mail/mail.py +++ b/files/mail/mail.py @@ -4,16 +4,17 @@ import time from flask import * from urllib.parse import quote -from drama.helpers.security import * -from drama.helpers.wrappers import * -from drama.classes import * -from drama.__main__ import app +from files.helpers.security import * +from files.helpers.wrappers import * +from files.classes import * +from files.__main__ import app -site = environ.get("domain").strip() +site = environ.get("DOMAIN").strip() +name = environ.get("SITE_NAME").strip() mailgun_domain = environ.get("MAILGUN_DOMAIN").strip() def send_mail(to_address, subject, html, plaintext=None, files={}, - from_address=f"Drama "): + from_address=f"{name} "): url = f"https://api.mailgun.net/v3/{mailgun_domain}/messages" @@ -49,7 +50,7 @@ def send_verification_email(user, email=None): html=render_template("email/email_verify.html", action_url=link, v=user), - subject="Validate your Drama account email." + subject=f"Validate your {name} account email." ) diff --git a/drama/routes/__init__.py b/files/routes/__init__.py similarity index 100% rename from drama/routes/__init__.py rename to files/routes/__init__.py diff --git a/drama/routes/admin.py b/files/routes/admin.py similarity index 96% rename from drama/routes/admin.py rename to files/routes/admin.py index cf616d986..21e6cdd22 100644 --- a/drama/routes/admin.py +++ b/files/routes/admin.py @@ -5,17 +5,17 @@ import imagehash from os import remove from PIL import Image as IMAGE -from drama.helpers.wrappers import * -from drama.helpers.alerts import * -from drama.helpers.sanitize import * -from drama.helpers.markdown import * -from drama.helpers.security import * -from drama.helpers.get import * -from drama.helpers.images import * -from drama.classes import * +from files.helpers.wrappers import * +from files.helpers.alerts import * +from files.helpers.sanitize import * +from files.helpers.markdown import * +from files.helpers.security import * +from files.helpers.get import * +from files.helpers.images import * +from files.classes import * from flask import * import matplotlib.pyplot as plt -from drama.__main__ import app, cache +from files.__main__ import app, cache from .front import frontlist @app.get("/admin/shadowbanned") @@ -443,7 +443,7 @@ def admin_image_purge(v): name = request.form.get("url") image = g.db.query(Image).filter(Image.text == name).first() if image: - requests.delete(f'https://api.imgur.com/3/image/{image.deletehash}', headers = {"Authorization": f"Client-ID {imgurkey}"}) + requests.delete(f'https://api.imgur.com/3/image/{image.deletehash}', headers = {"Authorization": f"Client-ID {IMGUR_KEY}"}) headers = {"Authorization": f"Bearer {CF_KEY}", "Content-Type": "application/json"} data = {'files': [name]} url = f"https://api.cloudflare.com/client/v4/zones/{CF_ZONE}/purge_cache" @@ -646,16 +646,16 @@ def ban_user(user_id, v): if days > 0: if message: - text = f"Your Drama account has been suspended for {days} days for the following reason:\n\n> {message}" + text = f"Your account has been suspended for {days} days for the following reason:\n\n> {message}" else: - text = f"Your Drama account has been suspended for {days} days." + text = f"Your account has been suspended for {days} days." user.ban(admin=v, reason=reason, days=days) else: if message: - text = f"Your Drama account has been permanently suspended for the following reason:\n\n> {message}" + text = f"Your account has been permanently suspended for the following reason:\n\n> {message}" else: - text = "Your Drama account has been permanently suspended." + text = "Your account has been permanently suspended." user.ban(admin=v, reason=reason) @@ -701,7 +701,7 @@ def unban_user(user_id, v): x.unban() send_notification(1046, user, - "Your Drama account has been reinstated. Please carefully review and abide by the [rules](/post/2510) to ensure that you don't get suspended again.") + "Your account has been reinstated. Please carefully review and abide by the [rules](/post/2510) to ensure that you don't get suspended again.") ma=ModAction( kind="unexile_user", @@ -907,7 +907,7 @@ def refund(v): if u.id == 253: continue posts=sum([x[0]+x[1]-1 for x in g.db.query(Submission.upvotes, Submission.downvotes).options(lazyload('*')).filter_by(author_id = u.id, is_banned = False, deleted_utc = 0).all()]) comments=sum([x[0]+x[1]-1 for x in g.db.query(Comment.upvotes, Comment.downvotes).options(lazyload('*')).filter_by(author_id = u.id, is_banned = False, deleted_utc = 0).all()]) - u.dramacoins = int(posts+comments) + u.coins = int(posts+comments) g.db.add(u) return "sex" @@ -931,7 +931,7 @@ def admin_banned_domains(v): @validate_formkey def admin_toggle_ban_domain(v): - domain=request.form.get("domain").strip() + domain=request.form.get("DOMAIN").strip() if not domain: abort(400) reason=request.form.get("reason", "").strip() diff --git a/drama/routes/awards.py b/files/routes/awards.py similarity index 92% rename from drama/routes/awards.py rename to files/routes/awards.py index 12b500018..7fafd9a14 100644 --- a/drama/routes/awards.py +++ b/files/routes/awards.py @@ -1,8 +1,8 @@ -from drama.__main__ import app -from drama.helpers.wrappers import * -from drama.helpers.alerts import * -from drama.helpers.get import * -from drama.classes.award import * +from files.__main__ import app +from files.helpers.wrappers import * +from files.helpers.alerts import * +from files.helpers.get import * +from files.classes.award import * from flask import g, request @@ -15,13 +15,12 @@ def banaward_trigger(post=None, comment=None): if not author.is_suspended: author.ban(reason="1-day ban award used", days=1) - send_notification(1046, author, f"Your Drama account has been suspended for a day for {link}. It sucked and you should feel bad.") + send_notification(1046, author, f"Your account has been suspended for a day for {link}. It sucked and you should feel bad.") elif author.unban_utc > 0: author.unban_utc += 24*60*60 g.db.add(author) - send_notification(1046, author, - f"Your Drama account has been suspended for yet another day for {link}. Seriously man?") + send_notification(1046, author, f"Your account has been suspended for yet another day for {link}. Seriously man?") ACTIONS = { diff --git a/drama/routes/comments.py b/files/routes/comments.py similarity index 97% rename from drama/routes/comments.py rename to files/routes/comments.py index e6135546f..ce9822339 100644 --- a/drama/routes/comments.py +++ b/files/routes/comments.py @@ -1,19 +1,19 @@ import traceback import sys -from drama.helpers.wrappers import * -from drama.helpers.filters import * -from drama.helpers.alerts import * -from drama.helpers.images import * -from drama.helpers.session import * -from drama.classes import * -from drama.routes.front import comment_idlist +from files.helpers.wrappers import * +from files.helpers.filters import * +from files.helpers.alerts import * +from files.helpers.images import * +from files.helpers.session import * +from files.classes import * +from files.routes.front import comment_idlist from pusher_push_notifications import PushNotifications, PusherAuthError from flask import * -from drama.__main__ import app, limiter +from files.__main__ import app, limiter -site = environ.get("domain").strip() +site = environ.get("DOMAIN").strip() choices = ['Wow, you must be a JP fan.', 'This is one of the worst posts I have EVER seen. Delete it.', "No, don't reply like this, please do another wall of unhinged rant please.", '# 😴😴😴', "Ma'am we've been over this before. You need to stop.", "I've known more coherent downies.", "Your pulitzer's in the mail", "That's great and all, but I asked for my burger without cheese.", 'That degree finally paying off', "That's nice sweaty. Why don't you have a seat in the time out corner with Pizzashill until you calm down, then you can have your Capri Sun.", "All them words won't bring your pa back.", "You had a chance to not be completely worthless, but it looks like you threw it away. At least you're consistent.", 'Some people are able to display their intelligence by going on at length on a subject and never actually saying anything. This ability is most common in trades such as politics, public relations, and law. You have impressed me by being able to best them all, while still coming off as an absolute idiot.', "You can type 10,000 characters and you decided that these were the one's that you wanted.", 'Have you owned the libs yet?', "I don't know what you said, because I've seen another human naked.", 'Impressive. Normally people with such severe developmental disabilities struggle to write much more than a sentence or two. He really has exceded our expectations for the writing portion. Sadly the coherency of his writing, along with his abilities in the social skills and reading portions, are far behind his peers with similar disabilities.', "This is a really long way of saying you don't fuck.", "Sorry ma'am, looks like his delusions have gotten worse. We'll have to admit him,", '![](https://i.kym-cdn.com/photos/images/newsfeed/001/038/094/0a1.jpg)', 'If only you could put that energy into your relationships', 'Posts like this is why I do Heroine.', 'still unemployed then?', 'K', 'look im gunna have 2 ask u 2 keep ur giant dumps in the toilet not in my replys 😷😷😷', "Mommy is soooo proud of you, sweaty. Let's put this sperg out up on the fridge with all your other failures.", "Good job bobby, here's a star", "That was a mistake. You're about to find out the hard way why.", 'You sat down and wrote all this shit. You could have done so many other things with your life. What happened to your life that made you decide writing novels of bullshit on reddit was the best option?', "I don't have enough spoons to read this shit", "All those words won't bring daddy back.", 'OUT!', "Mommy is soooo proud of you, sweaty. Let's put this sperg out up on the fridge with all your other failures."] @@ -259,7 +259,7 @@ def api_comment(v): threshold *= 2 if len(similar_comments) > threshold: - text = "Your Drama account has been suspended for 1 day for the following reason:\n\n> Too much spam!" + text = "Your account has been suspended for 1 day for the following reason:\n\n> Too much spam!" send_notification(1046, v, text) v.ban(reason="Spamming.", @@ -539,7 +539,7 @@ def api_comment(v): }, ) except PusherAuthError as e: - traceback.print_tb(e.__traceback__) + sys.stderr.write(traceback.format_exc()) sys.stderr.flush() @@ -656,7 +656,7 @@ def edit_comment(cid, v): threshold *= 2 if len(similar_comments) > threshold: - text = "Your Drama account has been suspended for 1 day for the following reason:\n\n> Too much spam!" + text = "Your account has been suspended for 1 day for the following reason:\n\n> Too much spam!" send_notification(1046, v, text) v.ban(reason="Spamming.", diff --git a/drama/routes/discord.py b/files/routes/discord.py similarity index 88% rename from drama/routes/discord.py rename to files/routes/discord.py index 72f7a6d95..6e29b5fc7 100644 --- a/drama/routes/discord.py +++ b/files/routes/discord.py @@ -1,15 +1,14 @@ -from drama.helpers.wrappers import * -from drama.helpers.security import * -from drama.helpers.discord import add_role -from drama.__main__ import app +from files.helpers.wrappers import * +from files.helpers.security import * +from files.helpers.discord import add_role +from files.__main__ import app SERVER_ID = environ.get("DISCORD_SERVER_ID",'').strip() CLIENT_ID = environ.get("DISCORD_CLIENT_ID",'').strip() CLIENT_SECRET = environ.get("DISCORD_CLIENT_SECRET",'').strip() BOT_TOKEN = environ.get("DISCORD_BOT_TOKEN").strip() +COINS_NAME = environ.get("COINS_NAME").strip() DISCORD_ENDPOINT = "https://discordapp.com/api/v6" - - WELCOME_CHANNEL="846509313941700618" @app.get("/discord") @@ -17,7 +16,7 @@ WELCOME_CHANNEL="846509313941700618" def join_discord(v): if v.is_banned != 0: return "You're banned" - if v.admin_level == 0 and v.dramacoins < 150: return "You must earn 150 dramacoins before entering the Discord server. You earn dramacoins by making posts/comments and getting upvoted." + if v.admin_level == 0 and v.coins < 150: return f"You must earn 150 {COINS_NAME} before entering the Discord server. You earn {COINS_NAME} by making posts/comments and getting upvoted." now=int(time.time()) @@ -126,7 +125,7 @@ def discord_redirect(v): time.sleep(0.1) - if v.dramacoins > 100: add_role(v, "linked") + if v.coins > 100: add_role(v, "linked") else: add_role(v, "norep") else: diff --git a/drama/routes/errors.py b/files/routes/errors.py similarity index 97% rename from drama/routes/errors.py rename to files/routes/errors.py index 4b43a2380..01281af43 100644 --- a/drama/routes/errors.py +++ b/files/routes/errors.py @@ -1,11 +1,11 @@ import jinja2.exceptions -from drama.helpers.wrappers import * -from drama.helpers.session import * +from files.helpers.wrappers import * +from files.helpers.session import * from flask import * from urllib.parse import quote, urlencode import time -from drama.__main__ import app +from files.__main__ import app # Errors diff --git a/drama/routes/feeds.py b/files/routes/feeds.py similarity index 94% rename from drama/routes/feeds.py rename to files/routes/feeds.py index 91582b42b..bcee4c7bf 100644 --- a/drama/routes/feeds.py +++ b/files/routes/feeds.py @@ -1,11 +1,11 @@ import html from .front import frontlist from datetime import datetime -from drama.helpers.jinja2 import full_link -from drama.helpers.get import * +from files.helpers.jinja2 import full_link +from files.helpers.get import * from yattag import Doc -from drama.__main__ import app +from files.__main__ import app @app.get('/rss//') def feeds_user(sort='hot', t='all'): diff --git a/drama/routes/flagging.py b/files/routes/flagging.py similarity index 71% rename from drama/routes/flagging.py rename to files/routes/flagging.py index ce62d97ac..3c613427d 100644 --- a/drama/routes/flagging.py +++ b/files/routes/flagging.py @@ -1,8 +1,8 @@ -from drama.helpers.wrappers import * -from drama.helpers.get import * +from files.helpers.wrappers import * +from files.helpers.get import * from flask import g -from drama.__main__ import app -from drama.helpers.sanitize import sanitize +from files.__main__ import app +from files.helpers.sanitize import sanitize @app.post("/flag/post/") @auth_desired @@ -11,11 +11,10 @@ def api_flag_post(pid, v): post = get_post(pid) if v: - existing = g.db.query(Flag).filter_by( - user_id=v.id, post_id=post.id).first() + existing = g.db.query(Flag).filter_by(user_id=v.id, post_id=post.id).first() if existing: return "", 409 - reason = sanitize(request.form.get("reason", "")[:100].strip(), flair=True) + reason = sanitize(request.form.get("reason", "").strip()[:100], flair=True) flag = Flag(post_id=post.id, user_id=v.id, diff --git a/drama/routes/front.py b/files/routes/front.py similarity index 98% rename from drama/routes/front.py rename to files/routes/front.py index dff0e095e..272af70d1 100644 --- a/drama/routes/front.py +++ b/files/routes/front.py @@ -1,8 +1,8 @@ -from drama.helpers.wrappers import * -from drama.helpers.get import * +from files.helpers.wrappers import * +from files.helpers.get import * -from drama.__main__ import app, cache -from drama.classes.submission import Submission +from files.__main__ import app, cache +from files.classes.submission import Submission @app.get("/post/") def slash_post(): diff --git a/drama/routes/login.py b/files/routes/login.py similarity index 98% rename from drama/routes/login.py rename to files/routes/login.py index 875c2f008..c13acb9a5 100644 --- a/drama/routes/login.py +++ b/files/routes/login.py @@ -1,6 +1,6 @@ from urllib.parse import urlencode -from drama.mail import * -from drama.__main__ import app, limiter +from files.mail import * +from files.__main__ import app, limiter valid_username_regex = re.compile("^[a-zA-Z0-9_\-]{3,25}$") valid_password_regex = re.compile("^.{8,100}$") @@ -135,8 +135,8 @@ def login_post(): @app.get("/@me") @auth_required def me(v): - if request.headers.get("Authorization"): v.json - else: redirect(v.url) + if request.headers.get("Authorization"): return v.json + else: return redirect(v.url) @app.post("/logout") @@ -404,7 +404,7 @@ def post_forgot(): url = f"https://{app.config['SERVER_NAME']}/reset?id={user.id}&time={now}&token={token}" send_mail(to_address=user.email, - subject="Drama - Password Reset Request", + subject="Password Reset Request", html=render_template("email/password_reset.html", action_url=url, v=user) @@ -537,7 +537,7 @@ def request_2fa_disable(): action_url=f"https://{app.config['SERVER_NAME']}/reset_2fa?id={user.id}&t={valid}&token={token}" send_mail(to_address=user.email, - subject="Drama - 2FA Removal Request", + subject="2FA Removal Request", html=render_template("email/2fa_remove.html", action_url=action_url, v=user) diff --git a/drama/routes/oauth.py b/files/routes/oauth.py similarity index 96% rename from drama/routes/oauth.py rename to files/routes/oauth.py index 16283b14c..802ccd8b7 100644 --- a/drama/routes/oauth.py +++ b/files/routes/oauth.py @@ -1,9 +1,9 @@ -from drama.helpers.wrappers import * -from drama.helpers.alerts import * -from drama.helpers.get import * -from drama.classes import * +from files.helpers.wrappers import * +from files.helpers.alerts import * +from files.helpers.get import * +from files.classes import * from flask import * -from drama.__main__ import app +from files.__main__ import app @app.get("/authorize") @auth_required diff --git a/drama/routes/posts.py b/files/routes/posts.py similarity index 95% rename from drama/routes/posts.py rename to files/routes/posts.py index 1a574b59c..bce0f5bb5 100644 --- a/drama/routes/posts.py +++ b/files/routes/posts.py @@ -3,22 +3,22 @@ import mistletoe import urllib.parse import gevent -from drama.helpers.wrappers import * -from drama.helpers.sanitize import * -from drama.helpers.filters import * -from drama.helpers.markdown import * -from drama.helpers.session import * -from drama.helpers.thumbs import * -from drama.helpers.alerts import send_notification -from drama.helpers.discord import send_message -from drama.classes import * +from files.helpers.wrappers import * +from files.helpers.sanitize import * +from files.helpers.filters import * +from files.helpers.markdown import * +from files.helpers.session import * +from files.helpers.thumbs import * +from files.helpers.alerts import send_notification +from files.helpers.discord import send_message +from files.classes import * from flask import * from io import BytesIO -from drama.__main__ import app, limiter, cache +from files.__main__ import app, limiter, cache from PIL import Image as PILimage from .front import frontlist -site = environ.get("domain").strip() +site = environ.get("DOMAIN").strip() with open("snappy.txt", "r") as f: snappyquotes = f.read().split("{[para]}") @@ -266,7 +266,7 @@ def edit_post(pid, v): BadLink.link)).first() if badlink: if badlink.autoban: - text = "Your Drama account has been suspended for 1 day for the following reason:\n\n> Too much spam!" + text = "Your account has been suspended for 1 day for the following reason:\n\n> Too much spam!" send_notification(1046, v, text) v.ban(days=1, reason="spam") @@ -422,7 +422,6 @@ def thumbs(new_post): #iterate through desired meta tags meta_tags = [ - "drama:thumbnail", "twitter:image", "og:image", "thumbnail" @@ -508,6 +507,22 @@ def archiveorg(url): except Exception as e: print(e) +@app.route("/embed/post/", methods=["GET"]) +def embed_post_pid(pid): + + post = get_post(pid) + + return render_template("embeds/post.html", p=post) + + +@app.route("/embed/comment/", methods=["GET"]) +def embed_comment_cid(cid, pid=None): + + comment = get_comment(cid) + + return render_template("embeds/comment.html", c=comment) + + @app.post("/submit") @limiter.limit("6/minute") @is_not_banned @@ -604,8 +619,9 @@ def submit_post(v): else: return render_template("submit.html", v=v, error="ToS Violation", title=title, url=url, body=request.form.get("body", "")), 400 if "twitter.com" in domain: - embed = requests.get("https://publish.twitter.com/oembed", params={"url":url, "omit_script":"t"}).json()["html"] - + try: embed = requests.get("https://publish.twitter.com/oembed", params={"url":url, "omit_script":"t"}).json()["html"] + except: embed = None + elif "youtu" in domain: yt_id = re.match(re.compile("^.*(youtu.be\/|v\/|u\/\w\/|embed\/|watch\?v=|shorts\/|\&v=)([^#\&\?]*).*"), url).group(2) if not yt_id or len(yt_id) != 11: embed = None @@ -616,7 +632,7 @@ def submit_post(v): else: embed = f"https://youtube.com/embed/{yt_id}" elif "instagram.com" in domain: - embed = requests.get("https://graph.facebook.com/v9.0/instagram_oembed", params={"url":url,"access_token":environ.get("FACEBOOK_TOKEN","").strip(),"omitscript":'true'}, headers={"User-Agent":"Instagram embedder for Drama"}).json()["html"] + embed = requests.get("https://graph.facebook.com/v9.0/instagram_oembed", params={"url":url,"access_token":environ.get("FACEBOOK_TOKEN","").strip(),"omitscript":'true'}, headers={"User-Agent": app.config["UserAgent"]}).json()["html"] elif app.config['SERVER_NAME'] in domain: try: @@ -681,7 +697,7 @@ def submit_post(v): if max(len(similar_urls), len(similar_posts)) >= threshold: - text = "Your Drama account has been suspended for 1 day for the following reason:\n\n> Too much spam!" + text = "Your account has been suspended for 1 day for the following reason:\n\n> Too much spam!" send_notification(1046, v, text) v.ban(reason="Spamming.", @@ -761,7 +777,7 @@ def submit_post(v): BadLink.link)).first() if badlink: if badlink.autoban: - text = "Your Drama account has been suspended for 1 day for the following reason:\n\n> Too much spam!" + text = "Your account has been suspended for 1 day for the following reason:\n\n> Too much spam!" send_notification(1046, v, text) v.ban(days=1, reason="spam") @@ -789,7 +805,7 @@ def submit_post(v): url = url.replace("https://mobile.twitter.com", "https://twitter.com") - if url.startswith("https://old.reddit.com/") and '/comments/' in url and '?sort=' not in url: url += "?sort=controversial" + # if url.startswith("https://old.reddit.com/") and '/comments/' in url and '?' not in url: url += "?sort=controversial" title_html = sanitize(title, linkgen=True, flair=True) diff --git a/drama/routes/search.py b/files/routes/search.py similarity index 99% rename from drama/routes/search.py rename to files/routes/search.py index 31cd8dc76..ee3cca08d 100644 --- a/drama/routes/search.py +++ b/files/routes/search.py @@ -1,8 +1,8 @@ -from drama.helpers.wrappers import * +from files.helpers.wrappers import * import re from sqlalchemy import * from flask import * -from drama.__main__ import app, cache +from files.__main__ import app, cache import random query_regex=re.compile("(\w+):(\S+)") diff --git a/drama/routes/settings.py b/files/routes/settings.py similarity index 96% rename from drama/routes/settings.py rename to files/routes/settings.py index 78a20e73c..b9436d6ae 100644 --- a/drama/routes/settings.py +++ b/files/routes/settings.py @@ -1,11 +1,11 @@ from __future__ import unicode_literals -from drama.helpers.alerts import * -from drama.helpers.sanitize import * -from drama.helpers.filters import filter_comment_html -from drama.helpers.markdown import * -from drama.helpers.discord import remove_user, set_nick -from drama.mail import * -from drama.__main__ import app, cache +from files.helpers.alerts import * +from files.helpers.sanitize import * +from files.helpers.filters import filter_comment_html +from files.helpers.markdown import * +from files.helpers.discord import remove_user, set_nick +from files.mail import * +from files.__main__ import app, cache import youtube_dl from .front import frontlist @@ -13,7 +13,8 @@ valid_username_regex = re.compile("^[a-zA-Z0-9_\-]{3,25}$") valid_title_regex = re.compile("^((?!<).){3,100}$") valid_password_regex = re.compile("^.{8,100}$") -youtubekey = environ.get("youtubekey").strip() +YOUTUBE_KEY = environ.get("YOUTUBE_KEY").strip() +COINS_NAME = environ.get("COINS_NAME").strip() @app.post("/settings/profile") @auth_required @@ -51,7 +52,7 @@ def settings_profile_post(v): if request.values.get("animatedname", v.animatedname) != v.animatedname: if v.animatedname == False: - users = g.db.query(User.id).options(lazyload('*')).order_by(User.dramacoins.desc()).limit(25).all() + users = g.db.query(User.id).options(lazyload('*')).order_by(User.coins.desc()).limit(25).all() users = [x[0] for x in users] if v.id not in users: return {"error": "You must be in the top 25 leaderboard or be a patron to apply an animated name!"}, 403 updated = True @@ -425,13 +426,13 @@ def settings_css(v): @auth_required def settings_profilecss_get(v): if v and v.is_banned and not v.unban_utc: return render_template("seized.html") - if v.dramacoins < 1000 and not v.patron: return "You must have +1000 dramacoins or be a patron to set profile css." + if v.coins < 1000 and not v.patron: return f"You must have +1000 {COINS_NAME} or be a patron to set profile css." return render_template("settings_profilecss.html", v=v) @app.post("/settings/profilecss") @auth_required def settings_profilecss(v): - if v.dramacoins < 1000 and not v.patron: return "You must have +1000 dramacoins or be a patron to set profile css." + if v.coins < 1000 and not v.patron: return f"You must have +1000 {COINS_NAME} or be a patron to set profile css." profilecss = request.form.get("profilecss").replace('\\', '')[:50000] v.profilecss = profilecss g.db.add(v) @@ -454,7 +455,7 @@ def settings_block_user(v): return {"error": f"You have already blocked @{user.username}."}, 409 if user.id == 1046: - return {"error": "You can't block @Drama."}, 409 + return {"error": "You can't block @files."}, 409 new_block = UserBlock(user_id=v.id, target_id=user.id, @@ -613,7 +614,7 @@ def settings_song_change(v): return redirect("/settings/profile") - req = requests.get(f"https://www.googleapis.com/youtube/v3/videos?id={id}&key={youtubekey}&part=contentDetails").json() + req = requests.get(f"https://www.googleapis.com/youtube/v3/videos?id={id}&key={YOUTUBE_KEY}&part=contentDetails").json() try: duration = req['items'][0]['contentDetails']['duration'] except: print(req) diff --git a/drama/routes/static.py b/files/routes/static.py similarity index 97% rename from drama/routes/static.py rename to files/routes/static.py index f84aec5ae..bf1c99925 100644 --- a/drama/routes/static.py +++ b/files/routes/static.py @@ -1,8 +1,8 @@ -from drama.mail import * -from drama.__main__ import app, limiter -from drama.helpers.alerts import * +from files.mail import * +from files.__main__ import app, limiter +from files.helpers.alerts import * -site = environ.get("domain").strip() +site = environ.get("DOMAIN").strip() @app.get("/patrons") @auth_desired @@ -14,7 +14,7 @@ def patrons(v): @app.get("/badmins") @auth_desired def badmins(v): - badmins = g.db.query(User).filter_by(admin_level=6).order_by(User.dramacoins.desc()).all() + badmins = g.db.query(User).filter_by(admin_level=6).order_by(User.coins.desc()).all() return render_template("badmins.html", v=v, badmins=badmins) @app.get("/log") diff --git a/drama/routes/users.py b/files/routes/users.py similarity index 88% rename from drama/routes/users.py rename to files/routes/users.py index 8d39af87b..2790ef440 100644 --- a/drama/routes/users.py +++ b/files/routes/users.py @@ -4,16 +4,16 @@ import time import traceback import sys -from drama.classes.user import ViewerRelationship -from drama.helpers.alerts import * -from drama.helpers.sanitize import * -from drama.helpers.markdown import * -from drama.mail import * +from files.classes.user import ViewerRelationship +from files.helpers.alerts import * +from files.helpers.sanitize import * +from files.helpers.markdown import * +from files.mail import * from flask import * -from drama.__main__ import app, limiter +from files.__main__ import app, limiter from pusher_push_notifications import PushNotifications, PusherAuthError -site = environ.get("domain").strip() +site = environ.get("DOMAIN").strip() PUSHER_KEY = environ.get("PUSHER_KEY", "").strip() @@ -28,7 +28,7 @@ def suicide(v, username): t = int(time.time()) if v.admin_level == 0 and t - v.suicide_utc < 86400: return "", 204 user = get_user(username) - suicide = f"Hi there,\n\nA [concerned dramatard]({v.url}) reached out to us about you.\n\nWhen you're in the middle of something painful, it may feel like you don't have a lot of options. But whatever you're going through, you deserve help and there are people who are here for you.\n\nThere are resources available in your area that are free, confidential, and available 24/7:\n\n- Call, Text, or Chat with Canada's [Crisis Services Canada](https://www.crisisservicescanada.ca/en/)\n- Call, Email, or Visit the UK's [Samaritans](https://www.samaritans.org/)\n- Text CHAT to America's [Crisis Text Line](https://www.crisistextline.org/) at 741741.\nIf you don't see a resource in your area above, the moderators at r/SuicideWatch keep a comprehensive list of resources and hotlines for people organized by location. Find Someone Now\n\nIf you think you may be depressed or struggling in another way, don't ignore it or brush it aside. Take yourself and your feelings seriously, and reach out to someone.\n\nIt may not feel like it, but you have options. There are people available to listen to you, and ways to move forward.\n\nYour fellow dramatards care about you and there are people who want to help." + suicide = f"Hi there,\n\nA [concerned user]({v.url}) reached out to us about you.\n\nWhen you're in the middle of something painful, it may feel like you don't have a lot of options. But whatever you're going through, you deserve help and there are people who are here for you.\n\nThere are resources available in your area that are free, confidential, and available 24/7:\n\n- Call, Text, or Chat with Canada's [Crisis Services Canada](https://www.crisisservicescanada.ca/en/)\n- Call, Email, or Visit the UK's [Samaritans](https://www.samaritans.org/)\n- Text CHAT to America's [Crisis Text Line](https://www.crisistextline.org/) at 741741.\nIf you don't see a resource in your area above, the moderators at r/SuicideWatch keep a comprehensive list of resources and hotlines for people organized by location. Find Someone Now\n\nIf you think you may be depressed or struggling in another way, don't ignore it or brush it aside. Take yourself and your feelings seriously, and reach out to someone.\n\nIt may not feel like it, but you have options. There are people available to listen to you, and ways to move forward.\n\nYour fellow users care about you and there are people who want to help." send_notification(1046, user, suicide) v.suicide_utc = t g.db.add(v) @@ -39,7 +39,7 @@ def suicide(v, username): def leaderboard(v): if v and v.is_banned and not v.unban_utc:return render_template("seized.html") users = g.db.query(User).options(lazyload('*')) - users1 = users.order_by(User.dramacoins.desc()).limit(25).all() + users1 = users.order_by(User.coins.desc()).limit(25).all() users2 = users.order_by(User.stored_subscriber_count.desc()).limit(10).all() users3 = users.order_by(User.post_count.desc()).limit(10).all() users4 = users.order_by(User.comment_count.desc()).limit(10).all() @@ -159,7 +159,7 @@ def message2(v, username): }, ) except PusherAuthError as e: - traceback.print_tb(e.__traceback__) + sys.stderr.write(traceback.format_exc()) sys.stderr.flush() return redirect('/notifications?all=true') @@ -171,7 +171,7 @@ def mfa_qr(secret, v): qr = qrcode.QRCode( error_correction=qrcode.constants.ERROR_CORRECT_L ) - qr.add_data(x.provisioning_uri(v.username, issuer_name="Drama")) + qr.add_data(x.provisioning_uri(v.username, issuer_name=app.config["SITE_NAME"])) img = qr.make_image(fill_color="#000000", back_color="white") mem = io.BytesIO() @@ -284,11 +284,11 @@ def u_username(username, v=None): # paidrent = False # if v and u.id == 253: # if int(time.time()) - v.rent_utc < 600: paidrent = True - # elif request.args.get("rent") == "true" and v.dramacoins > 500: - # v.dramacoins -= 500 + # elif request.args.get("rent") == "true" and v.coins > 500: + # v.coins -= 500 # v.rent_utc = int(time.time()) # g.db.add(v) - # u.dramacoins += 500 + # u.coins += 500 # g.db.add(u) # send_notification(1046, u, f"@{v.username} has paid rent!") # paidrent = True @@ -386,11 +386,11 @@ def u_username_comments(username, v=None): # paidrent = False # if v and u.id == 253: # if int(time.time()) - v.rent_utc < 600: paidrent = True - # elif request.args.get("rent") == "true" and v.dramacoins > 500: - # v.dramacoins -= 500 + # elif request.args.get("rent") == "true" and v.coins > 500: + # v.coins -= 500 # v.rent_utc = int(time.time()) # g.db.add(v) - # u.dramacoins += 500 + # u.coins += 500 # g.db.add(u) # send_notification(1046, u, f"@{v.username} has paid rent!") # paidrent = True diff --git a/drama/routes/votes.py b/files/routes/votes.py similarity index 91% rename from drama/routes/votes.py rename to files/routes/votes.py index 59581ef52..0f39ae239 100644 --- a/drama/routes/votes.py +++ b/files/routes/votes.py @@ -1,8 +1,8 @@ -from drama.helpers.wrappers import * -from drama.helpers.get import * -from drama.classes import * +from files.helpers.wrappers import * +from files.helpers.get import * +from files.classes import * from flask import * -from drama.__main__ import app +from files.__main__ import app @app.get("/votes") @@ -73,16 +73,16 @@ def api_vote_post(post_id, new, v): if existing: if existing.vote_type == 0 and new != 0: - post.author.dramacoins += 1 + post.author.coins += 1 g.db.add(post.author) elif existing.vote_type != 0 and new == 0: - post.author.dramacoins -= 1 + post.author.coins -= 1 g.db.add(post.author) existing.vote_type = new g.db.add(existing) else: if new != 0: - post.author.dramacoins += 1 + post.author.coins += 1 g.db.add(post.author) vote = Vote(user_id=v.id, vote_type=new, @@ -121,16 +121,16 @@ def api_vote_comment(comment_id, new, v): if existing: if existing.vote_type == 0 and new != 0: - comment.author.dramacoins += 1 + comment.author.coins += 1 g.db.add(comment.author) elif existing.vote_type != 0 and new == 0: - comment.author.dramacoins -= 1 + comment.author.coins -= 1 g.db.add(comment.author) existing.vote_type = new g.db.add(existing) else: if new != 0: - comment.author.dramacoins += 1 + comment.author.coins += 1 g.db.add(comment.author) vote = CommentVote(user_id=v.id, vote_type=new, diff --git a/drama/static/index.js b/files/static/index.js similarity index 100% rename from drama/static/index.js rename to files/static/index.js diff --git a/drama/templates/2fa_modal.html b/files/templates/2fa_modal.html similarity index 100% rename from drama/templates/2fa_modal.html rename to files/templates/2fa_modal.html diff --git a/drama/templates/admin/admin_home.html b/files/templates/admin/admin_home.html similarity index 100% rename from drama/templates/admin/admin_home.html rename to files/templates/admin/admin_home.html diff --git a/drama/templates/admin/alt_votes.html b/files/templates/admin/alt_votes.html similarity index 100% rename from drama/templates/admin/alt_votes.html rename to files/templates/admin/alt_votes.html diff --git a/drama/templates/admin/app.html b/files/templates/admin/app.html similarity index 100% rename from drama/templates/admin/app.html rename to files/templates/admin/app.html diff --git a/drama/templates/admin/apps.html b/files/templates/admin/apps.html similarity index 100% rename from drama/templates/admin/apps.html rename to files/templates/admin/apps.html diff --git a/drama/templates/admin/badge_grant.html b/files/templates/admin/badge_grant.html similarity index 100% rename from drama/templates/admin/badge_grant.html rename to files/templates/admin/badge_grant.html diff --git a/drama/templates/admin/banned_domains.html b/files/templates/admin/banned_domains.html similarity index 100% rename from drama/templates/admin/banned_domains.html rename to files/templates/admin/banned_domains.html diff --git a/drama/templates/admin/content_stats.html b/files/templates/admin/content_stats.html similarity index 100% rename from drama/templates/admin/content_stats.html rename to files/templates/admin/content_stats.html diff --git a/drama/templates/admin/flagged_comments.html b/files/templates/admin/flagged_comments.html similarity index 100% rename from drama/templates/admin/flagged_comments.html rename to files/templates/admin/flagged_comments.html diff --git a/drama/templates/admin/flagged_posts.html b/files/templates/admin/flagged_posts.html similarity index 100% rename from drama/templates/admin/flagged_posts.html rename to files/templates/admin/flagged_posts.html diff --git a/drama/templates/admin/image_ban.html b/files/templates/admin/image_ban.html similarity index 100% rename from drama/templates/admin/image_ban.html rename to files/templates/admin/image_ban.html diff --git a/drama/templates/admin/image_posts.html b/files/templates/admin/image_posts.html similarity index 100% rename from drama/templates/admin/image_posts.html rename to files/templates/admin/image_posts.html diff --git a/drama/templates/admin/image_purge.html b/files/templates/admin/image_purge.html similarity index 100% rename from drama/templates/admin/image_purge.html rename to files/templates/admin/image_purge.html diff --git a/drama/templates/admin/new_users.html b/files/templates/admin/new_users.html similarity index 100% rename from drama/templates/admin/new_users.html rename to files/templates/admin/new_users.html diff --git a/drama/templates/admin/removed_posts.html b/files/templates/admin/removed_posts.html similarity index 100% rename from drama/templates/admin/removed_posts.html rename to files/templates/admin/removed_posts.html diff --git a/drama/templates/admin/user_award.html b/files/templates/admin/user_award.html similarity index 100% rename from drama/templates/admin/user_award.html rename to files/templates/admin/user_award.html diff --git a/drama/templates/api.html b/files/templates/api.html similarity index 95% rename from drama/templates/api.html rename to files/templates/api.html index 2663cd9bf..c97a27236 100644 --- a/drama/templates/api.html +++ b/files/templates/api.html @@ -43,7 +43,7 @@ Python example: headers={"Authorization": "access_token_goes_here", "User-Agent": "sex"} - url="https://rdrama.net/@carpathianflorist" + url="{{request.host_url}}@carpathianflorist" r=requests.get(url, headers=headers) @@ -93,7 +93,7 @@ DO NOT reveal your Client ID or Access Token. Anyone with these information will ## Step 2: Prompt Your User for Authorization -Send your user to `https://rdrama.net/authorize/?client_id=YOUR_CLIENT_ID` +Send your user to `{{request.host_url}}authorize/?client_id=YOUR_CLIENT_ID` If done correctly, the user will see that your application wants to access their {{"SITE_NAME" | app_config}} account, and be prompted to approve or deny the request. @@ -112,7 +112,7 @@ Python example: headers={"Authorization": "access_token_goes_here", "User-Agent": "sex"} - url="https://rdrama.net/@carpathianflorist" + url="{{request.host_url}}@carpathianflorist" r=requests.get(url, headers=headers) diff --git a/drama/templates/authforms.html b/files/templates/authforms.html similarity index 95% rename from drama/templates/authforms.html rename to files/templates/authforms.html index 0bc0c834c..3a19f3da5 100644 --- a/drama/templates/authforms.html +++ b/files/templates/authforms.html @@ -5,10 +5,10 @@ - + - {% block pagetitle %}{{"SITE_NAME" | app_config}} - the open, free-speech social platform{% endblock %} + {% block pagetitle %}{{"SITE_NAME" | app_config}}{% endblock %} diff --git a/drama/templates/award_modal.html b/files/templates/award_modal.html similarity index 100% rename from drama/templates/award_modal.html rename to files/templates/award_modal.html diff --git a/drama/templates/badges.html b/files/templates/badges.html similarity index 100% rename from drama/templates/badges.html rename to files/templates/badges.html diff --git a/drama/templates/badmins.html b/files/templates/badmins.html similarity index 91% rename from drama/templates/badmins.html rename to files/templates/badmins.html index fe0bf7c7b..87e791c50 100644 --- a/drama/templates/badmins.html +++ b/files/templates/badmins.html @@ -16,7 +16,7 @@ {% for user in badmins %} {{user.username}} - {{user.dramacoins}} + {{user.coins}} {% endfor %} diff --git a/drama/templates/banned.html b/files/templates/banned.html similarity index 100% rename from drama/templates/banned.html rename to files/templates/banned.html diff --git a/drama/templates/blocks.html b/files/templates/blocks.html similarity index 100% rename from drama/templates/blocks.html rename to files/templates/blocks.html diff --git a/drama/templates/bootstrap.html b/files/templates/bootstrap.html similarity index 100% rename from drama/templates/bootstrap.html rename to files/templates/bootstrap.html diff --git a/drama/templates/changelog.html b/files/templates/changelog.html similarity index 100% rename from drama/templates/changelog.html rename to files/templates/changelog.html diff --git a/drama/templates/comment_failed.html b/files/templates/comment_failed.html similarity index 85% rename from drama/templates/comment_failed.html rename to files/templates/comment_failed.html index ebeb3beb6..f702d692f 100644 --- a/drama/templates/comment_failed.html +++ b/files/templates/comment_failed.html @@ -9,15 +9,6 @@ {% block content %}
-

Whoops!

-

Although {{"SITE_NAME" | app_config}} puts your freedom of speech first, there are a few things that we don't allow here:

-
    -
  • Digitally malicious content
  • -
  • URL shorteners
  • -
  • Copyright infringement
  • -
  • Spam
  • -
-

Please remove the following link(s) from your comment, and then you will be able to post it:

    diff --git a/drama/templates/comments.html b/files/templates/comments.html similarity index 100% rename from drama/templates/comments.html rename to files/templates/comments.html diff --git a/drama/templates/contact.html b/files/templates/contact.html similarity index 100% rename from drama/templates/contact.html rename to files/templates/contact.html diff --git a/drama/templates/default.html b/files/templates/default.html similarity index 99% rename from drama/templates/default.html rename to files/templates/default.html index 16d18d6e5..870a61503 100644 --- a/drama/templates/default.html +++ b/files/templates/default.html @@ -807,13 +807,13 @@ - + - + - + diff --git a/drama/templates/delete_comment_modal.html b/files/templates/delete_comment_modal.html similarity index 100% rename from drama/templates/delete_comment_modal.html rename to files/templates/delete_comment_modal.html diff --git a/drama/templates/delete_post_modal.html b/files/templates/delete_post_modal.html similarity index 100% rename from drama/templates/delete_post_modal.html rename to files/templates/delete_post_modal.html diff --git a/drama/templates/email/2fa_remove.html b/files/templates/email/2fa_remove.html similarity index 100% rename from drama/templates/email/2fa_remove.html rename to files/templates/email/2fa_remove.html diff --git a/drama/templates/email/default.html b/files/templates/email/default.html similarity index 100% rename from drama/templates/email/default.html rename to files/templates/email/default.html diff --git a/drama/templates/email/email_change.html b/files/templates/email/email_change.html similarity index 100% rename from drama/templates/email/email_change.html rename to files/templates/email/email_change.html diff --git a/drama/templates/email/email_verify.html b/files/templates/email/email_verify.html similarity index 100% rename from drama/templates/email/email_verify.html rename to files/templates/email/email_verify.html diff --git a/drama/templates/email/password_reset.html b/files/templates/email/password_reset.html similarity index 100% rename from drama/templates/email/password_reset.html rename to files/templates/email/password_reset.html diff --git a/files/templates/embeds/comment.html b/files/templates/embeds/comment.html new file mode 100644 index 000000000..b8391e399 --- /dev/null +++ b/files/templates/embeds/comment.html @@ -0,0 +1,122 @@ +{% extends "embeds/embed_default.html" %} + +{% set score=c.score_fuzzed %} + +{% block title %} +@{{ c.author.username }} comments on "{{ c.post.title }}" + +{% endblock %} + + +{% block content %} + + +
    + + + + + +
    + +
    + + + +
    + {{ c.body_html | safe }} +
    + + +
    +
      + + + +
    • +
    • + + +
    • + {{ score }}
    • + +
    • Copy link +
    • +
    • + +
    • +
    • + +
    • + +
    • +
    • +
    • +{{ score }} +
    • + +
    • +
    • +
    + +
    +
    + + + + + +
    +{% endblock %} \ No newline at end of file diff --git a/files/templates/embeds/embed_default.html b/files/templates/embeds/embed_default.html new file mode 100644 index 000000000..06d574e64 --- /dev/null +++ b/files/templates/embeds/embed_default.html @@ -0,0 +1,111 @@ + + + + + + + + + + {% block title %} + {% endblock %} + + + + + + {% block stylesheets %} + + {% if v %} + + {% if v.agendaposter %}{% elif v.css %}{% endif %} + {% else %} + + {% endif %} + + {% endblock %} + + + + + + + + + + + +
    +
    + +
    + + + {% block content %} + {% endblock %} + + +
    + + + + + + + + +{% include "bootstrap.html" %} + + + + + + + + + + + +{% block enlargeThumbJS %} +{% endblock %} + +{% block toggleView %} +{% endblock %} + +{% block embedJS %} +{% endblock %} + +{% block formatJS %} +{% endblock %} + + + + + + + \ No newline at end of file diff --git a/drama/templates/site_embeds/instagram.html b/files/templates/embeds/instagram.html similarity index 100% rename from drama/templates/site_embeds/instagram.html rename to files/templates/embeds/instagram.html diff --git a/files/templates/embeds/post.html b/files/templates/embeds/post.html new file mode 100644 index 000000000..20edfe130 --- /dev/null +++ b/files/templates/embeds/post.html @@ -0,0 +1,21 @@ +{% extends "embeds/embed_default.html" %} + +{% block title %} +{{ p.title | safe}} + +{% endblock %} + +{% block pagetype %}thread{% endblock %} + + +{% block content %} +
    +
    +
    + {% with listing = [p] %} + {% include "submission_listing.html" %} + {% endwith %} +
    +
    +
    +{% endblock %} \ No newline at end of file diff --git a/drama/templates/site_embeds/twitter.html b/files/templates/embeds/twitter.html similarity index 100% rename from drama/templates/site_embeds/twitter.html rename to files/templates/embeds/twitter.html diff --git a/drama/templates/site_embeds/twitterlight.html b/files/templates/embeds/twitterlight.html similarity index 100% rename from drama/templates/site_embeds/twitterlight.html rename to files/templates/embeds/twitterlight.html diff --git a/drama/templates/site_embeds/youtube.html b/files/templates/embeds/youtube.html similarity index 100% rename from drama/templates/site_embeds/youtube.html rename to files/templates/embeds/youtube.html diff --git a/drama/templates/emoji_modal.html b/files/templates/emoji_modal.html similarity index 100% rename from drama/templates/emoji_modal.html rename to files/templates/emoji_modal.html diff --git a/drama/templates/errors/400.html b/files/templates/errors/400.html similarity index 100% rename from drama/templates/errors/400.html rename to files/templates/errors/400.html diff --git a/drama/templates/errors/401.html b/files/templates/errors/401.html similarity index 100% rename from drama/templates/errors/401.html rename to files/templates/errors/401.html diff --git a/drama/templates/errors/403.html b/files/templates/errors/403.html similarity index 100% rename from drama/templates/errors/403.html rename to files/templates/errors/403.html diff --git a/drama/templates/errors/404.html b/files/templates/errors/404.html similarity index 100% rename from drama/templates/errors/404.html rename to files/templates/errors/404.html diff --git a/drama/templates/errors/405.html b/files/templates/errors/405.html similarity index 100% rename from drama/templates/errors/405.html rename to files/templates/errors/405.html diff --git a/drama/templates/errors/409.html b/files/templates/errors/409.html similarity index 100% rename from drama/templates/errors/409.html rename to files/templates/errors/409.html diff --git a/drama/templates/errors/410.html b/files/templates/errors/410.html similarity index 100% rename from drama/templates/errors/410.html rename to files/templates/errors/410.html diff --git a/drama/templates/errors/413.html b/files/templates/errors/413.html similarity index 100% rename from drama/templates/errors/413.html rename to files/templates/errors/413.html diff --git a/drama/templates/errors/418.html b/files/templates/errors/418.html similarity index 100% rename from drama/templates/errors/418.html rename to files/templates/errors/418.html diff --git a/drama/templates/errors/422.html b/files/templates/errors/422.html similarity index 100% rename from drama/templates/errors/422.html rename to files/templates/errors/422.html diff --git a/drama/templates/errors/429.html b/files/templates/errors/429.html similarity index 100% rename from drama/templates/errors/429.html rename to files/templates/errors/429.html diff --git a/drama/templates/errors/451.html b/files/templates/errors/451.html similarity index 100% rename from drama/templates/errors/451.html rename to files/templates/errors/451.html diff --git a/drama/templates/errors/500.html b/files/templates/errors/500.html similarity index 100% rename from drama/templates/errors/500.html rename to files/templates/errors/500.html diff --git a/drama/templates/errors/502.html b/files/templates/errors/502.html similarity index 99% rename from drama/templates/errors/502.html rename to files/templates/errors/502.html index 342736568..ccbde8f27 100644 --- a/drama/templates/errors/502.html +++ b/files/templates/errors/502.html @@ -37,7 +37,7 @@
diff --git a/drama/templates/errors/banaward.html b/files/templates/errors/banaward.html similarity index 100% rename from drama/templates/errors/banaward.html rename to files/templates/errors/banaward.html diff --git a/drama/templates/errors/default.html b/files/templates/errors/default.html similarity index 100% rename from drama/templates/errors/default.html rename to files/templates/errors/default.html diff --git a/drama/templates/errors/nsfw.html b/files/templates/errors/nsfw.html similarity index 100% rename from drama/templates/errors/nsfw.html rename to files/templates/errors/nsfw.html diff --git a/drama/templates/errors/patron.html b/files/templates/errors/patron.html similarity index 100% rename from drama/templates/errors/patron.html rename to files/templates/errors/patron.html diff --git a/drama/templates/expanded_image_modal.html b/files/templates/expanded_image_modal.html similarity index 100% rename from drama/templates/expanded_image_modal.html rename to files/templates/expanded_image_modal.html diff --git a/drama/templates/flag_comment_modal.html b/files/templates/flag_comment_modal.html similarity index 100% rename from drama/templates/flag_comment_modal.html rename to files/templates/flag_comment_modal.html diff --git a/drama/templates/flag_post_modal.html b/files/templates/flag_post_modal.html similarity index 100% rename from drama/templates/flag_post_modal.html rename to files/templates/flag_post_modal.html diff --git a/drama/templates/followers.html b/files/templates/followers.html similarity index 100% rename from drama/templates/followers.html rename to files/templates/followers.html diff --git a/drama/templates/forgot_password.html b/files/templates/forgot_password.html similarity index 100% rename from drama/templates/forgot_password.html rename to files/templates/forgot_password.html diff --git a/drama/templates/formatting.html b/files/templates/formatting.html similarity index 100% rename from drama/templates/formatting.html rename to files/templates/formatting.html diff --git a/drama/templates/gif_modal.html b/files/templates/gif_modal.html similarity index 100% rename from drama/templates/gif_modal.html rename to files/templates/gif_modal.html diff --git a/drama/templates/header.html b/files/templates/header.html similarity index 93% rename from drama/templates/header.html rename to files/templates/header.html index 54c34b9a7..47c5dc4e1 100644 --- a/drama/templates/header.html +++ b/files/templates/header.html @@ -2,7 +2,7 @@
diff --git a/drama/templates/settings_profilecss.html b/files/templates/settings_profilecss.html similarity index 100% rename from drama/templates/settings_profilecss.html rename to files/templates/settings_profilecss.html diff --git a/drama/templates/settings_security.html b/files/templates/settings_security.html similarity index 100% rename from drama/templates/settings_security.html rename to files/templates/settings_security.html diff --git a/drama/templates/sign_up.html b/files/templates/sign_up.html similarity index 96% rename from drama/templates/sign_up.html rename to files/templates/sign_up.html index 21a67faf8..d40c8c306 100644 --- a/drama/templates/sign_up.html +++ b/files/templates/sign_up.html @@ -33,11 +33,11 @@ var id = document.getElementById("usernameHelpRegister"); var successID = document.getElementById("usernameHelpSuccess"); - var dramaAPI = '/is_available/' + charCount; + var API = '/is_available/' + charCount; if (charCount.length >= 3) { - $.getJSON(dramaAPI, function(result) { + $.getJSON(API, function(result) { $.each(result, function(i, field) { if (field == false) { id.innerHTML = 'Username already taken :('; @@ -74,13 +74,13 @@ - + - + - + diff --git a/drama/templates/sign_up_failed_ref.html b/files/templates/sign_up_failed_ref.html similarity index 94% rename from drama/templates/sign_up_failed_ref.html rename to files/templates/sign_up_failed_ref.html index 088cbc54f..30ed96098 100644 --- a/drama/templates/sign_up_failed_ref.html +++ b/files/templates/sign_up_failed_ref.html @@ -14,18 +14,18 @@ - + - + - + - {% if ref_user %}{{ref_user.username}} invites you to {{"SITE_NAME" | app_config}}{% else %}{{"SITE_NAME" | app_config}}: the open, free-speech social platform{% endif %} + {% if ref_user %}{{ref_user.username}} invites you to {{"SITE_NAME" | app_config}}{% else %}{{"SITE_NAME" | app_config}}{% endif %} @@ -69,7 +69,7 @@
diff --git a/drama/templates/submission.html b/files/templates/submission.html similarity index 99% rename from drama/templates/submission.html rename to files/templates/submission.html index d2722539a..a53406c59 100644 --- a/drama/templates/submission.html +++ b/files/templates/submission.html @@ -40,7 +40,7 @@ - + @@ -66,7 +66,7 @@ - + @@ -267,13 +267,13 @@ {{p.realbody(v) | safe}} {% if p.domain == "twitter.com" and (v and v.theme.split("_")[0] in ["light", "coffee", "4chan"]) %} - {% include "site_embeds/twitterlight.html" %} + {% include "embeds/twitterlight.html" %} {% elif "twitter.com" in p.domain %} - {% include "site_embeds/twitter.html" %} + {% include "embeds/twitter.html" %} {% elif "youtu" in p.domain %} - {% include "site_embeds/youtube.html" %} + {% include "embeds/youtube.html" %} {% elif "instagram.com" in p.domain %} - {% include "site_embeds/instagram.html" %} + {% include "embeds/instagram.html" %} {% endif %}
@@ -566,7 +566,7 @@
Jump in the discussion.
-

Become a dramatard, no email address required.

+

No email address required.

Sign up Sign in diff --git a/drama/templates/submission_banned.html b/files/templates/submission_banned.html similarity index 100% rename from drama/templates/submission_banned.html rename to files/templates/submission_banned.html diff --git a/drama/templates/submission_listing.html b/files/templates/submission_listing.html similarity index 100% rename from drama/templates/submission_listing.html rename to files/templates/submission_listing.html diff --git a/drama/templates/submit.html b/files/templates/submit.html similarity index 100% rename from drama/templates/submit.html rename to files/templates/submit.html diff --git a/drama/templates/user_listing.html b/files/templates/user_listing.html similarity index 100% rename from drama/templates/user_listing.html rename to files/templates/user_listing.html diff --git a/drama/templates/userpage.html b/files/templates/userpage.html similarity index 94% rename from drama/templates/userpage.html rename to files/templates/userpage.html index 0bd3b77d5..e1fd4fdf2 100644 --- a/drama/templates/userpage.html +++ b/files/templates/userpage.html @@ -25,7 +25,7 @@ -=1 and not u.is_private and not u.is_nofollow %}{{u.stored_subscriber_count}} Followers - {% endif %}{% if not u.is_private %}{{u.post_count}} Posts - {{u.comment_count}} Comments - {% endif %}{{u.bio}}" /> +=1 and not u.is_private and not u.is_nofollow %}{{u.stored_subscriber_count}} Followers - {% endif %}{% if not u.is_private %}{{u.post_count}} Posts - {{u.comment_count}} Comments - {% endif %}{{u.bio}}" /> @@ -33,10 +33,10 @@ - + -=1 and not u.is_private and not u.is_nofollow %}{{u.stored_subscriber_count}} Followers -{% endif %} {% if not u.is_private %} {{u.post_count}} Posts - {{u.comment_count}} Comments -{% endif %} {{u.bio}}" /> +=1 and not u.is_private and not u.is_nofollow %}{{u.stored_subscriber_count}} Followers -{% endif %} {% if not u.is_private %} {{u.post_count}} Posts - {{u.comment_count}} Comments -{% endif %} {{u.bio}}" /> {% endblock %} @@ -119,7 +119,7 @@ {% if u.customtitle %}

{{u.customtitle | safe}}

{% endif %}
- {{u.dramacoins}} {{"SITE_NAME" | app_config}}coins   {% if u.stored_subscriber_count >=1 and not u.is_nofollow %}{{u.stored_subscriber_count}} follower{{'s' if u.stored_subscriber_count != 1 else ''}}   {% endif %}joined {{u.created_date}} + {{u.coins}} {{"SITE_NAME" | app_config}}coins   {% if u.stored_subscriber_count >=1 and not u.is_nofollow %}{{u.stored_subscriber_count}} follower{{'s' if u.stored_subscriber_count != 1 else ''}}   {% endif %}joined {{u.created_date}}
{% if u.bio_html %}

@@ -306,7 +306,7 @@
 				{% endif %}
 				{% if u.customtitle %}

{{u.customtitle | safe}}

{% endif %}
- {{u.dramacoins}} {{"SITE_NAME" | app_config}}coins  {% if u.stored_subscriber_count >=1 and not u.is_nofollow %}{{u.stored_subscriber_count}} follower{{'s' if u.stored_subscriber_count != 1 else ''}}   {% endif %}
joined {{u.created_date}} + {{u.coins}} {{"SITE_NAME" | app_config}}coins  {% if u.stored_subscriber_count >=1 and not u.is_nofollow %}{{u.stored_subscriber_count}} follower{{'s' if u.stored_subscriber_count != 1 else ''}}   {% endif %}
joined {{u.created_date}}
{% if u.bio_html %}

{{u.bio_html | safe}}

@@ -360,7 +360,7 @@    
- +
    diff --git a/drama/templates/userpage_blocked.html b/files/templates/userpage_blocked.html similarity index 100% rename from drama/templates/userpage_blocked.html rename to files/templates/userpage_blocked.html diff --git a/drama/templates/userpage_blocking.html b/files/templates/userpage_blocking.html similarity index 100% rename from drama/templates/userpage_blocking.html rename to files/templates/userpage_blocking.html diff --git a/drama/templates/userpage_comments.html b/files/templates/userpage_comments.html similarity index 100% rename from drama/templates/userpage_comments.html rename to files/templates/userpage_comments.html diff --git a/drama/templates/userpage_private.html b/files/templates/userpage_private.html similarity index 86% rename from drama/templates/userpage_private.html rename to files/templates/userpage_private.html index 49992e0ee..6988b9252 100644 --- a/drama/templates/userpage_private.html +++ b/files/templates/userpage_private.html @@ -11,7 +11,7 @@

This account is private

This user has enabled private mode to cloak their posting history.

- +
diff --git a/drama/templates/userpage_reserved.html b/files/templates/userpage_reserved.html similarity index 100% rename from drama/templates/userpage_reserved.html rename to files/templates/userpage_reserved.html diff --git a/drama/templates/viewers.html b/files/templates/viewers.html similarity index 100% rename from drama/templates/viewers.html rename to files/templates/viewers.html diff --git a/drama/templates/votes.html b/files/templates/votes.html similarity index 98% rename from drama/templates/votes.html rename to files/templates/votes.html index 1c070e5e7..0ee395703 100644 --- a/drama/templates/votes.html +++ b/files/templates/votes.html @@ -19,7 +19,7 @@

Info

{{thing.permalink}}

Author: @{{thing.author.username}}

-

Author Created At: {{thing.author.created_utc}} ({{thing.author.created_datetime}} UTC)

+

Author Created At: {{thing.author.created_utc}} ({{thing.author.created_datetime}})

Upvotes:{{ups | length}}

Downvotes:{{downs | length}}

diff --git a/image.png b/image.png deleted file mode 100644 index 1b9837ed0..000000000 Binary files a/image.png and /dev/null differ diff --git a/push.sh b/push.sh index b2b89d1bd..25c9cfdf0 100644 --- a/push.sh +++ b/push.sh @@ -4,12 +4,12 @@ git commit -m "sneed" git push apt install ruby-sass -sass ./drama/assets/style/midnight.scss ./drama/assets/style/midnight_ff66ac.css -sass ./drama/assets/style/dark.scss ./drama/assets/style/dark_ff66ac.css -sass ./drama/assets/style/light.scss ./drama/assets/style/light_ff66ac.css -sass ./drama/assets/style/coffee.scss ./drama/assets/style/coffee_ff66ac.css -sass ./drama/assets/style/tron.scss ./drama/assets/style/tron_ff66ac.css -sass ./drama/assets/style/4chan.scss ./drama/assets/style/4chan_ff66ac.css +sass ./files/assets/style/midnight.scss ./files/assets/style/midnight_ff66ac.css +sass ./files/assets/style/dark.scss ./files/assets/style/dark_ff66ac.css +sass ./files/assets/style/light.scss ./files/assets/style/light_ff66ac.css +sass ./files/assets/style/coffee.scss ./files/assets/style/coffee_ff66ac.css +sass ./files/assets/style/tron.scss ./files/assets/style/tron_ff66ac.css +sass ./files/assets/style/4chan.scss ./files/assets/style/4chan_ff66ac.css python ./compilecss.py python3 ./compilecss.py git add . diff --git a/schema.sql b/schema.sql index 48bcc63e0..0c6a92dab 100644 --- a/schema.sql +++ b/schema.sql @@ -168,7 +168,7 @@ CREATE TABLE public.users ( oldreddit boolean, css text, profilecss text, - dramacoins integer, + coins integer, agendaposter boolean, agendaposter_expires_utc integer DEFAULT 0, resized boolean, diff --git a/supervisord.conf b/supervisord.conf index e64eb1211..755158107 100644 --- a/supervisord.conf +++ b/supervisord.conf @@ -3,9 +3,9 @@ nodaemon=true pidfile=/tmp/supervisord.pid logfile=/tmp/supervisord.log -[program:dramaservice] -directory=/drama/service -command=gunicorn drama.__main__:app -k gevent -w 5 --max-requests 10000 --max-requests-jitter 500 --reload --bind 0.0.0.0:80 +[program:service] +directory=/service +command=gunicorn files.__main__:app -k gevent -w 5 --max-requests 10000 --max-requests-jitter 500 --reload --bind 0.0.0.0:80 stdout_logfile=/dev/stdout stdout_logfile_maxbytes=0 stderr_logfile=/dev/stderr