From db895a609128e847eb059e4fde08ff919ed2e466 Mon Sep 17 00:00:00 2001 From: Bartha Maxime <231026@umons.ac.be> Date: Sat, 23 Mar 2024 14:38:26 +0100 Subject: [PATCH 01/66] added temporary fix to docker issue --- backend/build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/build.gradle.kts b/backend/build.gradle.kts index b7cabcd..b0bf79b 100644 --- a/backend/build.gradle.kts +++ b/backend/build.gradle.kts @@ -25,7 +25,7 @@ dependencies { implementation("com.kohlschutter.junixsocket:junixsocket-core:2.9.0") // implementation("org.springframework.session:spring-session-jdbc") developmentOnly("org.springframework.boot:spring-boot-devtools") - developmentOnly("org.springframework.boot:spring-boot-docker-compose") + // developmentOnly("org.springframework.boot:spring-boot-docker-compose") runtimeOnly("org.postgresql:postgresql") testImplementation("org.springframework.boot:spring-boot-starter-test") testImplementation("org.springframework.boot:spring-boot-testcontainers") From 47c5c1486293fad9ae81419fbd4467ce6c968807 Mon Sep 17 00:00:00 2001 From: Anthony Debucquoy Date: Fri, 22 Mar 2024 13:54:30 +0100 Subject: [PATCH 02/66] Make app use full space --- frontend/src/App.vue | 9 +++++---- frontend/src/assets/main.css | 7 +++++++ 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/frontend/src/App.vue b/frontend/src/App.vue index 7d79e82..d5d55a4 100644 --- a/frontend/src/App.vue +++ b/frontend/src/App.vue @@ -86,12 +86,9 @@ window.addEventListener('hashchange', () => {
-
- - + -
@@ -99,6 +96,8 @@ window.addEventListener('hashchange', () => { From 2805fede4bb1307be2a69b9f973826e2cdcf285f Mon Sep 17 00:00:00 2001 From: Bartha Maxime <231026@umons.ac.be> Date: Fri, 29 Mar 2024 15:32:08 +0100 Subject: [PATCH 06/66] researcher profile page separations --- frontend/src/Apps/ResearcherProfile.vue | 109 ++++++++++++++++++++++++ frontend/src/rest/apps.js | 2 + 2 files changed, 111 insertions(+) create mode 100644 frontend/src/Apps/ResearcherProfile.vue diff --git a/frontend/src/Apps/ResearcherProfile.vue b/frontend/src/Apps/ResearcherProfile.vue new file mode 100644 index 0000000..da2a72e --- /dev/null +++ b/frontend/src/Apps/ResearcherProfile.vue @@ -0,0 +1,109 @@ + + + + + \ No newline at end of file diff --git a/frontend/src/rest/apps.js b/frontend/src/rest/apps.js index 99cbc10..491d20e 100644 --- a/frontend/src/rest/apps.js +++ b/frontend/src/rest/apps.js @@ -9,6 +9,7 @@ import Profil from "@/Apps/Profil.vue" import Courses from "@/Apps/ManageCourses.vue" import Users from "@/Apps/UsersList.vue" import Students from "@/Apps/StudentsList.vue" +import ResearcherProfile from "@/Apps/ResearcherProfile.vue"; const apps = { '/login': LoginPage, @@ -17,6 +18,7 @@ const apps = { '/manage-courses' : Courses, '/users-list' : Users, '/students-list' : Students, + '/researcher-profile' : ResearcherProfile, } const appsList = { From c1b2742a8f680c5aeb845e1d32dc7d7f283a2ad4 Mon Sep 17 00:00:00 2001 From: Bartha Maxime <231026@umons.ac.be> Date: Sat, 30 Mar 2024 12:23:56 +0100 Subject: [PATCH 07/66] better select buttons --- frontend/src/Apps/ResearcherProfile.vue | 21 +++++++++++++++++++-- 1 file changed, 19 insertions(+), 2 deletions(-) diff --git a/frontend/src/Apps/ResearcherProfile.vue b/frontend/src/Apps/ResearcherProfile.vue index da2a72e..3ef306a 100644 --- a/frontend/src/Apps/ResearcherProfile.vue +++ b/frontend/src/Apps/ResearcherProfile.vue @@ -1,5 +1,7 @@