]> git.laktatnebel.de Git - athletik.triathlon-coaching.com.git/commit
Deepseek-Entwurf implementiert: master
authorOle B. Rosentreter <ole@laktatnebel.de>
Thu, 11 Sep 2025 21:03:18 +0000 (23:03 +0200)
committerOle B. Rosentreter <ole@laktatnebel.de>
Thu, 11 Sep 2025 21:03:18 +0000 (23:03 +0200)
commit3a7520ef11e6c0fcef71be32c36fb5faaf2bf79d
tree8cd461857ffc61919069858e7ea883b49d4b5cff
parent091ee7a7c7c5d14019fe776aba3cd19d1e37df31
Deepseek-Entwurf implementiert:

https://chat.deepseek.com/a/chat/s/6dd814bc-36bb-4711-afea-e6df04cdc271

https://ticket.laktatnebel.de/issue.php?issuedetail=170
86 files changed:
athletik-db/pom.xml
athletik-db/sql/data.sql [new file with mode: 0644]
athletik-db/sql/schema.sql
athletik-service/pom.xml [new file with mode: 0644]
athletik-service/src/main/java/com/triathlon_coaching/product/athletik/backend/AthletikBackendApplication.java [new file with mode: 0644]
athletik-service/src/main/java/com/triathlon_coaching/product/athletik/backend/config/SecurityConfig.java [new file with mode: 0644]
athletik-service/src/main/java/com/triathlon_coaching/product/athletik/backend/contoller/AthletController.java [new file with mode: 0644]
athletik-service/src/main/java/com/triathlon_coaching/product/athletik/backend/contoller/AuthController.java [new file with mode: 0644]
athletik-service/src/main/java/com/triathlon_coaching/product/athletik/backend/contoller/ExerciseController.java [new file with mode: 0644]
athletik-service/src/main/java/com/triathlon_coaching/product/athletik/backend/contoller/GoalController.java [new file with mode: 0644]
athletik-service/src/main/java/com/triathlon_coaching/product/athletik/backend/contoller/GymController.java [new file with mode: 0644]
athletik-service/src/main/java/com/triathlon_coaching/product/athletik/backend/contoller/LogController.java [new file with mode: 0644]
athletik-service/src/main/java/com/triathlon_coaching/product/athletik/backend/contoller/MuscleController.java [new file with mode: 0644]
athletik-service/src/main/java/com/triathlon_coaching/product/athletik/backend/contoller/ProtokollController.java [new file with mode: 0644]
athletik-service/src/main/java/com/triathlon_coaching/product/athletik/backend/contoller/ToolController.java [new file with mode: 0644]
athletik-service/src/main/java/com/triathlon_coaching/product/athletik/backend/contoller/TrainingController.java [new file with mode: 0644]
athletik-service/src/main/java/com/triathlon_coaching/product/athletik/backend/model/Athlet.java [new file with mode: 0644]
athletik-service/src/main/java/com/triathlon_coaching/product/athletik/backend/model/Exercise.java [new file with mode: 0644]
athletik-service/src/main/java/com/triathlon_coaching/product/athletik/backend/model/Goal.java [new file with mode: 0644]
athletik-service/src/main/java/com/triathlon_coaching/product/athletik/backend/model/Gym.java [new file with mode: 0644]
athletik-service/src/main/java/com/triathlon_coaching/product/athletik/backend/model/Log.java [new file with mode: 0644]
athletik-service/src/main/java/com/triathlon_coaching/product/athletik/backend/model/Muscle.java [new file with mode: 0644]
athletik-service/src/main/java/com/triathlon_coaching/product/athletik/backend/model/Protokoll.java [new file with mode: 0644]
athletik-service/src/main/java/com/triathlon_coaching/product/athletik/backend/model/Tool.java [new file with mode: 0644]
athletik-service/src/main/java/com/triathlon_coaching/product/athletik/backend/model/Training.java [new file with mode: 0644]
athletik-service/src/main/java/com/triathlon_coaching/product/athletik/backend/model/ViewAllExercises.java [new file with mode: 0644]
athletik-service/src/main/java/com/triathlon_coaching/product/athletik/backend/model/ViewMusclegroups.java [new file with mode: 0644]
athletik-service/src/main/java/com/triathlon_coaching/product/athletik/backend/model/ViewMuscles.java [new file with mode: 0644]
athletik-service/src/main/java/com/triathlon_coaching/product/athletik/backend/model/ViewProtokollSetsOfToday.java [new file with mode: 0644]
athletik-service/src/main/java/com/triathlon_coaching/product/athletik/backend/model/ViewTools.java [new file with mode: 0644]
athletik-service/src/main/java/com/triathlon_coaching/product/athletik/backend/model/ViewToolweights.java [new file with mode: 0644]
athletik-service/src/main/java/com/triathlon_coaching/product/athletik/backend/model/ViewUsers.java [new file with mode: 0644]
athletik-service/src/main/java/com/triathlon_coaching/product/athletik/backend/repo/AthletRepository.java [new file with mode: 0644]
athletik-service/src/main/java/com/triathlon_coaching/product/athletik/backend/repo/ExerciseRepository.java [new file with mode: 0644]
athletik-service/src/main/java/com/triathlon_coaching/product/athletik/backend/repo/GoalRepository.java [new file with mode: 0644]
athletik-service/src/main/java/com/triathlon_coaching/product/athletik/backend/repo/GymRepository.java [new file with mode: 0644]
athletik-service/src/main/java/com/triathlon_coaching/product/athletik/backend/repo/LogRepository.java [new file with mode: 0644]
athletik-service/src/main/java/com/triathlon_coaching/product/athletik/backend/repo/MuscleRepository.java [new file with mode: 0644]
athletik-service/src/main/java/com/triathlon_coaching/product/athletik/backend/repo/ProtokollRepository.java [new file with mode: 0644]
athletik-service/src/main/java/com/triathlon_coaching/product/athletik/backend/repo/ToolRepository.java [new file with mode: 0644]
athletik-service/src/main/java/com/triathlon_coaching/product/athletik/backend/repo/TrainingRepository.java [new file with mode: 0644]
athletik-service/src/main/java/com/triathlon_coaching/product/athletik/backend/service/AthletService.java [new file with mode: 0644]
athletik-service/src/main/java/com/triathlon_coaching/product/athletik/backend/service/EmailService.java [new file with mode: 0644]
athletik-service/src/main/java/com/triathlon_coaching/product/athletik/backend/service/ExerciseService.java [new file with mode: 0644]
athletik-service/src/main/java/com/triathlon_coaching/product/athletik/backend/service/GoalService.java [new file with mode: 0644]
athletik-service/src/main/java/com/triathlon_coaching/product/athletik/backend/service/GymService.java [new file with mode: 0644]
athletik-service/src/main/java/com/triathlon_coaching/product/athletik/backend/service/LogService.java [new file with mode: 0644]
athletik-service/src/main/java/com/triathlon_coaching/product/athletik/backend/service/MuscleService.java [new file with mode: 0644]
athletik-service/src/main/java/com/triathlon_coaching/product/athletik/backend/service/ProtokollService.java [new file with mode: 0644]
athletik-service/src/main/java/com/triathlon_coaching/product/athletik/backend/service/ToolService.java [new file with mode: 0644]
athletik-service/src/main/java/com/triathlon_coaching/product/athletik/backend/service/TrainingService.java [new file with mode: 0644]
athletik-service/src/main/java/com/triathlon_coaching/product/athletik/backend/util/AthletikConstants.java [new file with mode: 0644]
athletik-service/src/main/resources/application.yaml [new file with mode: 0644]
athletik-service/src/main/webapp/training-summary.html [new file with mode: 0644]
athletik-web/pom.xml
athletik-web/src/athletik_glob_vars.php [new file with mode: 0644]
athletik-web/src/roadtokona_glob_vars.php [deleted file]
athletik-web/src/webui/img/Big_Ben_London_closeup.jpg [new file with mode: 0644]
athletik-web/src/webui/img/Reichstag_Berlin.jpg [new file with mode: 0644]
athletik-web/src/webui/js/athletik.js [new file with mode: 0644]
athletik-web/src/webui/lib/database_functions.php [new file with mode: 0644]
athletik-web/src/webui/lib/db/database_functions_insert.php [new file with mode: 0644]
athletik-web/src/webui/lib/db/database_functions_pgsql.php [new file with mode: 0644]
athletik-web/src/webui/lib/db/database_functions_select.php [new file with mode: 0644]
athletik-web/src/webui/lib/gui/gui_functions_button.php [new file with mode: 0644]
athletik-web/src/webui/lib/gui/gui_functions_input.php [new file with mode: 0644]
athletik-web/src/webui/lib/gui/gui_functions_select.php [new file with mode: 0644]
athletik-web/src/webui/lib/gui_functions.php [new file with mode: 0644]
athletik-web/src/webui/lib/session/session_functions.php [new file with mode: 0644]
athletik-web/src/webui/lib/session_functions.php [new file with mode: 0644]
athletik-web/src/webui/lib/util/util_functions.php [new file with mode: 0644]
athletik-web/src/webui/lib/util_functions.php [new file with mode: 0644]
athletik-web/src/webui/save-data.php [new file with mode: 0644]
athletik-web/src/webui/stylesheet/athletik.css [new file with mode: 0644]
athletik-web/src/webui/training.php [new file with mode: 0644]
athletik-web/src/webui/training_lasse.html [new file with mode: 0644]
athletik-webapp/AthletikWebApplication.java [new file with mode: 0644]
athletik-webapp/pom.xml [new file with mode: 0644]
athletik-webapp/src/main/webapp/img/Big_Ben_London_closeup.jpg [new file with mode: 0644]
athletik-webapp/src/main/webapp/img/Reichstag_Berlin.jpg [new file with mode: 0644]
athletik-webapp/src/main/webapp/index.html [new file with mode: 0644]
athletik-webapp/src/main/webapp/js/athletik.js [new file with mode: 0644]
athletik-webapp/src/main/webapp/login.html [new file with mode: 0644]
athletik-webapp/src/main/webapp/stylesheet/athletik.css [new file with mode: 0644]
athletik-webapp/src/main/webapp/training.html [new file with mode: 0644]
pom.xml