home · contact · privacy
Adapt to packaging/installation pattern established with ytplom.
authorChristian Heller <c.heller@plomlompom.de>
Sat, 8 Feb 2025 19:32:41 +0000 (20:32 +0100)
committerChristian Heller <c.heller@plomlompom.de>
Sat, 8 Feb 2025 19:32:41 +0000 (20:32 +0100)
commit4ef493064365f7a4bfc84edc4c69f9c91b390a66
tree1d68e8cccc046490b9067f3728fa3fc864f5ff5f
parent56ac25827e5ee9dbda592e0c8d843bf6cee7b7e4
Adapt to packaging/installation pattern established with ytplom.
100 files changed:
.gitmodules
.pylintrc [deleted file]
install.sh [new file with mode: 0755]
migrations/0_init.sql [deleted file]
migrations/1_add_Todo_comment.sql [deleted file]
migrations/2_add_Todo_effort.sql [deleted file]
migrations/3_add_Todo_and_Process_calendarize.sql [deleted file]
migrations/4_create_Process_blockers_Todo_blockers.sql [deleted file]
migrations/5_create_process_step_suppressions.sql [deleted file]
migrations/6_add_Day_days_since_millennium.sql [deleted file]
migrations/7_redo_Day_id.sql [deleted file]
migrations/init_7.sql [deleted file]
plomlib [deleted submodule]
plomtask/__init__.py [deleted file]
plomtask/conditions.py [deleted file]
plomtask/dating.py [deleted file]
plomtask/days.py [deleted file]
plomtask/db.py [deleted file]
plomtask/exceptions.py [deleted file]
plomtask/http.py [deleted file]
plomtask/misc.py [deleted file]
plomtask/processes.py [deleted file]
plomtask/todos.py [deleted file]
plomtask/versioned_attributes.py [deleted file]
requirements.txt [deleted file]
run.py [deleted file]
scripts/pre-commit
src/.pylintrc [new file with mode: 0644]
src/migrations/0_init.sql [new file with mode: 0644]
src/migrations/1_add_Todo_comment.sql [new file with mode: 0644]
src/migrations/2_add_Todo_effort.sql [new file with mode: 0644]
src/migrations/3_add_Todo_and_Process_calendarize.sql [new file with mode: 0644]
src/migrations/4_create_Process_blockers_Todo_blockers.sql [new file with mode: 0644]
src/migrations/5_create_process_step_suppressions.sql [new file with mode: 0644]
src/migrations/6_add_Day_days_since_millennium.sql [new file with mode: 0644]
src/migrations/7_redo_Day_id.sql [new file with mode: 0644]
src/migrations/init_7.sql [new file with mode: 0644]
src/plomlib [new submodule]
src/plomtask/__init__.py [new file with mode: 0644]
src/plomtask/conditions.py [new file with mode: 0644]
src/plomtask/dating.py [new file with mode: 0644]
src/plomtask/days.py [new file with mode: 0644]
src/plomtask/db.py [new file with mode: 0644]
src/plomtask/exceptions.py [new file with mode: 0644]
src/plomtask/http.py [new file with mode: 0644]
src/plomtask/misc.py [new file with mode: 0644]
src/plomtask/processes.py [new file with mode: 0644]
src/plomtask/todos.py [new file with mode: 0644]
src/plomtask/versioned_attributes.py [new file with mode: 0644]
src/requirements.txt [new file with mode: 0644]
src/run.py [new file with mode: 0755]
src/templates/_base.html [new file with mode: 0644]
src/templates/_macros.html [new file with mode: 0644]
src/templates/calendar.html [new file with mode: 0644]
src/templates/calendar_txt.html [new file with mode: 0644]
src/templates/condition.html [new file with mode: 0644]
src/templates/condition_descriptions.html [new file with mode: 0644]
src/templates/condition_titles.html [new file with mode: 0644]
src/templates/conditions.html [new file with mode: 0644]
src/templates/day.html [new file with mode: 0644]
src/templates/msg.html [new file with mode: 0644]
src/templates/process.html [new file with mode: 0644]
src/templates/process_descriptions.html [new file with mode: 0644]
src/templates/process_efforts.html [new file with mode: 0644]
src/templates/process_titles.html [new file with mode: 0644]
src/templates/processes.html [new file with mode: 0644]
src/templates/todo.html [new file with mode: 0644]
src/templates/todos.html [new file with mode: 0644]
src/tests/__init__.py [new file with mode: 0644]
src/tests/conditions.py [new file with mode: 0644]
src/tests/days.py [new file with mode: 0644]
src/tests/misc.py [new file with mode: 0644]
src/tests/processes.py [new file with mode: 0644]
src/tests/todos.py [new file with mode: 0644]
src/tests/utils.py [new file with mode: 0644]
taskplom [new file with mode: 0755]
templates/_base.html [deleted file]
templates/_macros.html [deleted file]
templates/calendar.html [deleted file]
templates/calendar_txt.html [deleted file]
templates/condition.html [deleted file]
templates/condition_descriptions.html [deleted file]
templates/condition_titles.html [deleted file]
templates/conditions.html [deleted file]
templates/day.html [deleted file]
templates/msg.html [deleted file]
templates/process.html [deleted file]
templates/process_descriptions.html [deleted file]
templates/process_efforts.html [deleted file]
templates/process_titles.html [deleted file]
templates/processes.html [deleted file]
templates/todo.html [deleted file]
templates/todos.html [deleted file]
tests/__init__.py [deleted file]
tests/conditions.py [deleted file]
tests/days.py [deleted file]
tests/misc.py [deleted file]
tests/processes.py [deleted file]
tests/todos.py [deleted file]
tests/utils.py [deleted file]