From d7c908a0335cac86e3465e330c4d86093895612e Mon Sep 17 00:00:00 2001 From: Howland Owl Date: Thu, 9 Apr 2020 14:12:24 +0300 Subject: [PATCH] Add .gitignore; move old javascript editor thing out of the way - prepare for python editor --- .gitignore | 179 ++++++++++++++++++ {editor => editor-old-js}/jquery-2.1.0.min.js | 0 .../jquery-ui-dot-luv.css | 0 {editor => editor-old-js}/jquery-ui.min.js | 0 {editor => editor-old-js}/sahliedit.css | 0 {editor => editor-old-js}/sahliedit.js | 0 {editor => editor-old-js}/sahliedit.litcoffee | 0 {editor => editor-old-js}/sahlieditor.html | 0 8 files changed, 179 insertions(+) create mode 100644 .gitignore rename {editor => editor-old-js}/jquery-2.1.0.min.js (100%) rename {editor => editor-old-js}/jquery-ui-dot-luv.css (100%) rename {editor => editor-old-js}/jquery-ui.min.js (100%) rename {editor => editor-old-js}/sahliedit.css (100%) rename {editor => editor-old-js}/sahliedit.js (100%) rename {editor => editor-old-js}/sahliedit.litcoffee (100%) rename {editor => editor-old-js}/sahlieditor.html (100%) diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..277afac --- /dev/null +++ b/.gitignore @@ -0,0 +1,179 @@ +# Created by https://www.gitignore.io/api/git,emacs,python,coffeescript +# Edit at https://www.gitignore.io/?templates=git,emacs,python,coffeescript + +### CoffeeScript ### +*.js + +### Emacs ### +# -*- mode: gitignore; -*- +*~ +\#*\# +/.emacs.desktop +/.emacs.desktop.lock +*.elc +auto-save-list +tramp +.\#* + +# Org-mode +.org-id-locations +*_archive + +# flymake-mode +*_flymake.* + +# eshell files +/eshell/history +/eshell/lastdir + +# elpa packages +/elpa/ + +# reftex files +*.rel + +# AUCTeX auto folder +/auto/ + +# cask packages +.cask/ +dist/ + +# Flycheck +flycheck_*.el + +# server auth directory +/server/ + +# projectiles files +.projectile + +# directory configuration +.dir-locals.el + +# network security +/network-security.data + + +### Git ### +# Created by git for backups. To disable backups in Git: +# $ git config --global mergetool.keepBackup false +*.orig + +# Created by git when using merge tools for conflicts +*.BACKUP.* +*.BASE.* +*.LOCAL.* +*.REMOTE.* +*_BACKUP_*.txt +*_BASE_*.txt +*_LOCAL_*.txt +*_REMOTE_*.txt + +### Python ### +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] +*$py.class + +# C extensions +*.so + +# Distribution / packaging +.Python +build/ +develop-eggs/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +pip-wheel-metadata/ +share/python-wheels/ +*.egg-info/ +.installed.cfg +*.egg +MANIFEST + +# PyInstaller +# Usually these files are written by a python script from a template +# before PyInstaller builds the exe, so as to inject date/other infos into it. +*.manifest +*.spec + +# Installer logs +pip-log.txt +pip-delete-this-directory.txt + +# Unit test / coverage reports +htmlcov/ +.tox/ +.nox/ +.coverage +.coverage.* +.cache +nosetests.xml +coverage.xml +*.cover +.hypothesis/ +.pytest_cache/ + +# Translations +*.mo +*.pot + +# Scrapy stuff: +.scrapy + +# Sphinx documentation +docs/_build/ + +# PyBuilder +target/ + +# pyenv +.python-version + +# pipenv +# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. +# However, in case of collaboration, if having platform-specific dependencies or dependencies +# having no cross-platform support, pipenv may install dependencies that don't work, or not +# install all needed dependencies. +#Pipfile.lock + +# celery beat schedule file +celerybeat-schedule + +# SageMath parsed files +*.sage.py + +# Spyder project settings +.spyderproject +.spyproject + +# Rope project settings +.ropeproject + +# Mr Developer +.mr.developer.cfg +.project +.pydevproject + +# mkdocs documentation +/site + +# mypy +.mypy_cache/ +.dmypy.json +dmypy.json + +# Pyre type checker +.pyre/ + +#project settings +sahli-venv/* +*.wp* diff --git a/editor/jquery-2.1.0.min.js b/editor-old-js/jquery-2.1.0.min.js similarity index 100% rename from editor/jquery-2.1.0.min.js rename to editor-old-js/jquery-2.1.0.min.js diff --git a/editor/jquery-ui-dot-luv.css b/editor-old-js/jquery-ui-dot-luv.css similarity index 100% rename from editor/jquery-ui-dot-luv.css rename to editor-old-js/jquery-ui-dot-luv.css diff --git a/editor/jquery-ui.min.js b/editor-old-js/jquery-ui.min.js similarity index 100% rename from editor/jquery-ui.min.js rename to editor-old-js/jquery-ui.min.js diff --git a/editor/sahliedit.css b/editor-old-js/sahliedit.css similarity index 100% rename from editor/sahliedit.css rename to editor-old-js/sahliedit.css diff --git a/editor/sahliedit.js b/editor-old-js/sahliedit.js similarity index 100% rename from editor/sahliedit.js rename to editor-old-js/sahliedit.js diff --git a/editor/sahliedit.litcoffee b/editor-old-js/sahliedit.litcoffee similarity index 100% rename from editor/sahliedit.litcoffee rename to editor-old-js/sahliedit.litcoffee diff --git a/editor/sahlieditor.html b/editor-old-js/sahlieditor.html similarity index 100% rename from editor/sahlieditor.html rename to editor-old-js/sahlieditor.html