diff --git a/.gitignore b/.gitignore index 823d175eb670..b2590d9672c5 100644 --- a/.gitignore +++ b/.gitignore @@ -10,6 +10,7 @@ lib/* *.csv config.json src/test/data/sandbox/ +src/test/data/XmlAddressBookStorageTest/ preferences.json .DS_Store ./screenshot*.png diff --git a/README.adoc b/README.adoc index 03eff3a4d191..d9c7ee2a8047 100644 --- a/README.adoc +++ b/README.adoc @@ -1,9 +1,9 @@ -= Address Book (Level 4) += reInsurance ifdef::env-github,env-browser[:relfileprefix: docs/] -https://travis-ci.org/se-edu/addressbook-level4[image:https://travis-ci.org/se-edu/addressbook-level4.svg?branch=master[Build Status]] +https://travis-ci.org/CS2103JAN2018-T11-B3/main[image:https://travis-ci.org/CS2103JAN2018-T11-B3/main.svg?branch=master[Build Status]] https://ci.appveyor.com/project/damithc/addressbook-level4[image:https://ci.appveyor.com/api/projects/status/3boko2x2vr5cc3w2?svg=true[Build status]] -https://coveralls.io/github/se-edu/addressbook-level4?branch=master[image:https://coveralls.io/repos/github/se-edu/addressbook-level4/badge.svg?branch=master[Coverage Status]] +https://coveralls.io/github/CS2103JAN2018-T11-B3/main?branch=master[image:https://coveralls.io/repos/github/CS2103JAN2018-T11-B3/main/badge.svg?branch=master[Coverage Status]] https://www.codacy.com/app/damith/addressbook-level4?utm_source=github.com&utm_medium=referral&utm_content=se-edu/addressbook-level4&utm_campaign=Badge_Grade[image:https://api.codacy.com/project/badge/Grade/fc0b7775cf7f4fdeaf08776f3d8e364a[Codacy Badge]] https://gitter.im/se-edu/Lobby[image:https://badges.gitter.im/se-edu/Lobby.svg[Gitter chat]] @@ -11,23 +11,16 @@ ifdef::env-github[] image::docs/images/Ui.png[width="600"] endif::[] -ifndef::env-github[] -image::images/Ui.png[width="600"] -endif::[] - -* This is a desktop Address Book application. It has a GUI but most of the user interactions happen using a CLI (Command Line Interface). -* It is a Java sample application intended for students learning Software Engineering while using Java as the main programming language. -* It is *written in OOP fashion*. It provides a *reasonably well-written* code example that is *significantly bigger* (around 6 KLoC)than what students usually write in beginner-level SE modules. -* What's different from https://github.com/se-edu/addressbook-level3[level 3]: -** A more sophisticated GUI that includes a list panel and an in-built Browser. -** More test cases, including automated GUI testing. -** Support for _Build Automation_ using Gradle and for _Continuous Integration_ using Travis CI. +* With the increase in the number of insurance plans handle by a particular insurance agent, he/she will find that + managing client's data and profile are getting increasingly difficult, thus the need for reInsurance +* reInsurance is a desktop application that serves as an client tracking book for insurance agents to use to manage information about their clients. +* reInsurance provides revolutionary technology that not only aims to organize the clutter of the agent's address book +but also to simplify tedious tasks of calculating important information. == Site Map * <> * <> -* <> * <> * <> diff --git a/build.gradle b/build.gradle index 50cd2ae52efc..f12d47a70a95 100644 --- a/build.gradle +++ b/build.gradle @@ -46,6 +46,9 @@ dependencies { compile group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.7.0' compile group: 'com.fasterxml.jackson.datatype', name: 'jackson-datatype-jsr310', version: '2.7.4' compile group: 'com.google.guava', name: 'guava', version: '19.0' + compile group: 'com.google.api-client', name: 'google-api-client', version: '1.23.0' + compile group: 'com.google.oauth-client', name: 'google-oauth-client-jetty', version: '1.23.0' + compile group: 'com.google.apis', name: 'google-api-services-calendar', version: 'v3-rev304-1.23.0' testCompile group: 'junit', name: 'junit', version: '4.12' testCompile group: 'org.testfx', name: 'testfx-core', version: testFxVersion @@ -57,7 +60,7 @@ dependencies { } shadowJar { - archiveName = "addressbook.jar" + archiveName = "reInsurance.jar" destinationDir = file("${buildDir}/jar/") } diff --git a/collated/functional/Sebry9.md b/collated/functional/Sebry9.md new file mode 100644 index 000000000000..0e207717166d --- /dev/null +++ b/collated/functional/Sebry9.md @@ -0,0 +1,633 @@ +# Sebry9 +###### /resources/view/DarkTheme.css +``` css +#tags .yellow { + -fx-text-fill: black; + -fx-background-color: yellow; + } + +#tags .blue { + -fx-text-fill: white; + -fx-background-color: blue; + } + +#tags .red { + -fx-text-fill: black; + -fx-background-color: red; + } + +#tags .green { + -fx-text-fill: black; + -fx-background-color: green; + } + +#tags .orange { + -fx-text-fill: black; + -fx-background-color: orange; + } + +#tags .purple { + -fx-text-fill: white; + -fx-background-color: purple; + } + +#tags .grey { + -fx-text-fill: black; + -fx-background-color: grey; + } +``` +###### /resources/view/DarkTheme.css +``` css +#insurances { + -fx-hgap: 7; + -fx-vgap: 3; +} + +#insurances .label { + -fx-padding: 1 1 1 1; + -fx-border-radius: 2; + -fx-background-radius: 2; + -fx-font-size: 11; + -fx-text-fill: black; + -fx-background-color: green; +} +``` +###### /resources/view/PersonListCard.fxml +``` fxml + + + + +