From 0be83b242cf13718c419d9996226b147b6cbb437 Mon Sep 17 00:00:00 2001 From: damithc Date: Sat, 23 May 2020 01:10:16 +0800 Subject: [PATCH] Migrate to Jekyll, GitHub Actions This project uses AsciiDoc for doucmentation. The courses that use this project no longer needs section numbering and content inclusion features in documentation. That opens the door for going back to Markdown, which is more widely used and simpler. This project also uses Travis/AppVeyor for CI. With the recent release of GitHub Actions, there is no need to depend on external CI services. Let's do the following changes: * Migrate documentation from AsciiDoc to Markdown, and use Jekyll to generate the project website. The migration was done mostly by @j-lum, with minor cosmetic/content tweaks added by @damithc * Migrate to GitHub Actions (from Travis and AppVeyor). As a side-effect, we have to drop support for Coveralls, because the current Coveralls set up depends on Travis. We expect to bring back Coverall support in future. We decided to do both major changes at the same time in order to avoid some overlaps, and also snuck in some documentation tweaks because almost every documentation line is touched by the asciidoc to Markdown conversion anyway. --- .github/workflows/gradle.yml | 34 ++ .gitignore | 1 + .travis.yml | 24 -- README.adoc | 36 -- README.md | 14 + _config.yml | 1 - appveyor.yml | 18 - build.gradle | 100 +---- docs/AboutUs.adoc | 56 --- docs/AboutUs.md | 59 +++ docs/ContactUs.adoc | 7 - docs/DevOps.adoc | 48 --- docs/DevOps.md | 30 ++ docs/DeveloperGuide.adoc | 425 -------------------- docs/DeveloperGuide.md | 375 +++++++++++++++++ docs/Documentation.adoc | 123 ------ docs/Documentation.md | 72 ++++ docs/Gemfile | 9 + docs/Gemfile.lock | 251 ++++++++++++ docs/LearningOutcomes.adoc | 216 ---------- docs/SettingUp.adoc | 84 ---- docs/SettingUp.md | 84 ++++ docs/Testing.adoc | 52 --- docs/Testing.md | 36 ++ docs/UserGuide.adoc | 177 -------- docs/UserGuide.md | 178 ++++++++ docs/UsingAppVeyor.adoc | 94 ----- docs/UsingCheckstyle.adoc | 48 --- docs/UsingCheckstyle.md | 54 +++ docs/UsingCoveralls.adoc | 63 --- docs/UsingGradle.adoc | 99 ----- docs/UsingGradle.md | 72 ++++ docs/UsingNetlify.adoc | 59 --- docs/UsingNetlify.md | 51 +++ docs/UsingPlantUml.adoc | 211 ---------- docs/UsingPlantUml.md | 266 ++++++++++++ docs/UsingTravis.adoc | 140 ------- docs/_config.yml | 14 + docs/_data/projects.yml | 23 ++ docs/_includes/custom-head.html | 6 + docs/_includes/head.html | 10 + docs/_includes/header.html | 31 ++ docs/_layouts/alt-page.html | 14 + docs/_layouts/default.html | 18 + docs/_layouts/page.html | 14 + docs/_sass/minima/_base.scss | 272 +++++++++++++ docs/_sass/minima/_layout.scss | 263 ++++++++++++ docs/_sass/minima/custom-mixins.scss | 21 + docs/_sass/minima/custom-styles.scss | 34 ++ docs/_sass/minima/custom-variables.scss | 76 ++++ docs/_sass/minima/initialize.scss | 51 +++ docs/_sass/minima/skins/classic.scss | 84 ++++ docs/_sass/minima/skins/solarized-dark.scss | 4 + docs/_sass/minima/skins/solarized.scss | 133 ++++++ docs/assets/css/style.scss | 7 + docs/diagrams/ArchitectureDiagram.puml | 35 +- docs/diagrams/BetterModelClassDiagram.puml | 2 +- docs/images/ArchitectureDiagram.png | Bin 16491 -> 34090 bytes docs/images/checkstyle/runCheckstyle.png | Bin 0 -> 30278 bytes docs/images/findAlexDavidResult.png | Bin 0 -> 19640 bytes docs/images/helpMessage.png | Bin 0 -> 8435 bytes docs/images/intellijCodeStyle-switch.png | Bin 0 -> 73920 bytes docs/index.adoc | 2 - docs/index.md | 18 + docs/stylesheets/asciidoctor.css | 407 ------------------- docs/stylesheets/gh-pages.css | 214 ---------- docs/team/johndoe.adoc | 72 ---- docs/team/johndoe.md | 46 +++ docs/templates/LICENSE | 24 -- docs/templates/_footer.html.slim | 12 - docs/templates/_footnotes.html.slim | 7 - docs/templates/_header.html.slim | 76 ---- docs/templates/_toc.html.slim | 5 - docs/templates/document.html.slim | 29 -- docs/templates/helpers.rb | 300 -------------- docs/tutorials/RemovingFields.adoc | 117 ------ docs/tutorials/RemovingFields.md | 103 +++++ docs/tutorials/TracingCode.adoc | 258 ------------ docs/tutorials/TracingCode.md | 250 ++++++++++++ 79 files changed, 3092 insertions(+), 3627 deletions(-) create mode 100644 .github/workflows/gradle.yml delete mode 100644 .travis.yml delete mode 100644 README.adoc create mode 100644 README.md delete mode 100644 _config.yml delete mode 100644 appveyor.yml delete mode 100644 docs/AboutUs.adoc create mode 100644 docs/AboutUs.md delete mode 100644 docs/ContactUs.adoc delete mode 100644 docs/DevOps.adoc create mode 100644 docs/DevOps.md delete mode 100644 docs/DeveloperGuide.adoc create mode 100644 docs/DeveloperGuide.md delete mode 100644 docs/Documentation.adoc create mode 100644 docs/Documentation.md create mode 100644 docs/Gemfile create mode 100644 docs/Gemfile.lock delete mode 100644 docs/LearningOutcomes.adoc delete mode 100644 docs/SettingUp.adoc create mode 100644 docs/SettingUp.md delete mode 100644 docs/Testing.adoc create mode 100644 docs/Testing.md delete mode 100644 docs/UserGuide.adoc create mode 100644 docs/UserGuide.md delete mode 100644 docs/UsingAppVeyor.adoc delete mode 100644 docs/UsingCheckstyle.adoc create mode 100644 docs/UsingCheckstyle.md delete mode 100644 docs/UsingCoveralls.adoc delete mode 100644 docs/UsingGradle.adoc create mode 100644 docs/UsingGradle.md delete mode 100644 docs/UsingNetlify.adoc create mode 100644 docs/UsingNetlify.md delete mode 100644 docs/UsingPlantUml.adoc create mode 100644 docs/UsingPlantUml.md delete mode 100644 docs/UsingTravis.adoc create mode 100644 docs/_config.yml create mode 100644 docs/_data/projects.yml create mode 100644 docs/_includes/custom-head.html create mode 100644 docs/_includes/head.html create mode 100644 docs/_includes/header.html create mode 100644 docs/_layouts/alt-page.html create mode 100644 docs/_layouts/default.html create mode 100644 docs/_layouts/page.html create mode 100644 docs/_sass/minima/_base.scss create mode 100644 docs/_sass/minima/_layout.scss create mode 100644 docs/_sass/minima/custom-mixins.scss create mode 100644 docs/_sass/minima/custom-styles.scss create mode 100644 docs/_sass/minima/custom-variables.scss create mode 100644 docs/_sass/minima/initialize.scss create mode 100644 docs/_sass/minima/skins/classic.scss create mode 100644 docs/_sass/minima/skins/solarized-dark.scss create mode 100644 docs/_sass/minima/skins/solarized.scss create mode 100644 docs/assets/css/style.scss create mode 100644 docs/images/checkstyle/runCheckstyle.png create mode 100644 docs/images/findAlexDavidResult.png create mode 100644 docs/images/helpMessage.png create mode 100644 docs/images/intellijCodeStyle-switch.png delete mode 100644 docs/index.adoc create mode 100644 docs/index.md delete mode 100644 docs/stylesheets/asciidoctor.css delete mode 100644 docs/stylesheets/gh-pages.css delete mode 100644 docs/team/johndoe.adoc create mode 100644 docs/team/johndoe.md delete mode 100644 docs/templates/LICENSE delete mode 100644 docs/templates/_footer.html.slim delete mode 100644 docs/templates/_footnotes.html.slim delete mode 100644 docs/templates/_header.html.slim delete mode 100644 docs/templates/_toc.html.slim delete mode 100644 docs/templates/document.html.slim delete mode 100644 docs/templates/helpers.rb delete mode 100644 docs/tutorials/RemovingFields.adoc create mode 100644 docs/tutorials/RemovingFields.md delete mode 100644 docs/tutorials/TracingCode.adoc create mode 100644 docs/tutorials/TracingCode.md diff --git a/.github/workflows/gradle.yml b/.github/workflows/gradle.yml new file mode 100644 index 00000000000..391c46b4fe9 --- /dev/null +++ b/.github/workflows/gradle.yml @@ -0,0 +1,34 @@ +name: Java CI + +on: [push, pull_request] + +jobs: + build: + strategy: + matrix: + platform: [ubuntu-latest, macos-latest, windows-latest] + runs-on: ${{ matrix.platform }} + + steps: + - name: Set up repository + uses: actions/checkout@master + + - name: Set up repository + uses: actions/checkout@master + with: + ref: master + + - name: Merge to master + run: git checkout --progress --force ${{ github.sha }} + + - name: Validate Gradle Wrapper + uses: gradle/wrapper-validation-action@v1 + + - name: Setup JDK 11 + uses: actions/setup-java@v1 + with: + java-version: '11' + java-package: jdk+fx + + - name: Build and check with Gradle + run: ./gradlew check diff --git a/.gitignore b/.gitignore index 5e59b862ba4..71c9194e8bd 100644 --- a/.gitignore +++ b/.gitignore @@ -19,3 +19,4 @@ src/test/data/sandbox/ # MacOS custom attributes files created by Finder .DS_Store +docs/_site/ diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 924a42eb8da..00000000000 --- a/.travis.yml +++ /dev/null @@ -1,24 +0,0 @@ -language: java -matrix: - include: - - jdk: openjdk11 - -script: >- - ./config/travis/run-checks.sh && - ./gradlew clean checkstyleMain checkstyleTest test coverage coveralls asciidoctor - -deploy: - skip_cleanup: true - provider: script - script: ./config/travis/deploy_github_pages.sh - on: - branch: master - -before_cache: - - rm -f $HOME/.gradle/caches/modules-2/modules-2.lock - - rm -fr $HOME/.gradle/caches/*/plugin-resolution/ - -cache: - directories: - - $HOME/.gradle/caches/ - - $HOME/.gradle/wrapper/ diff --git a/README.adoc b/README.adoc deleted file mode 100644 index d34211c9341..00000000000 --- a/README.adoc +++ /dev/null @@ -1,36 +0,0 @@ -= Address Book (Level 3) -ifdef::env-github,env-browser[:relfileprefix: docs/] - -https://travis-ci.org/se-edu/addressbook-level3[image:https://travis-ci.org/se-edu/addressbook-level3.svg?branch=master[Build Status]] -https://ci.appveyor.com/project/damithc/addressbook-level3[image:https://ci.appveyor.com/api/projects/status/3boko2x2vr5cc3w2?svg=true[Build status]] -https://coveralls.io/github/se-edu/addressbook-level3?branch=master[image:https://coveralls.io/repos/github/se-edu/addressbook-level3/badge.svg?branch=master[Coverage Status]] -https://www.codacy.com/app/damith/addressbook-level3?utm_source=github.com&utm_medium=referral&utm_content=se-edu/addressbook-level3&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]] - -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. - -== Site Map - -* <> -* <> -* <> -* <> -* <> - -== Acknowledgements - -* Some parts of this sample application were inspired by the excellent http://code.makery.ch/library/javafx-8-tutorial/[Java FX tutorial] by -_Marco Jakob_. -* Libraries used: https://openjfx.io/[JavaFX], https://github.com/FasterXML/jackson[Jackson], https://github.com/junit-team/junit5[JUnit5] - -== Licence : link:LICENSE[MIT] diff --git a/README.md b/README.md new file mode 100644 index 00000000000..13f5c77403f --- /dev/null +++ b/README.md @@ -0,0 +1,14 @@ +[![CI Status](https://github.com/se-edu/addressbook-level3/workflows/Java%20CI/badge.svg)](https://github.com/se-edu/addressbook-level3/actions) + +![Ui](docs/images/Ui.png) + +* This is **a sample project for Software Engineering (SE) students**.
+ Example usages: + * as a starting point of a course project (as opposed to writing everything from scratch) + * as a case study +* The project simulates an ongoing software project for a desktop application (called _AddressBook_) used for managing contact details. + * It is **written in OOP fashion**. It provides a **reasonably well-written** code base **bigger** (around 6 KLoC) than what students usually write in beginner-level SE modules, without being overwhelmingly big. + * It comes with a **reasonable level of user and developer documentation**. +* It is named `AddressBook Level 3` (`AB3` for short) because it was initially created as a part of a series of `AddressBook` projects (`Level 1`, `Level 2`, `Level 3` ...). +* For the detailed documentation of this project, see the **[Address Book Product Website](https://se-education.org/addressbook-level3)**. +* This project is a **part of the se-education.org** initiative. If you would like to contribute code to this project, see [se-education.org](https://se-education.org#https://se-education.org/#contributing) for more info. diff --git a/_config.yml b/_config.yml deleted file mode 100644 index 277f1f2c510..00000000000 --- a/_config.yml +++ /dev/null @@ -1 +0,0 @@ -theme: jekyll-theme-cayman diff --git a/appveyor.yml b/appveyor.yml deleted file mode 100644 index 6f53e7cd2d6..00000000000 --- a/appveyor.yml +++ /dev/null @@ -1,18 +0,0 @@ -# AppVeyor configuration file -# For more details see https://www.appveyor.com/docs/build-configuration/ - -# Call on gradle to build and run tests -# --no-daemon: Prevent the daemon from launching to prevent file-in-use errors -# when we cache the ~/.gradle directory -build_script: - - gradlew.bat --no-daemon assemble checkstyleMain checkstyleTest - -test_script: - - gradlew.bat --no-daemon test - -environment: - JAVA_HOME: C:\Program Files\Java\jdk11 # Use 64-bit Java - -# Files/folders to preserve between builds to speed them up -cache: - - C:\Users\appveyor\.gradle diff --git a/build.gradle b/build.gradle index 93029ef8262..f73f45003d5 100644 --- a/build.gradle +++ b/build.gradle @@ -1,20 +1,10 @@ -// Gradle Configuration File -// For more details take a look at the Java Quickstart chapter in the Gradle -// user guide available at http://gradle.org/docs/5.2.1/userguide/tutorial_java_projects.html - -import org.gradle.api.tasks.testing.logging.TestLogEvent - plugins { id 'java' - id 'jacoco' id 'checkstyle' - id 'com.github.kt3k.coveralls' version '2.4.0' id 'com.github.johnrengelman.shadow' version '4.0.4' - id 'org.asciidoctor.convert' version '1.5.6' id 'application' } -// Specifies the entry point of the application mainClassName = 'seedu.address.Main' sourceCompatibility = JavaVersion.VERSION_11 @@ -29,14 +19,6 @@ checkstyle { toolVersion = '8.1' } -jacocoTestReport { - reports { - xml.enabled false - csv.enabled false - html.destination file("${buildDir}/jacocoHtml") - } -} - test { useJUnitPlatform() } @@ -72,84 +54,4 @@ shadowJar { destinationDir = file("${buildDir}/jar/") } -task coverage(type: JacocoReport) { - sourceDirectories.from files(sourceSets.main.allSource.srcDirs) - classDirectories.from files(sourceSets.main.output) - executionData.from files(jacocoTestReport.executionData) - afterEvaluate { - classDirectories.from files(classDirectories.files.collect { - fileTree(dir: it, exclude: ['**/*.jar']) - }) - } - reports { - html.enabled = true - xml.enabled = true - } -} - -coveralls { - sourceDirs = sourceSets.main.allSource.srcDirs.absolutePath - jacocoReportPath = "${buildDir}/reports/jacoco/coverage/coverage.xml" -} - -tasks.coveralls { - dependsOn coverage - onlyIf { System.env.'CI' } -} - -test { - testLogging { - events TestLogEvent.FAILED, TestLogEvent.SKIPPED - - // Prints the currently running test's name in the CI's build log, - // so that we can check if tests are being silently skipped or - // stalling the build. - if (System.env.'CI') { - events << TestLogEvent.STARTED - } - } - - jacoco { - destinationFile = new File("${buildDir}/jacoco/test.exec") - } -} - -asciidoctor { - backends 'html5' - sourceDir 'docs' - outputDir "${buildDir}/docs" - - options = [ - template_dirs: [file("${sourceDir}/templates")], - ] - - attributes = [ - linkcss: true, - stylesheet: 'gh-pages.css', - 'source-highlighter': 'coderay', - icons: 'font', - experimental: true, - sectlinks: true, - idprefix: '', // for compatibility with GitHub preview - idseparator: '-', - 'site-root': "${sourceDir}", // must be the same as sourceDir, do not modify - 'site-name': 'AddressBook-Level3', - 'site-githuburl': 'https://github.com/se-edu/addressbook-level3', - 'site-seedu': true, // delete this line if your project is not a fork (not a SE-EDU project) - ] - - options['template_dirs'].each { - inputs.files fileTree(it) - } -} - -// Copies stylesheets into the directory containing generated HTML files as -// Asciidoctor does not copy linked CSS files to the output directory when rendering. -// This is needed for linked stylesheets and embedded stylesheets which import other files. -task copyStylesheets(type: Copy) { - from "${asciidoctor.sourceDir}/stylesheets" - into "${asciidoctor.outputDir}/html5/stylesheets" -} -asciidoctor.dependsOn copyStylesheets - -defaultTasks 'clean', 'test', 'coverage', 'asciidoctor' +defaultTasks 'clean', 'test' diff --git a/docs/AboutUs.adoc b/docs/AboutUs.adoc deleted file mode 100644 index 458e6134f45..00000000000 --- a/docs/AboutUs.adoc +++ /dev/null @@ -1,56 +0,0 @@ -= About Us -:site-section: AboutUs -:relfileprefix: team/ -:imagesDir: images -:stylesDir: stylesheets - -AddressBook - Level 3 was developed by the https://se-edu.github.io/docs/Team.html[se-edu] team. + -_{The dummy content given below serves as a placeholder to be used by future forks of the project.}_ + -{empty} + -We are a team based in the http://www.comp.nus.edu.sg[School of Computing, National University of Singapore]. - -== Project Team - -=== John Doe -image::damithc.jpg[width="150", align="left"] -{empty}[http://www.comp.nus.edu.sg/~damithch[homepage]] [https://github.com/damithc[github]] [<>] - -Role: Project Advisor - -''' - -=== John Roe -image::lejolly.jpg[width="150", align="left"] -{empty}[http://github.com/lejolly[github]] [<>] - -Role: Team Lead + -Responsibilities: UI - -''' - -=== Johnny Doe -image::yijinl.jpg[width="150", align="left"] -{empty}[http://github.com/yijinl[github]] [<>] - -Role: Developer + -Responsibilities: Data - -''' - -=== Johnny Roe -image::m133225.jpg[width="150", align="left"] -{empty}[http://github.com/m133225[github]] [<>] - -Role: Developer + -Responsibilities: Dev Ops + Threading - -''' - -=== Benson Meier -image::yl_coder.jpg[width="150", align="left"] -{empty}[http://github.com/yl-coder[github]] [<>] - -Role: Developer + -Responsibilities: UI - -''' diff --git a/docs/AboutUs.md b/docs/AboutUs.md new file mode 100644 index 00000000000..c78e1f4d66a --- /dev/null +++ b/docs/AboutUs.md @@ -0,0 +1,59 @@ +--- +layout: page +title: About Us +--- + +_{The dummy content given below serves as a placeholder to be used by future forks of the project.}_ + +We are a team based in the [School of Computing, National University of Singapore](http://www.comp.nus.edu.sg). + +## Project Team + +### John Doe + + + +[[homepage](http://www.comp.nus.edu.sg/~damithch)] +[[github](https://github.com/damithc)] +[[portfolio](team/johndoe.md)] + +* Role: Project Advisor + +### John Roe + + + +[[github](http://github.com/lejolly)] +[[portfolio](team/johndoe.md)] + +* Role: Team Lead +* Responsibilities: UI + +### Johnny Doe + + + +[[github](http://github.com/yijinl)] [[portfolio](team/johndoe.md)] + +* Role: Developer +* Responsibilities: Data + +### Johnny Roe + + + +[[github](http://github.com/m133225)] +[[portfolio](team/johndoe.md)] + +* Role: Developer +* Responsibilities: Dev Ops + Threading + +### Benson Meier + + + +[[github](http://github.com/yl-coder)] +[[portfolio](team/johndoe.md)] + +* Role: Developer +* Responsibilities: UI diff --git a/docs/ContactUs.adoc b/docs/ContactUs.adoc deleted file mode 100644 index 81be279ef6d..00000000000 --- a/docs/ContactUs.adoc +++ /dev/null @@ -1,7 +0,0 @@ -= Contact Us -:site-section: ContactUs -:stylesDir: stylesheets - -* *Bug reports, Suggestions* : Post in our https://github.com/se-edu/addressbook-level3/issues[issue tracker] if you noticed bugs or have suggestions on how to improve. -* *Contributing* : We welcome pull requests. Follow the process described https://github.com/oss-generic/process[here] -* *Email us* : You can also reach us at `damith [at] comp.nus.edu.sg` diff --git a/docs/DevOps.adoc b/docs/DevOps.adoc deleted file mode 100644 index 2aa5a6bc0c1..00000000000 --- a/docs/DevOps.adoc +++ /dev/null @@ -1,48 +0,0 @@ -= AddressBook Level 3 - Dev Ops -:site-section: DeveloperGuide -:toc: -:toc-title: -:toc-placement: preamble -:sectnums: -:imagesDir: images -:stylesDir: stylesheets -:xrefstyle: full -ifdef::env-github[] -:tip-caption: :bulb: -:note-caption: :information_source: -:warning-caption: :warning: -endif::[] -:repoURL: https://github.com/se-edu/addressbook-level3/tree/master - -== Build Automation - -See <> to learn how to use Gradle for build automation. - -== Continuous Integration - -We use https://travis-ci.org/[Travis CI] and https://www.appveyor.com/[AppVeyor] to perform _Continuous Integration_ on our projects. See <> and <> for more details. - -== Coverage Reporting - -We use https://coveralls.io/[Coveralls] to track the code coverage of our projects. See <> for more details. - -== Documentation Previews - -When a pull request has changes to asciidoc files, you can use https://www.netlify.com/[Netlify] to see a preview of how the HTML version of those asciidoc files will look like when the pull request is merged. See <> for more details. - -== Making a Release - -Here are the steps to create a new release. - -. Update the version number in link:{repoURL}/src/main/java/seedu/address/MainApp.java[`MainApp.java`]. -. Generate a JAR file <>. -. Tag the repo with the version number. e.g. `v0.1` -. https://help.github.com/articles/creating-releases/[Create a new release using GitHub] and upload the JAR file you created. - -== Managing Dependencies - -A project often depends on third-party libraries. For example, Address Book depends on the https://github.com/FasterXML/jackson[Jackson library] for JSON parsing. Managing these _dependencies_ can be automated using Gradle. For example, Gradle can download the dependencies automatically, which is better than these alternatives: - -[loweralpha] -. Include those libraries in the repo (this bloats the repo size) -. Require developers to download those libraries manually (this creates extra work for developers) diff --git a/docs/DevOps.md b/docs/DevOps.md new file mode 100644 index 00000000000..f24946b132a --- /dev/null +++ b/docs/DevOps.md @@ -0,0 +1,30 @@ +--- +layout: page +title: DevOps Guide +--- + +* Table of Contents +{:toc} + +-------------------------------------------------------------------------------------------------------------------- + +## Build automation + +This project uses Gradle for **build automation and dependency management**. See [Using Gradle](UsingGradle.md) for more details. + +-------------------------------------------------------------------------------------------------------------------- + +## Continuous integration (CI) + +This project uses GitHub Actions for CI. The project comes with the necessary GitHub Actions configurations files (in the `.github/workflows` folder). No further setting up required. + +-------------------------------------------------------------------------------------------------------------------- + +## Making a release + +Here are the steps to create a new release. + +1. Update the version number in [`MainApp.java`](https://github.com/se-edu/addressbook-level3/tree/master/src/main/java/seedu/address/MainApp.java). +1. Generate a JAR file [Using Gradle](UsingGradle.md#creating-the-jar-file). +1. Tag the repo with the version number. e.g. `v0.1` +1. [Create a new release using GitHub](https://help.github.com/articles/creating-releases/) and upload the JAR file you created. diff --git a/docs/DeveloperGuide.adoc b/docs/DeveloperGuide.adoc deleted file mode 100644 index 3d65905a853..00000000000 --- a/docs/DeveloperGuide.adoc +++ /dev/null @@ -1,425 +0,0 @@ -= AddressBook Level 3 - Developer Guide -:site-section: DeveloperGuide -:toc: -:toc-title: -:toc-placement: preamble -:sectnums: -:imagesDir: images -:stylesDir: stylesheets -:xrefstyle: full -ifdef::env-github[] -:tip-caption: :bulb: -:note-caption: :information_source: -:warning-caption: :warning: -endif::[] -:repoURL: https://github.com/se-edu/addressbook-level3/tree/master - -By: `Team SE-EDU`      Since: `Jun 2016`      Licence: `MIT` - -== Setting up - -Refer to the guide <>. - -== Design - -[[Design-Architecture]] -=== Architecture - -.Architecture Diagram -image::ArchitectureDiagram.png[] - -The *_Architecture Diagram_* given above explains the high-level design of the App. Given below is a quick overview of each component. - -[TIP] -The `.puml` files used to create diagrams in this document can be found in the link:{repoURL}/docs/diagrams/[diagrams] folder. -Refer to the <> to learn how to create and edit diagrams. - -`Main` has two classes called link:{repoURL}/src/main/java/seedu/address/Main.java[`Main`] and link:{repoURL}/src/main/java/seedu/address/MainApp.java[`MainApp`]. It is responsible for, - -* At app launch: Initializes the components in the correct sequence, and connects them up with each other. -* At shut down: Shuts down the components and invokes cleanup method where necessary. - -<> represents a collection of classes used by multiple other components. -The following class plays an important role at the architecture level: - -* `LogsCenter` : Used by many classes to write log messages to the App's log file. - -The rest of the App consists of four components. - -* <>: The UI of the App. -* <>: The command executor. -* <>: Holds the data of the App in-memory. -* <>: Reads data from, and writes data to, the hard disk. - -Each of the four components - -* Defines its _API_ in an `interface` with the same name as the Component. -* Exposes its functionality using a `{Component Name}Manager` class. - -For example, the `Logic` component (see the class diagram given below) defines it's API in the `Logic.java` interface and exposes its functionality using the `LogicManager.java` class. - -.Class Diagram of the Logic Component -image::LogicClassDiagram.png[] - -[discrete] -==== How the architecture components interact with each other - -The _Sequence Diagram_ below shows how the components interact with each other for the scenario where the user issues the command `delete 1`. - -.Component interactions for `delete 1` command -image::ArchitectureSequenceDiagram.png[] - -The sections below give more details of each component. - -[[Design-Ui]] -=== UI component - -.Structure of the UI Component -image::UiClassDiagram.png[] - -*API* : link:{repoURL}/src/main/java/seedu/address/ui/Ui.java[`Ui.java`] - -The UI consists of a `MainWindow` that is made up of parts e.g.`CommandBox`, `ResultDisplay`, `PersonListPanel`, `StatusBarFooter` etc. All these, including the `MainWindow`, inherit from the abstract `UiPart` class. - -The `UI` component uses JavaFx UI framework. The layout of these UI parts are defined in matching `.fxml` files that are in the `src/main/resources/view` folder. For example, the layout of the link:{repoURL}/src/main/java/seedu/address/ui/MainWindow.java[`MainWindow`] is specified in link:{repoURL}/src/main/resources/view/MainWindow.fxml[`MainWindow.fxml`] - -The `UI` component, - -* Executes user commands using the `Logic` component. -* Listens for changes to `Model` data so that the UI can be updated with the modified data. - -[[Design-Logic]] -=== Logic component - -[[fig-LogicClassDiagram]] -.Structure of the Logic Component -image::LogicClassDiagram.png[] - -*API* : -link:{repoURL}/src/main/java/seedu/address/logic/Logic.java[`Logic.java`] - -. `Logic` uses the `AddressBookParser` class to parse the user command. -. This results in a `Command` object which is executed by the `LogicManager`. -. The command execution can affect the `Model` (e.g. adding a person). -. The result of the command execution is encapsulated as a `CommandResult` object which is passed back to the `Ui`. -. In addition, the `CommandResult` object can also instruct the `Ui` to perform certain actions, such as displaying help to the user. - -Given below is the Sequence Diagram for interactions within the `Logic` component for the `execute("delete 1")` API call. - -.Interactions Inside the Logic Component for the `delete 1` Command -image::DeleteSequenceDiagram.png[] - -NOTE: The lifeline for `DeleteCommandParser` should end at the destroy marker (X) but due to a limitation of PlantUML, the lifeline reaches the end of diagram. - -[[Design-Model]] -=== Model component - -.Structure of the Model Component -image::ModelClassDiagram.png[] - -*API* : link:{repoURL}/src/main/java/seedu/address/model/Model.java[`Model.java`] - -The `Model`, - -* stores a `UserPref` object that represents the user's preferences. -* stores the Address Book data. -* exposes an unmodifiable `ObservableList` that can be 'observed' e.g. the UI can be bound to this list so that the UI automatically updates when the data in the list change. -* does not depend on any of the other three components. - -[NOTE] -As a more OOP model, we can store a `Tag` list in `Address Book`, which `Person` can reference. This would allow `Address Book` to only require one `Tag` object per unique `Tag`, instead of each `Person` needing their own `Tag` object. An example of how such a model may look like is given below. + - + -image:BetterModelClassDiagram.png[] - -[[Design-Storage]] -=== Storage component - -.Structure of the Storage Component -image::StorageClassDiagram.png[] - -*API* : link:{repoURL}/src/main/java/seedu/address/storage/Storage.java[`Storage.java`] - -The `Storage` component, - -* can save `UserPref` objects in json format and read it back. -* can save the Address Book data in json format and read it back. - -[[Design-Commons]] -=== Common classes - -Classes used by multiple components are in the `seedu.addressbook.commons` package. - -== Implementation - -This section describes some noteworthy details on how certain features are implemented. - -// tag::undoredo[] -=== [Proposed] Undo/Redo feature -==== Proposed Implementation - -The undo/redo mechanism is facilitated by `VersionedAddressBook`. -It extends `AddressBook` with an undo/redo history, stored internally as an `addressBookStateList` and `currentStatePointer`. -Additionally, it implements the following operations: - -* `VersionedAddressBook#commit()` -- Saves the current address book state in its history. -* `VersionedAddressBook#undo()` -- Restores the previous address book state from its history. -* `VersionedAddressBook#redo()` -- Restores a previously undone address book state from its history. - -These operations are exposed in the `Model` interface as `Model#commitAddressBook()`, `Model#undoAddressBook()` and `Model#redoAddressBook()` respectively. - -Given below is an example usage scenario and how the undo/redo mechanism behaves at each step. - -Step 1. The user launches the application for the first time. The `VersionedAddressBook` will be initialized with the initial address book state, and the `currentStatePointer` pointing to that single address book state. - -image::UndoRedoState0.png[] - -Step 2. The user executes `delete 5` command to delete the 5th person in the address book. The `delete` command calls `Model#commitAddressBook()`, causing the modified state of the address book after the `delete 5` command executes to be saved in the `addressBookStateList`, and the `currentStatePointer` is shifted to the newly inserted address book state. - -image::UndoRedoState1.png[] - -Step 3. The user executes `add n/David ...` to add a new person. The `add` command also calls `Model#commitAddressBook()`, causing another modified address book state to be saved into the `addressBookStateList`. - -image::UndoRedoState2.png[] - -[NOTE] -If a command fails its execution, it will not call `Model#commitAddressBook()`, so the address book state will not be saved into the `addressBookStateList`. - -Step 4. The user now decides that adding the person was a mistake, and decides to undo that action by executing the `undo` command. The `undo` command will call `Model#undoAddressBook()`, which will shift the `currentStatePointer` once to the left, pointing it to the previous address book state, and restores the address book to that state. - -image::UndoRedoState3.png[] - -[NOTE] -If the `currentStatePointer` is at index 0, pointing to the initial address book state, then there are no previous address book states to restore. The `undo` command uses `Model#canUndoAddressBook()` to check if this is the case. If so, it will return an error to the user rather than attempting to perform the undo. - -The following sequence diagram shows how the undo operation works: - -image::UndoSequenceDiagram.png[] - -NOTE: The lifeline for `UndoCommand` should end at the destroy marker (X) but due to a limitation of PlantUML, the lifeline reaches the end of diagram. - -The `redo` command does the opposite -- it calls `Model#redoAddressBook()`, which shifts the `currentStatePointer` once to the right, pointing to the previously undone state, and restores the address book to that state. - -[NOTE] -If the `currentStatePointer` is at index `addressBookStateList.size() - 1`, pointing to the latest address book state, then there are no undone address book states to restore. The `redo` command uses `Model#canRedoAddressBook()` to check if this is the case. If so, it will return an error to the user rather than attempting to perform the redo. - -Step 5. The user then decides to execute the command `list`. Commands that do not modify the address book, such as `list`, will usually not call `Model#commitAddressBook()`, `Model#undoAddressBook()` or `Model#redoAddressBook()`. Thus, the `addressBookStateList` remains unchanged. - -image::UndoRedoState4.png[] - -Step 6. The user executes `clear`, which calls `Model#commitAddressBook()`. Since the `currentStatePointer` is not pointing at the end of the `addressBookStateList`, all address book states after the `currentStatePointer` will be purged. We designed it this way because it no longer makes sense to redo the `add n/David ...` command. This is the behavior that most modern desktop applications follow. - -image::UndoRedoState5.png[] - -The following activity diagram summarizes what happens when a user executes a new command: - -image::CommitActivityDiagram.png[] - -==== Design Considerations - -===== Aspect: How undo & redo executes - -* **Alternative 1 (current choice):** Saves the entire address book. -** Pros: Easy to implement. -** Cons: May have performance issues in terms of memory usage. -* **Alternative 2:** Individual command knows how to undo/redo by itself. -** Pros: Will use less memory (e.g. for `delete`, just save the person being deleted). -** Cons: We must ensure that the implementation of each individual command are correct. - -===== Aspect: Data structure to support the undo/redo commands - -* **Alternative 1 (current choice):** Use a list to store the history of address book states. -** Pros: Easy for new Computer Science student undergraduates to understand, who are likely to be the new incoming developers of our project. -** Cons: Logic is duplicated twice. For example, when a new command is executed, we must remember to update both `HistoryManager` and `VersionedAddressBook`. -* **Alternative 2:** Use `HistoryManager` for undo/redo -** Pros: We do not need to maintain a separate list, and just reuse what is already in the codebase. -** Cons: Requires dealing with commands that have already been undone: We must remember to skip these commands. Violates Single Responsibility Principle and Separation of Concerns as `HistoryManager` now needs to do two different things. -// end::undoredo[] - -// tag::dataencryption[] -=== [Proposed] Data Encryption - -_{Explain here how the data encryption feature will be implemented}_ - -// end::dataencryption[] - -=== Logging - -We are using `java.util.logging` package for logging. The `LogsCenter` class is used to manage the logging levels and logging destinations. - -* The logging level can be controlled using the `logLevel` setting in the configuration file (See <>) -* The `Logger` for a class can be obtained using `LogsCenter.getLogger(Class)` which will log messages according to the specified logging level -* Currently log messages are output through: `Console` and to a `.log` file. - -*Logging Levels* - -* `SEVERE` : Critical problem detected which may possibly cause the termination of the application -* `WARNING` : Can continue, but with caution -* `INFO` : Information showing the noteworthy actions by the App -* `FINE` : Details that is not usually noteworthy but may be useful in debugging e.g. print the actual list instead of just its size - -[[Implementation-Configuration]] -=== Configuration - -Certain properties of the application can be controlled (e.g user prefs file location, logging level) through the configuration file (default: `config.json`). - -== Documentation - -Refer to the guide <>. - -== Testing - -Refer to the guide <>. - -== Dev Ops - -Refer to the guide <>. - -[appendix] -== Product Scope - -*Target user profile*: - -* has a need to manage a significant number of contacts -* prefer desktop apps over other types -* can type fast -* prefers typing over mouse input -* is reasonably comfortable using CLI apps - -*Value proposition*: manage contacts faster than a typical mouse/GUI driven app - -[appendix] -== User Stories - -Priorities: High (must have) - `* * \*`, Medium (nice to have) - `* \*`, Low (unlikely to have) - `*` - -[width="59%",cols="22%,<23%,<25%,<30%",options="header",] -|======================================================================= -|Priority |As a ... |I want to ... |So that I can... -|`* * *` |new user |see usage instructions |refer to instructions when I forget how to use the App - -|`* * *` |user |add a new person | - -|`* * *` |user |delete a person |remove entries that I no longer need - -|`* * *` |user |find a person by name |locate details of persons without having to go through the entire list - -|`* *` |user |hide <> by default |minimize chance of someone else seeing them by accident - -|`*` |user with many persons in the address book |sort persons by name |locate a person easily -|======================================================================= - -_{More to be added}_ - -[appendix] -== Use Cases - -(For all use cases below, the *System* is the `AddressBook` and the *Actor* is the `user`, unless specified otherwise) - -[discrete] -=== Use case: Delete person - -*MSS* - -1. User requests to list persons -2. AddressBook shows a list of persons -3. User requests to delete a specific person in the list -4. AddressBook deletes the person -+ -Use case ends. - -*Extensions* - -[none] -* 2a. The list is empty. -+ -Use case ends. - -* 3a. The given index is invalid. -+ -[none] -** 3a1. AddressBook shows an error message. -+ -Use case resumes at step 2. - -_{More to be added}_ - -[appendix] -== Non Functional Requirements - -. Should work on any <> as long as it has Java `11` or above installed. -. Should be able to hold up to 1000 persons without a noticeable sluggishness in performance for typical usage. -. A user with above average typing speed for regular English text (i.e. not code, not system admin commands) should be able to accomplish most of the tasks faster using commands than using the mouse. - -_{More to be added}_ - -[appendix] -== Glossary - -[[mainstream-os]] Mainstream OS:: -Windows, Linux, Unix, OS-X - -[[private-contact-detail]] Private contact detail:: -A contact detail that is not meant to be shared with others - -[appendix] -== Product Survey - -*Product Name* - -Author: ... - -Pros: - -* ... -* ... - -Cons: - -* ... -* ... - -[appendix] -== Instructions for Manual Testing - -Given below are instructions to test the app manually. - -[NOTE] -These instructions only provide a starting point for testers to work on; testers are expected to do more _exploratory_ testing. - -=== Launch and Shutdown - -. Initial launch - -.. Download the jar file and copy into an empty folder -.. Double-click the jar file + - Expected: Shows the GUI with a set of sample contacts. The window size may not be optimum. - -. Saving window preferences - -.. Resize the window to an optimum size. Move the window to a different location. Close the window. -.. Re-launch the app by double-clicking the jar file. + - Expected: The most recent window size and location is retained. - -_{ more test cases ... }_ - -=== Deleting a person - -. Deleting a person while all persons are listed - -.. Prerequisites: List all persons using the `list` command. Multiple persons in the list. -.. Test case: `delete 1` + - Expected: First contact is deleted from the list. Details of the deleted contact shown in the status message. Timestamp in the status bar is updated. -.. Test case: `delete 0` + - Expected: No person is deleted. Error details shown in the status message. Status bar remains the same. -.. Other incorrect delete commands to try: `delete`, `delete x` (where x is larger than the list size) _{give more}_ + - Expected: Similar to previous. - -_{ more test cases ... }_ - -=== Saving data - -. Dealing with missing/corrupted data files - -.. _{explain how to simulate a missing/corrupted file and the expected behavior}_ - -_{ more test cases ... }_ diff --git a/docs/DeveloperGuide.md b/docs/DeveloperGuide.md new file mode 100644 index 00000000000..42342df73f2 --- /dev/null +++ b/docs/DeveloperGuide.md @@ -0,0 +1,375 @@ +--- +layout: page +title: Developer Guide +--- +* Table of Contents +{:toc} + +-------------------------------------------------------------------------------------------------------------------- + +## **Setting up, getting started** + +Refer to the guide [_Setting up and getting started_](SettingUp.md). + +-------------------------------------------------------------------------------------------------------------------- + +## **Design** + +### Architecture + +![Architecture Diagram](images/ArchitectureDiagram.png) + +The ***Architecture Diagram*** given above explains the high-level design of the App. Given below is a quick overview of each component. + +
+ +:bulb: **Tip:** The `.puml` files used to create diagrams in this document can be found in the [diagrams](https://github.com/se-edu/addressbook-level3/tree/master/docs/diagrams/) folder. Refer to the [Using PlantUML](UsingPlantUml.md) guide to learn how to create and edit diagrams. + +
+ +**`Main`** has two classes called [`Main`](https://github.com/se-edu/addressbook-level3/tree/master/src/main/java/seedu/address/Main.java) and [`MainApp`](https://github.com/se-edu/addressbook-level3/tree/master/src/main/java/seedu/address/MainApp.java). It is responsible for, +* At app launch: Initializes the components in the correct sequence, and connects them up with each other. +* At shut down: Shuts down the components and invokes cleanup methods where necessary. + +[**`Commons`**](#common-classes) represents a collection of classes used by multiple other components. + +The rest of the App consists of four components. + +* [**`UI`**](#ui-component): The UI of the App. +* [**`Logic`**](#logic-component): The command executor. +* [**`Model`**](#model-component): Holds the data of the App in memory. +* [**`Storage`**](#storage-component): Reads data from, and writes data to, the hard disk. + +Each of the four components, + +* defines its *API* in an `interface` with the same name as the Component. +* exposes its functionality using a concrete `{Component Name}Manager` class (which implements the corresponding API `interface` mentioned in the previous point. + +For example, the `Logic` component (see the class diagram given below) defines its API in the `Logic.java` interface and exposes its functionality using the `LogicManager.java` class which implements the `Logic` interface. + +![Class Diagram of the Logic Component](images/LogicClassDiagram.png) + +**How the architecture components interact with each other** + +The *Sequence Diagram* below shows how the components interact with each other for the scenario where the user issues the command `delete 1`. + +![Component interactions for `delete 1` command](images/ArchitectureSequenceDiagram.png) + +The sections below give more details of each component. + +### UI component + +![Structure of the UI Component](images/UiClassDiagram.png) + +**API** : +[`Ui.java`](https://github.com/se-edu/addressbook-level3/tree/master/src/main/java/seedu/address/ui/Ui.java) + +The UI consists of a `MainWindow` that is made up of parts e.g.`CommandBox`, `ResultDisplay`, `PersonListPanel`, `StatusBarFooter` etc. All these, including the `MainWindow`, inherit from the abstract `UiPart` class. + +The `UI` component uses JavaFx UI framework. The layout of these UI parts are defined in matching `.fxml` files that are in the `src/main/resources/view` folder. For example, the layout of the [`MainWindow`](https://github.com/se-edu/addressbook-level3/tree/master/src/main/java/seedu/address/ui/MainWindow.java) is specified in [`MainWindow.fxml`](https://github.com/se-edu/addressbook-level3/tree/master/src/main/resources/view/MainWindow.fxml) + +The `UI` component, + +* Executes user commands using the `Logic` component. +* Listens for changes to `Model` data so that the UI can be updated with the modified data. + +### Logic component + +![Structure of the Logic Component](images/LogicClassDiagram.png) + +**API** : +[`Logic.java`](https://github.com/se-edu/addressbook-level3/tree/master/src/main/java/seedu/address/logic/Logic.java) + +1. `Logic` uses the `AddressBookParser` class to parse the user command. +1. This results in a `Command` object which is executed by the `LogicManager`. +1. The command execution can affect the `Model` (e.g. adding a person). +1. The result of the command execution is encapsulated as a `CommandResult` object which is passed back to the `Ui`. +1. In addition, the `CommandResult` object can also instruct the `Ui` to perform certain actions, such as displaying help to the user. + +Given below is the Sequence Diagram for interactions within the `Logic` component for the `execute("delete 1")` API call. + +![Interactions Inside the Logic Component for the `delete 1` Command](images/DeleteSequenceDiagram.png) + +
:information_source: **Note:** The lifeline for `DeleteCommandParser` should end at the destroy marker (X) but due to a limitation of PlantUML, the lifeline reaches the end of diagram. +
+ +### Model component + +![Structure of the Model Component](images/ModelClassDiagram.png) + +**API** : [`Model.java`](https://github.com/se-edu/addressbook-level3/tree/master/src/main/java/seedu/address/model/Model.java) + +The `Model`, + +* stores a `UserPref` object that represents the user’s preferences. +* stores the address book data. +* exposes an unmodifiable `ObservableList` that can be 'observed' e.g. the UI can be bound to this list so that the UI automatically updates when the data in the list change. +* does not depend on any of the other three components. + + +
:information_source: **Note:** An alternative (arguably, a more OOP) model is given below. It has a `Tag` list in the `AddressBook`, which `Person` references. This allows `AddressBook` to only require one `Tag` object per unique `Tag`, instead of each `Person` needing their own `Tag` object.
+![BetterModelClassDiagram](images/BetterModelClassDiagram.png) + +
+ + +### Storage component + +![Structure of the Storage Component](images/StorageClassDiagram.png) + +**API** : [`Storage.java`](https://github.com/se-edu/addressbook-level3/tree/master/src/main/java/seedu/address/storage/Storage.java) + +The `Storage` component, +* can save `UserPref` objects in json format and read it back. +* can save the address book data in json format and read it back. + +### Common classes + +Classes used by multiple components are in the `seedu.addressbook.commons` package. + +-------------------------------------------------------------------------------------------------------------------- + +## **Implementation** + +This section describes some noteworthy details on how certain features are implemented. + +### \[Proposed\] Undo/Redo feature + +#### Proposed Implementation + +The proposed undo/redo mechanism is facilitated by `VersionedAddressBook`. It extends `AddressBook` with an undo/redo history, stored internally as an `addressBookStateList` and `currentStatePointer`. Additionally, it implements the following operations: + +* `VersionedAddressBook#commit()` — Saves the current address book state in its history. +* `VersionedAddressBook#undo()` — Restores the previous address book state from its history. +* `VersionedAddressBook#redo()` — Restores a previously undone address book state from its history. + +These operations are exposed in the `Model` interface as `Model#commitAddressBook()`, `Model#undoAddressBook()` and `Model#redoAddressBook()` respectively. + +Given below is an example usage scenario and how the undo/redo mechanism behaves at each step. + +Step 1. The user launches the application for the first time. The `VersionedAddressBook` will be initialized with the initial address book state, and the `currentStatePointer` pointing to that single address book state. + +![UndoRedoState0](images/UndoRedoState0.png) + +Step 2. The user executes `delete 5` command to delete the 5th person in the address book. The `delete` command calls `Model#commitAddressBook()`, causing the modified state of the address book after the `delete 5` command executes to be saved in the `addressBookStateList`, and the `currentStatePointer` is shifted to the newly inserted address book state. + +![UndoRedoState1](images/UndoRedoState1.png) + +Step 3. The user executes `add n/David …​` to add a new person. The `add` command also calls `Model#commitAddressBook()`, causing another modified address book state to be saved into the `addressBookStateList`. + +![UndoRedoState2](images/UndoRedoState2.png) + +
:information_source: **Note:** If a command fails its execution, it will not call `Model#commitAddressBook()`, so the address book state will not be saved into the `addressBookStateList`. + +
+ +Step 4. The user now decides that adding the person was a mistake, and decides to undo that action by executing the `undo` command. The `undo` command will call `Model#undoAddressBook()`, which will shift the `currentStatePointer` once to the left, pointing it to the previous address book state, and restores the address book to that state. + +![UndoRedoState3](images/UndoRedoState3.png) + +
:information_source: **Note:** If the `currentStatePointer` is at index 0, pointing to the initial AddressBook state, then there are no previous AddressBook states to restore. The `undo` command uses `Model#canUndoAddressBook()` to check if this is the case. If so, it will return an error to the user rather +than attempting to perform the undo. + +
+ +The following sequence diagram shows how the undo operation works: + +![UndoSequenceDiagram](images/UndoSequenceDiagram.png) + +
:information_source: **Note:** The lifeline for `UndoCommand` should end at the destroy marker (X) but due to a limitation of PlantUML, the lifeline reaches the end of diagram. + +
+ +The `redo` command does the opposite — it calls `Model#redoAddressBook()`, which shifts the `currentStatePointer` once to the right, pointing to the previously undone state, and restores the address book to that state. + +
:information_source: **Note:** If the `currentStatePointer` is at index `addressBookStateList.size() - 1`, pointing to the latest address book state, then there are no undone AddressBook states to restore. The `redo` command uses `Model#canRedoAddressBook()` to check if this is the case. If so, it will return an error to the user rather than attempting to perform the redo. + +
+ +Step 5. The user then decides to execute the command `list`. Commands that do not modify the address book, such as `list`, will usually not call `Model#commitAddressBook()`, `Model#undoAddressBook()` or `Model#redoAddressBook()`. Thus, the `addressBookStateList` remains unchanged. + +![UndoRedoState4](images/UndoRedoState4.png) + +Step 6. The user executes `clear`, which calls `Model#commitAddressBook()`. Since the `currentStatePointer` is not pointing at the end of the `addressBookStateList`, all address book states after the `currentStatePointer` will be purged. Reason: It no longer makes sense to redo the `add n/David …​` command. This is the behavior that most modern desktop applications follow. + +![UndoRedoState5](images/UndoRedoState5.png) + +The following activity diagram summarizes what happens when a user executes a new command: + +![CommitActivityDiagram](images/CommitActivityDiagram.png) + +#### Design consideration: + +##### Aspect: How undo & redo executes + +* **Alternative 1 (current choice):** Saves the entire address book. + * Pros: Easy to implement. + * Cons: May have performance issues in terms of memory usage. + +* **Alternative 2:** Individual command knows how to undo/redo by + itself. + * Pros: Will use less memory (e.g. for `delete`, just save the person being deleted). + * Cons: We must ensure that the implementation of each individual command are correct. + +_{more aspects and alternatives to be added}_ + +### \[Proposed\] Data archiving + +_{Explain here how the data archiving feature will be implemented}_ + +### Logging + +We are using `java.util.logging` package for logging. The `LogsCenter` +class is used to manage the logging levels and logging destinations. + +* The logging level can be controlled using the `logLevel` setting in the configuration file (See the [Configuration](#configuration) section). +* The `Logger` for a class can be obtained using `LogsCenter.getLogger(Class)` which will log messages according to the specified logging level. +* Log messages are output through: `Console` and to a `.log` file. + +**Logging Levels** + +* `SEVERE`: A critical problem detected which may cause the termination of the application. +* `WARNING`: Can continue, but with caution. +* `INFO`: Information showing the noteworthy actions by the App. +* `FINE`: Details that is not usually noteworthy but may be useful in debugging e.g. print the actual list instead of just its size. + +### Configuration + +Certain properties of the application can be controlled (e.g user prefs file location, logging level) through the configuration file (default: `config.json`). + +-------------------------------------------------------------------------------------------------------------------- + +## **Documentation, testing, dev ops** + +* [Documentation Guide](Documentation.md) + * Related: [Using PlantUML](UsingPlantUml.md), [Using Netlify](UsingNetlify.md) +* [Testing Guide](Testing.md) +* [Dev Ops Guide](DevOps.md) + * Related: [Using Gradle](UsingGradle.md) + +-------------------------------------------------------------------------------------------------------------------- + +## **Appendix: Requirements** + +### Product scope + +**Target user profile**: + +* has a need to manage a significant number of contacts +* prefer desktop apps over other types +* can type fast +* prefers typing over mouse input +* is reasonably comfortable using CLI apps + +**Value proposition**: manage contacts faster than a typical mouse/GUI driven app + + +### User Stories + +Priorities: High (must have) - `* * *`, Medium (nice to have) - `* *`, Low (unlikely to have) - `*` + +| Priority | As a …​ | I want to …​ | So that I can…​ | +| -------- | ------------------------------------------ | ------------------------------ | ---------------------------------------------------------------------- | +| `* * *` | new user | see usage instructions | refer to instructions when I forget how to use the App | +| `* * *` | user | add a new person | | +| `* * *` | user | delete a person | remove entries that I no longer need | +| `* * *` | user | find a person by name | locate details of persons without having to go through the entire list | +| `* *` | user | hide private contact details | minimize chance of someone else seeing them by accident | +| `*` | user with many persons in the address book | sort persons by name | locate a person easily | + +*{More to be added}* + +### Use Cases + +(For all use cases below, the **System** is the `AddressBook` and the **Actor** is the `user`, unless specified otherwise) + +**Use case: Delete a person** + +**MSS** + +1. User requests to list persons +2. AddressBook shows a list of persons +3. User requests to delete a specific person in the list +4. AddressBook deletes the person + + Use case ends. + +**Extensions** + +* 2a. The list is empty. + + Use case ends. + +* 3a. The given index is invalid. + + * 3a1. AddressBook shows an error message. + + Use case resumes at step 2. + +*{More to be added}* + +### Non-Functional Requirements + +1. Should work on any _mainstream OS_ as long as it has Java `11` or above installed. +2. Should be able to hold up to 1000 persons without a noticeable sluggishness in performance for typical usage. +3. A user with above average typing speed for regular English text (i.e. not code, not system admin commands) should be able to accomplish most of the tasks faster using commands than using the mouse. + +*{More to be added}* + +### Glossary + +* **Mainstream OS**: Windows, Linux, Unix, OS-X +* **Private contact detail**: A contact detail that is not meant to be shared with others + +-------------------------------------------------------------------------------------------------------------------- + +## **Appendix: Instructions for manual testing** + +Given below are instructions to test the app manually. + +
:information_source: **Note:** These instructions only provide a starting point for testers to work on; +testers are expected to do more *exploratory* testing. + +
+ +### Launch and shutdown + +1. Initial launch + + 1. Download the jar file and copy into an empty folder + + 1. Double-click the jar file Expected: Shows the GUI with a set of sample contacts. The window size may not be optimum. + +1. Saving window preferences + + 1. Resize the window to an optimum size. Move the window to a different location. Close the window. + + 1. Re-launch the app by double-clicking the jar file.
+ Expected: The most recent window size and location is retained. + +1. _{ more test cases …​ }_ + +### Deleting a person + +1. Deleting a person while all persons are being shown + + 1. Prerequisites: List all persons using the `list` command. Multiple persons in the list. + + 1. Test case: `delete 1`
+ Expected: First contact is deleted from the list. Details of the deleted contact shown in the status message. Timestamp in the status bar is updated. + + 1. Test case: `delete 0`
+ Expected: No person is deleted. Error details shown in the status message. Status bar remains the same. + + 1. Other incorrect delete commands to try: `delete`, `delete x`, `...` (where x is larger than the list size)
+ Expected: Similar to previous. + +1. _{ more test cases …​ }_ + +### Saving data + +1. Dealing with missing/corrupted data files + + 1. _{explain how to simulate a missing/corrupted file, and the expected behavior}_ + +1. _{ more test cases …​ }_ diff --git a/docs/Documentation.adoc b/docs/Documentation.adoc deleted file mode 100644 index ad90ac87bda..00000000000 --- a/docs/Documentation.adoc +++ /dev/null @@ -1,123 +0,0 @@ -= AddressBook Level 3 - Documentation -:site-section: DeveloperGuide -:toc: -:toc-title: -:toc-placement: preamble -:sectnums: -:imagesDir: images -:stylesDir: stylesheets -:xrefstyle: full -ifdef::env-github[] -:tip-caption: :bulb: -:note-caption: :information_source: -:warning-caption: :warning: -endif::[] -:repoURL: https://github.com/se-edu/addressbook-level3/tree/master - -== Introduction - -We use asciidoc for writing documentation. - -[NOTE] -We chose asciidoc over Markdown because asciidoc, although a bit more complex than Markdown, provides more flexibility in formatting. - -== Editing Documentation - -See <> to learn how to render `.adoc` files locally to preview the end result of your edits. -Alternatively, you can download the AsciiDoc plugin for IntelliJ, which allows you to preview the changes you have made to your `.adoc` files in real-time. - -== Editing Diagrams - -See <> to find out how to create and update the UML diagrams in the developer guide. - -== Publishing Documentation - -See <> to learn how to deploy GitHub Pages using Travis. - -== Converting Documentation to PDF format - -We use https://www.google.com/chrome/browser/desktop/[Google Chrome] for converting documentation to PDF format, as Chrome's PDF engine preserves hyperlinks used in webpages. - -Here are the steps to convert the project documentation files to PDF format. - -. Follow the instructions in <> to convert the AsciiDoc files in the `docs/` directory to HTML format. -. Go to your generated HTML files in the `build/docs` folder, right click on them and select `Open with` -> `Google Chrome`. -. Within Chrome, click on the `Print` option in Chrome's menu. -. Set the destination to `Save as PDF`, then click `Save` to save a copy of the file in PDF format. For best results, use the settings indicated in the screenshot below. - -.Saving documentation as PDF files in Chrome -image::chrome_save_as_pdf.png[width="300"] - -[[Docs-SiteWideDocSettings]] -== Site-wide Documentation Settings - -The link:{repoURL}/build.gradle[`build.gradle`] file specifies some project-specific https://asciidoctor.org/docs/user-manual/#attributes[asciidoc attributes] which affects how all documentation files within this project are rendered. - -[TIP] -Attributes left unset in the `build.gradle` file will use their *default value*, if any. - -[cols="1,2a,1", options="header"] -.List of site-wide attributes -|=== -|Attribute name |Description |Default value - -|`site-name` -|The name of the website. -If set, the name will be displayed near the top of the page. -|_not set_ - -|`site-githuburl` -|URL to the site's repository on https://github.com[GitHub]. -Setting this will add a "View on GitHub" link in the navigation bar. -|_not set_ - -|`site-seedu` -|Define this attribute if the project is an official SE-EDU project. -This will render the SE-EDU navigation bar at the top of the page, and add some SE-EDU-specific navigation items. -|_not set_ - -|=== - -[[Docs-PerFileDocSettings]] -== Per-file Documentation Settings - -Each `.adoc` file may also specify some file-specific https://asciidoctor.org/docs/user-manual/#attributes[asciidoc attributes] which affects how the file is rendered. - -Asciidoctor's https://asciidoctor.org/docs/user-manual/#builtin-attributes[built-in attributes] may be specified and used as well. - -[TIP] -Attributes left unset in `.adoc` files will use their *default value*, if any. - -[cols="1,2a,1", options="header"] -.List of per-file attributes, excluding Asciidoctor's built-in attributes -|=== -|Attribute name |Description |Default value - -|`site-section` -|Site section that the document belongs to. -This will cause the associated item in the navigation bar to be highlighted. -One of: `UserGuide`, `DeveloperGuide`, ``LearningOutcomes``{asterisk}, `AboutUs`, `ContactUs` - -_{asterisk} Official SE-EDU projects only_ -|_not set_ - -|`no-site-header` -|Set this attribute to remove the site navigation bar. -|_not set_ - -|=== - -== Site Template - -The files in link:{repoURL}/docs/stylesheets[`docs/stylesheets`] are the https://developer.mozilla.org/en-US/docs/Web/CSS[CSS stylesheets] of the site. -You can modify them to change some properties of the site's design. - -The files in link:{repoURL}/docs/templates[`docs/templates`] controls the rendering of `.adoc` files into HTML5. -These template files are written in a mixture of https://www.ruby-lang.org[Ruby] and http://slim-lang.com[Slim]. - -[WARNING] -==== -Modifying the template files in link:{repoURL}/docs/templates[`docs/templates`] requires some knowledge and experience with Ruby and Asciidoctor's API. -You should only modify them if you need greater control over the site's layout than what stylesheets can provide. -The SE-EDU team does not provide support for modified template files. -==== diff --git a/docs/Documentation.md b/docs/Documentation.md new file mode 100644 index 00000000000..7937be91991 --- /dev/null +++ b/docs/Documentation.md @@ -0,0 +1,72 @@ +--- +layout: page +title: Documentation +--- + +* Table of Contents +{:toc} + +-------------------------------------------------------------------------------------------------------------------- + +## Style guidance + +Follow the [**Google developer documentation style guide**](https://developers.google.com/style). + +-------------------------------------------------------------------------------------------------------------------- + +## Publishing documentation + +We use [**Jekyll**](https://jekyllrb.com/) to manage documentation. As GitHub has native support for Jekyll, it can convert your documentation into HTML and deploy it on the `githhub.io` URL of your project. + +Do the following to set up the GitHub pages website of your project: +1. Go to your repo's `settings` tab. +1. Scroll down to the `GitHub Pages` section. +1. Set the `Source` to `master branch /docs folder`. + +-------------------------------------------------------------------------------------------------------------------- + +## Updating contents + +Jekyll uses [**kramdown**](https://kramdown.gettalong.org/syntax.html) (a superset of Markdown) for writing content. You can use Intellij (or any other text editor) to update the relevant `.md` files. + +
:bulb: **Recommendation:** Limit your content to Markdown and GFMD syntax only i.e., avoid kramdown-specific syntax that are not compatible with Markdown/GFMD + +
+ +* **Editing diagrams**: See [Using PlantUml](UsingPlantUml.md) to find out how to create and update the UML diagrams in the developer guide. +* **Previewing changes locally**: There are several ways to preview changes locally. + * **Option 1 -- Intellij preview**: Intellij supports previewing Markdown files, as explained [here](https://www.jetbrains.com/help/idea/markdown.html). While the preview shown by Intellij is somewhat rudimentary, it is good enough for most cases. + * **Option 2 -- Run Jekyll locally**: You can [set up Jekyll locally and run it](https://help.github.com/en/github/working-with-github-pages/testing-your-github-pages-site-locally-with-jekyll) to see the exact way the update affects the final outcome. +* **Previewing changes on GitHub**: + * **Option 1 -- Github preview**: You can see a basic preview of the page by navigating to the corresponding `.md` source file in GitHub. + * **Option 2 -- Use Netlify PR preview**: You can [set up Netlify to show previews of PRs](UsingNetlify.md). This method shows a preview of the exact way the update affects the final outcome. However, note that Netlify has a limit on monthly build minutes, likely insufficient for an active project. + +-------------------------------------------------------------------------------------------------------------------- + +## Site-wide documentation settings +The `_config.yml` file specifies some project-specific attributes which affect all the documentation within this project. + +|Attribute|Description| +|---------|-----------| +|`title`|The title of your site, usually the name of your project.| + +The files in `docs/_include` and `docs/_layouts` control the template of the pages; the files in `docs/_sass` control the style of the pages. + +
:warning: **Warning:** + +Modifying these files requires some knowledge and experience with Jekyll. You should only modify them if you need greater control over the site’s layout. The SE-EDU team does not provide support for modified template files. +
+ +-------------------------------------------------------------------------------------------------------------------- + +## Converting a document to the PDF format + +**Use [Google Chrome](https://www.google.com/chrome/browser/desktop/) (:exclamation: NOT any other Browser)** for converting documentation to PDF format. Reason: Chrome’s PDF engine preserves hyperlinks used in Web pages. + +Here are the steps to convert the project documentation files to PDF format. +1. Go to your generated documentation site on GitHub using Chrome. +1. Within Chrome, click on the `Print` option in Chrome’s menu. +1. Set the destination to `Save as PDF`, then click `Save` to save a copy of the file in PDF format. For best results, use the settings indicated in the screenshot below. + +![Saving documentation as PDF files in Chrome](images/chrome_save_as_pdf.png) + diff --git a/docs/Gemfile b/docs/Gemfile new file mode 100644 index 00000000000..bf0110f33cb --- /dev/null +++ b/docs/Gemfile @@ -0,0 +1,9 @@ +# frozen_string_literal: true + +source "https://rubygems.org" + +git_source(:github) {|repo_name| "https://github.com/#{repo_name}" } + +gem 'jekyll' +gem 'github-pages', group: :jekyll_plugins +gem 'wdm', '~> 0.1.0' if Gem.win_platform? \ No newline at end of file diff --git a/docs/Gemfile.lock b/docs/Gemfile.lock new file mode 100644 index 00000000000..4caff5b900c --- /dev/null +++ b/docs/Gemfile.lock @@ -0,0 +1,251 @@ +GEM + remote: https://rubygems.org/ + specs: + activesupport (6.0.3.1) + concurrent-ruby (~> 1.0, >= 1.0.2) + i18n (>= 0.7, < 2) + minitest (~> 5.1) + tzinfo (~> 1.1) + zeitwerk (~> 2.2, >= 2.2.2) + addressable (2.7.0) + public_suffix (>= 2.0.2, < 5.0) + coffee-script (2.4.1) + coffee-script-source + execjs + coffee-script-source (1.11.1) + colorator (1.1.0) + commonmarker (0.17.13) + ruby-enum (~> 0.5) + concurrent-ruby (1.1.6) + dnsruby (1.61.3) + addressable (~> 2.5) + em-websocket (0.5.1) + eventmachine (>= 0.12.9) + http_parser.rb (~> 0.6.0) + ethon (0.12.0) + ffi (>= 1.3.0) + eventmachine (1.2.7-x64-mingw32) + execjs (2.7.0) + faraday (1.0.1) + multipart-post (>= 1.2, < 3) + ffi (1.12.2-x64-mingw32) + forwardable-extended (2.6.0) + gemoji (3.0.1) + github-pages (204) + github-pages-health-check (= 1.16.1) + jekyll (= 3.8.5) + jekyll-avatar (= 0.7.0) + jekyll-coffeescript (= 1.1.1) + jekyll-commonmark-ghpages (= 0.1.6) + jekyll-default-layout (= 0.1.4) + jekyll-feed (= 0.13.0) + jekyll-gist (= 1.5.0) + jekyll-github-metadata (= 2.13.0) + jekyll-mentions (= 1.5.1) + jekyll-optional-front-matter (= 0.3.2) + jekyll-paginate (= 1.1.0) + jekyll-readme-index (= 0.3.0) + jekyll-redirect-from (= 0.15.0) + jekyll-relative-links (= 0.6.1) + jekyll-remote-theme (= 0.4.1) + jekyll-sass-converter (= 1.5.2) + jekyll-seo-tag (= 2.6.1) + jekyll-sitemap (= 1.4.0) + jekyll-swiss (= 1.0.0) + jekyll-theme-architect (= 0.1.1) + jekyll-theme-cayman (= 0.1.1) + jekyll-theme-dinky (= 0.1.1) + jekyll-theme-hacker (= 0.1.1) + jekyll-theme-leap-day (= 0.1.1) + jekyll-theme-merlot (= 0.1.1) + jekyll-theme-midnight (= 0.1.1) + jekyll-theme-minimal (= 0.1.1) + jekyll-theme-modernist (= 0.1.1) + jekyll-theme-primer (= 0.5.4) + jekyll-theme-slate (= 0.1.1) + jekyll-theme-tactile (= 0.1.1) + jekyll-theme-time-machine (= 0.1.1) + jekyll-titles-from-headings (= 0.5.3) + jemoji (= 0.11.1) + kramdown (= 1.17.0) + liquid (= 4.0.3) + mercenary (~> 0.3) + minima (= 2.5.1) + nokogiri (>= 1.10.4, < 2.0) + rouge (= 3.13.0) + terminal-table (~> 1.4) + github-pages-health-check (1.16.1) + addressable (~> 2.3) + dnsruby (~> 1.60) + octokit (~> 4.0) + public_suffix (~> 3.0) + typhoeus (~> 1.3) + html-pipeline (2.12.3) + activesupport (>= 2) + nokogiri (>= 1.4) + http_parser.rb (0.6.0) + i18n (0.9.5) + concurrent-ruby (~> 1.0) + jekyll (3.8.5) + addressable (~> 2.4) + colorator (~> 1.0) + em-websocket (~> 0.5) + i18n (~> 0.7) + jekyll-sass-converter (~> 1.0) + jekyll-watch (~> 2.0) + kramdown (~> 1.14) + liquid (~> 4.0) + mercenary (~> 0.3.3) + pathutil (~> 0.9) + rouge (>= 1.7, < 4) + safe_yaml (~> 1.0) + jekyll-avatar (0.7.0) + jekyll (>= 3.0, < 5.0) + jekyll-coffeescript (1.1.1) + coffee-script (~> 2.2) + coffee-script-source (~> 1.11.1) + jekyll-commonmark (1.3.1) + commonmarker (~> 0.14) + jekyll (>= 3.7, < 5.0) + jekyll-commonmark-ghpages (0.1.6) + commonmarker (~> 0.17.6) + jekyll-commonmark (~> 1.2) + rouge (>= 2.0, < 4.0) + jekyll-default-layout (0.1.4) + jekyll (~> 3.0) + jekyll-feed (0.13.0) + jekyll (>= 3.7, < 5.0) + jekyll-gist (1.5.0) + octokit (~> 4.2) + jekyll-github-metadata (2.13.0) + jekyll (>= 3.4, < 5.0) + octokit (~> 4.0, != 4.4.0) + jekyll-mentions (1.5.1) + html-pipeline (~> 2.3) + jekyll (>= 3.7, < 5.0) + jekyll-optional-front-matter (0.3.2) + jekyll (>= 3.0, < 5.0) + jekyll-paginate (1.1.0) + jekyll-readme-index (0.3.0) + jekyll (>= 3.0, < 5.0) + jekyll-redirect-from (0.15.0) + jekyll (>= 3.3, < 5.0) + jekyll-relative-links (0.6.1) + jekyll (>= 3.3, < 5.0) + jekyll-remote-theme (0.4.1) + addressable (~> 2.0) + jekyll (>= 3.5, < 5.0) + rubyzip (>= 1.3.0) + jekyll-sass-converter (1.5.2) + sass (~> 3.4) + jekyll-seo-tag (2.6.1) + jekyll (>= 3.3, < 5.0) + jekyll-sitemap (1.4.0) + jekyll (>= 3.7, < 5.0) + jekyll-swiss (1.0.0) + jekyll-theme-architect (0.1.1) + jekyll (~> 3.5) + jekyll-seo-tag (~> 2.0) + jekyll-theme-cayman (0.1.1) + jekyll (~> 3.5) + jekyll-seo-tag (~> 2.0) + jekyll-theme-dinky (0.1.1) + jekyll (~> 3.5) + jekyll-seo-tag (~> 2.0) + jekyll-theme-hacker (0.1.1) + jekyll (~> 3.5) + jekyll-seo-tag (~> 2.0) + jekyll-theme-leap-day (0.1.1) + jekyll (~> 3.5) + jekyll-seo-tag (~> 2.0) + jekyll-theme-merlot (0.1.1) + jekyll (~> 3.5) + jekyll-seo-tag (~> 2.0) + jekyll-theme-midnight (0.1.1) + jekyll (~> 3.5) + jekyll-seo-tag (~> 2.0) + jekyll-theme-minimal (0.1.1) + jekyll (~> 3.5) + jekyll-seo-tag (~> 2.0) + jekyll-theme-modernist (0.1.1) + jekyll (~> 3.5) + jekyll-seo-tag (~> 2.0) + jekyll-theme-primer (0.5.4) + jekyll (> 3.5, < 5.0) + jekyll-github-metadata (~> 2.9) + jekyll-seo-tag (~> 2.0) + jekyll-theme-slate (0.1.1) + jekyll (~> 3.5) + jekyll-seo-tag (~> 2.0) + jekyll-theme-tactile (0.1.1) + jekyll (~> 3.5) + jekyll-seo-tag (~> 2.0) + jekyll-theme-time-machine (0.1.1) + jekyll (~> 3.5) + jekyll-seo-tag (~> 2.0) + jekyll-titles-from-headings (0.5.3) + jekyll (>= 3.3, < 5.0) + jekyll-watch (2.2.1) + listen (~> 3.0) + jemoji (0.11.1) + gemoji (~> 3.0) + html-pipeline (~> 2.2) + jekyll (>= 3.0, < 5.0) + kramdown (1.17.0) + liquid (4.0.3) + listen (3.2.1) + rb-fsevent (~> 0.10, >= 0.10.3) + rb-inotify (~> 0.9, >= 0.9.10) + mercenary (0.3.6) + mini_portile2 (2.4.0) + minima (2.5.1) + jekyll (>= 3.5, < 5.0) + jekyll-feed (~> 0.9) + jekyll-seo-tag (~> 2.1) + minitest (5.14.1) + multipart-post (2.1.1) + nokogiri (1.10.9-x64-mingw32) + mini_portile2 (~> 2.4.0) + octokit (4.18.0) + faraday (>= 0.9) + sawyer (~> 0.8.0, >= 0.5.3) + pathutil (0.16.2) + forwardable-extended (~> 2.6) + public_suffix (3.1.1) + rb-fsevent (0.10.4) + rb-inotify (0.10.1) + ffi (~> 1.0) + rouge (3.13.0) + ruby-enum (0.8.0) + i18n + rubyzip (2.3.0) + safe_yaml (1.0.5) + sass (3.7.4) + sass-listen (~> 4.0.0) + sass-listen (4.0.0) + rb-fsevent (~> 0.9, >= 0.9.4) + rb-inotify (~> 0.9, >= 0.9.7) + sawyer (0.8.2) + addressable (>= 2.3.5) + faraday (> 0.8, < 2.0) + terminal-table (1.8.0) + unicode-display_width (~> 1.1, >= 1.1.1) + thread_safe (0.3.6) + typhoeus (1.4.0) + ethon (>= 0.9.0) + tzinfo (1.2.7) + thread_safe (~> 0.1) + unicode-display_width (1.7.0) + wdm (0.1.1) + zeitwerk (2.3.0) + +PLATFORMS + x64-mingw32 + +DEPENDENCIES + github-pages + jekyll + wdm (~> 0.1.0) + +BUNDLED WITH + 2.1.4 diff --git a/docs/LearningOutcomes.adoc b/docs/LearningOutcomes.adoc deleted file mode 100644 index 436c1777617..00000000000 --- a/docs/LearningOutcomes.adoc +++ /dev/null @@ -1,216 +0,0 @@ -= Learning Outcomes -:site-section: LearningOutcomes -:toc: macro -:toc-title: -:toclevels: 1 -:imagesDir: images -:stylesDir: stylesheets -ifdef::env-github[] -:note-caption: :information_source: -endif::[] - -After studying this code and completing the corresponding exercises, you should be able to, - -toc::[] - -== Utilize User Stories `[LO-UserStories]` - -=== References - -* https://se-edu.github.io/se-book/specifyingRequirements/userStories/[se-edu/se-book: Requirements: Specifying Requirements: User Stories] - -=== Exercise: Add more user stories - -* Assume you are planing to expand the functionality of the AddressBook (but keep it as a CLI application). -What other user stories do you think AddressBook should support? Add those user stories to the `DeveloperGuide.adoc`. - -== Utilize use cases `[LO-UseCases]` - -=== References - -* https://se-edu.github.io/se-book/specifyingRequirements/useCases/[se-edu/se-book: Requirements: Specifying Requirements: Use Cases] - -=== Exercise: Add a 'Rename tag' use case - -* Add a use case to the `DeveloperGuide.adoc` to cover the case of _renaming of an existing tag_. -e.g. rename the tag `friends` to `buddies` (i.e. all persons who had the `friends` tag will now have -a `buddies` tag instead) -Assume that AddressBook confirms the change with the user before carrying out the operation. - -== Use Non Functional Requirements `[LO-NFR]` - -=== References - -* https://se-edu.github.io/se-book/requirements/nonFunctionalRequirements/[se-edu/se-book: Requirements: Non-Functional Requirements] - -=== Exercise: Add more NFRs - -* Add some more NFRs to the `DeveloperGuide.adoc` - -== Use Polymorphism `[LO-Polymorphism]` - -Note how the `Command::execute()` method shows polymorphic behavior. - -=== References - -* https://se-edu.github.io/se-book/oop/polymorphism/[se-edu/se-book: Paradigms: OOP: Polymorphism] -* https://se-edu.github.io/se-book/cppToJava/inheritance/polymorphism/[se-edu/se-book: C++ to Java: OOP: Polymorphism] - -=== Exercise: Add a polymorphic `isMutating` method - -* Add a method `boolean isMutating()` to the `Command` class. This method will return `true` for -command types that mutate the data. e.g. `AddCommand` -* Currently, AddressBook data are saved to the file after every command. -Take advantage of the the new method you added to limit file saving to only for command types that mutate data. -i.e. `add` command should always save the data while `list` command should never save data to the file. - -[NOTE] -==== -There may be better ways to limit file saving to commands that mutate data. The above approach, while not -optimal, will give you chance to implement a polymorphic behavior. -==== - -== Use abstract classes/methods `[LO-Abstract]` - -=== References - -* https://se-edu.github.io/se-book/oop/inheritance/abstractClasses/[se-edu/se-book: Paradigms: OOP: Abstract Classes] -* https://se-edu.github.io/se-book/cppToJava/inheritance/abstractClassesAndMethods/[se-edu/se-book: C++ to Java: OOP: Abstract Classes] - -=== Exercise: Make `Command#execute()` method abstract - -* Make the `Command#execute()` method abstract (hint: refer to the comment given below the method) - -== Use interfaces `[LO-Interfaces]` - -Note how the `AddressBook` class implements the `ReadOnlyAddressBook` interface so that clients who don't need write access to the `AddressBook` can access the `AddressBook` through the `ReadOnlyAddressBook` interface instead. - -image::ReadOnlyAddressBookUsage.png[width=500] - -=== References - -* https://se-edu.github.io/se-book/oop/inheritance/interfaces/[se-edu/se-book: Paradigms: OOP: Abstract Interfaces] -* https://se-edu.github.io/se-book/cppToJava/inheritance/interfaces/[se-edu/se-book: C++ to Java: OOP: Abstract Interfaces] - -=== Exercise: Add a `Printable` interface - -* Add a `Printable` interface as follows. -+ -image::PrintableInterface.png[width=400] -* `Override` the `getPrintableString` in classes `Name`, `Phone`, `Email`, and `Address` so that each produces a printable string representation of the object. e.g. `Name: John Smith`, `Phone: 12349862` -* Add the following method in a suitable place of some other class. Note how the method depends on the Interface. -+ -[source,java] ----- -/** - * Returns a concatenated version of the printable strings of each object. - */ -String getPrintableString(Printable... printables) { ----- -+ -The above method can be used to get a printable string representing a bunch of person details. -For example, you should be able to call that method like this: -+ -[source,java] ----- -// p is a Person object -return getPrintableString(p.getPhone(), p.getEmail(), p.getAddress()); ----- - -== Follow Liskov Substitution Principle `[LO-LSP]` - -=== References - -* https://se-edu.github.io/se-book/principles/liskovSubstitutionPrinciple/[se-edu/se-book: Principles: Liskov Substitution Principle] - -=== Exercise: Add an exception to an overridden method - -* Add a `throws Exception` clause to the `AddCommand::execute` method. Notice how Java compiler will not allow it, -unless you add the same `throws` clause to the parent class method. This is because if a child class throws -an exception that is not specified by the Parent's contract, the child class is no longer substitutable in place of -the parent class. -* Also note that while in the above example the compiler enforces LSP, there are other situations where it is up to -the programmer to enforce it. For example, if the method in the parent class works for `null` input, the overridden -method in the child class should not reject `null` inputs. This will not be enforced by the compiler. - -== Use Java-FX for GUI programming `[LO-JavaFx]` - -=== References - -* https://se-edu.github.io/se-book/javaTools/javaFXBasic/[se-edu/se-book: Tools: Java: JavaFX: Basic] - -=== Exercise: Enhance GUI - -* Do some enhancements to the AddressBook GUI. e.g. add an application icon, change font size/style - -== Analyze Coupling and Cohesion of designs `[LO-CouplingCohesion]` - -* Notice how having a separate `ParserUtil` class to handle user input validation, space trimming etc. of model data (an application of the Single Responsibility Principle) improves the _cohesion_ of the model component (since it does not need to be concerned with handling user input) as well as the `ParserUtil` class. - -=== References - -* https://se-edu.github.io/se-book/designFundamentals/coupling/[se-edu/se-book: Design: Design Principles: Coupling] -* https://se-edu.github.io/se-book/designFundamentals/cohesion/[se-edu/se-book: Design: Design Principles: Cohesion] - -=== Exercise: Identify places to reduce coupling and increase cohesion - -* Where else in the design coupling can be reduced further, or cohesion can be increased further? - -[[apply-dependency-inversion-principle-lo-dip]] -== Apply Dependency Inversion Principle `[LO-DIP]` - -* Note how the `LogicManager` class doesn't depend on `StorageManager` directly, but rather the interface `Storage`. -This is an application of the Dependency Inversion Principle. -+ -image::LogicStorageDIP.png[width=300] -* Where else in the code do you notice the application of DIP? - -=== References - -* https://se-edu.github.io/se-book/principles/dependencyInversionPrinciple/[se-edu/se-book: Principles: Dependency Inversion Principle] - -== Use Dependency Injection `[LO-DI]` - -Notice how the `LogicManager` class does not depend on the `StorageManager` class, but depends on the `Storage` interface. -This allows us to use _Dependency Injection_ to test the `LogicManager` class without getting the `StorageManager` class involved. - -=== References - -* https://se-edu.github.io/se-book/testing/dependencyInjection/[se-edu/se-book: Quality Assurance: Testing: Dependency Injection] - -=== Exercise: Facilitate injecting a StorageStub - -* Notice how `LogicManagerTest` tests `LogicManager` by constructing a `StorageManager` object. -* Implement `StorageStub` such that calls to its `save*` methods do nothing (i.e. empty method body). -* Update `LogicManagerTest` to work with the `StorageStub` instead of the actual `StorageManager` object. -i.e. `LogicManagerTest` injects a `StorageStub` object when constructing a `LogicManager` before testing it. -+ -image::DependencyInjection.png[width=600] -* The example above uses <> as a means to achieve DI. -Note that there is another way to inject a `StorageStub` object, as shown below. -In this case we do not apply the DIP but we still achieve DI. -+ -image::DependencyInjectionWithoutDIP.png[width=250] - -== Apply Open-Closed Principle `[LO-OCP]` - -=== References - -* https://se-edu.github.io/se-book/principles/openClosedPrinciple/[se-edu/se-book: Principles: Open-Closed Principle] - -=== Exercise: Analyze OCP-compliance of the `LogicManager` class - -* Consider adding a new command to the Address Book. e.g. an `edit` command. Notice how little you need to change in the `LogicManager` class to extend its behavior so that it can execute the new command. -That is because `LogicManager` follows the OCP i.e. `LogicManager` is _open to be extended_ with more commands but _closed for modifications_. -* Is it possible to make the `AddressBookParser` class more OCP-compliant in terms of extending it to handle more -command types? -* In terms of how it saves data, is `LogicManager` more OCP-compliant -due to the application of DIP as given in <>? -How can you improve ``LogicManager``'s OCP-compliance further so that it can not only work with different types -of storages, but different number of storages (e.g. save to both a text file and a database). - -== Work in a 3KLoC code base `[LO-3KLoC]` - -=== Exercise: Enhance AddressBook - -* Enhance AddressBook in some way. e.g. add a new command diff --git a/docs/SettingUp.adoc b/docs/SettingUp.adoc deleted file mode 100644 index c0659782fab..00000000000 --- a/docs/SettingUp.adoc +++ /dev/null @@ -1,84 +0,0 @@ -= AddressBook Level 3 - Setting Up -:site-section: DeveloperGuide -:toc: -:toc-title: -:toc-placement: preamble -:sectnums: -:imagesDir: images -:stylesDir: stylesheets -:xrefstyle: full -ifdef::env-github[] -:tip-caption: :bulb: -:note-caption: :information_source: -:warning-caption: :warning: -endif::[] -:repoURL: https://github.com/se-edu/addressbook-level3/tree/master - -== Prerequisites - -. *JDK `11`* or above -. *IntelliJ* IDE -+ -[NOTE] -IntelliJ by default has Gradle and JavaFx plugins installed. + -Do not disable them. If you have disabled them, go to `File` > `Settings` > `Plugins` to re-enable them. - -== Setting up the project in your computer - -. Fork this repo, and clone the fork to your computer -. Open IntelliJ (if you are not in the welcome screen, click `File` > `Close Project` to close the existing project dialog first) -. Set up the correct JDK version for Gradle -.. Click `Configure` > `Project Defaults` > `Project Structure` -.. Click `New...` and find the directory of the JDK -. Click `Import Project` -. Locate the `build.gradle` file and select it. Click `OK` -. Click `Open as Project` -. Click `OK` to accept the default settings. - -== Verifying the setup - -. Run the `seedu.address.Main` and try a few commands -. <> to ensure they all pass. - -== Configurations to do before writing code - -=== Configuring the coding style - -This project follows https://github.com/oss-generic/process/blob/master/docs/CodingStandards.adoc[oss-generic coding standards]. IntelliJ's default style is mostly compliant with ours but it uses a different import order from ours. To rectify, - -. Go to `File` > `Settings...` (Windows/Linux), or `IntelliJ IDEA` > `Preferences...` (macOS) -. Select `Editor` > `Code Style` > `Java` -. Click on the `Imports` tab to set the order - -* For `Class count to use import with '\*'` and `Names count to use static import with '*'`: Set to `999` to prevent IntelliJ from contracting the import statements -* For `Import Layout`: The order is `import static all other imports`, `import java.\*`, `import javax.*`, `import org.\*`, `import com.*`, `import all other imports`. Add a `` between each `import` - -Optionally, you can follow the <> document to configure Intellij to check style-compliance as you write code. - -=== Updating documentation to match your fork - -After forking the repo, the documentation will still have the SE-EDU branding and refer to the `se-edu/addressbook-level3` repo. - -If you plan to develop this fork as a separate product (i.e. instead of contributing to `se-edu/addressbook-level3`), you should do the following: - -. Configure the <> in link:{repoURL}/build.gradle[`build.gradle`], such as the `site-name`, to suit your own project. - -. Replace the URL in the attribute `repoURL` in link:{repoURL}/docs/DeveloperGuide.adoc[`DeveloperGuide.adoc`] and link:{repoURL}/docs/UserGuide.adoc[`UserGuide.adoc`] with the URL of your fork. - -=== Setting up CI - -Set up Travis to perform Continuous Integration (CI) for your fork. See <> to learn how to set it up. - -After setting up Travis, you can optionally set up coverage reporting for your team fork (see <>). - -[NOTE] -Coverage reporting could be useful for a team repository that hosts the final version but it is not that useful for your personal fork. - -Optionally, you can set up AppVeyor as a second CI (see <>). - -[NOTE] -Having both Travis and AppVeyor ensures your App works on both Unix-based platforms and Windows-based platforms (Travis is Unix-based and AppVeyor is Windows-based) - -=== Getting started with coding - -When you are ready to start coding, we recommend that you get some sense of the overall design by reading about <>. diff --git a/docs/SettingUp.md b/docs/SettingUp.md new file mode 100644 index 00000000000..8951332680a --- /dev/null +++ b/docs/SettingUp.md @@ -0,0 +1,84 @@ +--- +layout: page +title: Setting up and getting started +--- + +* Table of Contents +{:toc} + + +-------------------------------------------------------------------------------------------------------------------- + +## Setting up the project in your computer + +1. Ensure you have the following prerequisites: + * **JDK `11`** or above + * **IntelliJ** IDE: IntelliJ by default has Gradle and JavaFx plugins installed. Do not disable them. If you have disabled them, go to `File` \> `Settings` \> `Plugins` to re-enable them. +1. Fork this repo, and clone the fork to your computer. +1. Open IntelliJ (if you are not in the welcome screen, click `File` \> `Close Project` to close the existing project dialog first). +1. Set up the correct JDK version for Gradle. + 1. Click `Configure` \> `Project Defaults` \> `Project Structure` + 1. Click `New…​` and set it to the directory of the JDK. +1. Click `Import Project` (or `Open or Import` in newer version of Intellij). +1. Locate the `build.gradle` file and select it. Click `OK`. +1. Click `Open as Project`. +1. Click `OK` to accept the default settings. +1. To verify the setup, + 1. run the `seedu.address.Main` and try a few commands + 1. [run the tests](Testing.md) to ensure they all pass + +
:exclamation: Caution: + +Before writing code, there are some configurations that you need to do. They are given in the section below. + +
+ +-------------------------------------------------------------------------------------------------------------------- + +## Before writing code + +### Configure the coding style + +This project follows [oss-generic coding standards](https://oss-generic.github.io/process/docs/CodingStandards.html). IntelliJ’s default style is mostly compliant with ours but it uses a different import order from ours. To rectify, + +1. Go to `File` \> `Settings…​` (Windows/Linux), or `IntelliJ IDEA` \> `Preferences…​` (macOS). +1. Select `Editor` \> `Code Style` \> `Java`. +1. Click on the `Imports` tab to set the import order. + * For `Class count to use import with '*'` and `Names count to use static import with '*'`: Set to `999` to prevent IntelliJ from contracting the import statements. + * For `Import Layout`: The order is:
+ `import static all other imports`
+ ``
+ `import java.*`
+ ``
+ `import javax.*`
+ ``
+ `import org.*`
+ ``
+ `import com.*`
+ ``
+ `import all other imports`
+1. Click on the `Wrapping and Braces` tab and un-tick the `Indent 'case' branches` option.
+ ![](images/intellijCodeStyle-switch.png) + + +
:bulb: **Tip:** + +Optionally, you can follow the [Using Checkstyle](UsingCheckstyle.md) document to configure Intellij to check style-compliance as you write code. + +
+ +### Set up CI + +This project comes with a GitHub Actions config files (in `.github/workflows` folder). When GitHub detects those files, it will run the CI for your project automatically at each push to the `master` branch or to any PR. No set up required. + + +### Learn the design + +When you are ready to start coding, we recommend that you get some sense of the overall design by reading about [AddressBook’s architecture](DeveloperGuide.md). + +### Do the tutorials + +These tutorials will help you get acquainted with the codebase. + +* [Tracing Code](tutorials/TracingCode.md) +* [Removing Fields](tutorials/RemovingFields.md) \ No newline at end of file diff --git a/docs/Testing.adoc b/docs/Testing.adoc deleted file mode 100644 index 5767b92912c..00000000000 --- a/docs/Testing.adoc +++ /dev/null @@ -1,52 +0,0 @@ -= AddressBook Level 3 - Testing -:site-section: DeveloperGuide -:toc: -:toc-title: -:toc-placement: preamble -:sectnums: -:imagesDir: images -:stylesDir: stylesheets -:xrefstyle: full -ifdef::env-github[] -:tip-caption: :bulb: -:note-caption: :information_source: -:warning-caption: :warning: -endif::[] -:repoURL: https://github.com/se-edu/addressbook-level3/tree/master - -== Running Tests - -There are two ways to run tests. - -*Method 1: Using IntelliJ JUnit test runner* - -* To run all tests, right-click on the `src/test/java` folder and choose `Run 'All Tests'` -* To run a subset of tests, you can right-click on a test package, test class, or a test and choose `Run 'ABC'` - -*Method 2: Using Gradle* - -* Open a console and run the command `gradlew clean test` (Mac/Linux: `./gradlew clean test`) - -[NOTE] -See <> for more info on how to run tests using Gradle. - -== Types of tests - -We have three types of tests: - -. _Unit tests_ targeting the lowest level methods/classes. + -e.g. `seedu.address.commons.StringUtilTest` -. _Integration tests_ that are checking the integration of multiple code units (those code units are assumed to be working). + -e.g. `seedu.address.storage.StorageManagerTest` -. Hybrids of unit and integration tests. These test are checking multiple code units as well as how the are connected together. + -e.g. `seedu.address.logic.LogicManagerTest` - - -== Troubleshooting Testing -**Problem: Keyboard and mouse movements are not simulated on macOS Mojave, resulting in GUI Tests failure.** - -* Reason: From macOS Mojave onwards, applications without `Accessibility` permission cannot simulate certain keyboard and mouse movements. -* Solution: Open `System Preferences`, click `Security and Privacy` -> `Privacy` -> `Accessibility`, and check the box beside `Intellij IDEA`. - -.`Accessibility` permission is granted to `IntelliJ IDEA` -image::testfx-idea-accessibility-permissions.png[width="600"] diff --git a/docs/Testing.md b/docs/Testing.md new file mode 100644 index 00000000000..72a0f73adce --- /dev/null +++ b/docs/Testing.md @@ -0,0 +1,36 @@ +--- +layout: page +title: Testing Guide +--- + +* Table of Contents +{:toc} + +-------------------------------------------------------------------------------------------------------------------- + +## Running tests + +There are two ways to run tests. + +* **Method 1: Using IntelliJ JUnit test runner** + * To run all tests, right-click on the `src/test/java` folder and choose `Run 'All Tests'` + * To run a subset of tests, you can right-click on a test package, + test class, or a test and choose `Run 'ABC'` +* **Method 2: Using Gradle** + * Open a console and run the command `gradlew clean test` (Mac/Linux: `./gradlew clean test`) + +
:link: **Link**: See [Using Gradle](UsingGradle.md) for more info on how to run tests using Gradle. +
+ +-------------------------------------------------------------------------------------------------------------------- + +## Types of tests + +This project has three types of tests: + +1. *Unit tests* targeting the lowest level methods/classes.
+ e.g. `seedu.address.commons.StringUtilTest` +1. *Integration tests* that are checking the integration of multiple code units (those code units are assumed to be working).
+ e.g. `seedu.address.storage.StorageManagerTest` +1. Hybrids of unit and integration tests. These test are checking multiple code units as well as how the are connected together.
+ e.g. `seedu.address.logic.LogicManagerTest` \ No newline at end of file diff --git a/docs/UserGuide.adoc b/docs/UserGuide.adoc deleted file mode 100644 index 4e5d297a19f..00000000000 --- a/docs/UserGuide.adoc +++ /dev/null @@ -1,177 +0,0 @@ -= AddressBook Level 3 - User Guide -:site-section: UserGuide -:toc: -:toc-title: -:toc-placement: preamble -:sectnums: -:imagesDir: images -:stylesDir: stylesheets -:xrefstyle: full -:experimental: -ifdef::env-github[] -:tip-caption: :bulb: -:note-caption: :information_source: -endif::[] -:repoURL: https://github.com/se-edu/addressbook-level3 - -By: `Team SE-EDU` Since: `Jun 2016` Licence: `MIT` - -== Introduction - -AddressBook Level 3 (AB3) is for those who *prefer to use a desktop app for managing contacts*. More importantly, AB3 is *optimized for those who prefer to work with a Command Line Interface* (CLI) while still having the benefits of a Graphical User Interface (GUI). If you can type fast, AB3 can get your contact management tasks done faster than traditional GUI apps. Interested? Jump to the <> to get started. Enjoy! - -== Quick Start - -. Ensure you have Java `11` or above installed in your Computer. -. Download the latest `addressbook.jar` link:{repoURL}/releases[here]. -. Copy the file to the folder you want to use as the home folder for your Address Book. -. Double-click the file to start the app. The GUI should appear in a few seconds. -+ -image::Ui.png[width="790"] -+ -. Type the command in the command box and press kbd:[Enter] to execute it. + -e.g. typing *`help`* and pressing kbd:[Enter] will open the help window. -. Some example commands you can try: - -* *`list`* : lists all contacts -* **`add`**`n/John Doe p/98765432 e/johnd@example.com a/John street, block 123, #01-01` : adds a contact named `John Doe` to the Address Book. -* **`delete`**`3` : deletes the 3rd contact shown in the current list -* *`exit`* : exits the app - -. Refer to <> for details of each command. - -[[Features]] -== Features - -==== -*Command Format* - -* Words in `UPPER_CASE` are the parameters to be supplied by the user e.g. in `add n/NAME`, `NAME` is a parameter which can be used as `add n/John Doe`. -* Items in square brackets are optional e.g `n/NAME [t/TAG]` can be used as `n/John Doe t/friend` or as `n/John Doe`. -* Items with `…`​ after them can be used multiple times including zero times e.g. `[t/TAG]...` can be used as `{nbsp}` (i.e. 0 times), `t/friend`, `t/friend t/family` etc. -* Parameters can be in any order e.g. if the command specifies `n/NAME p/PHONE_NUMBER`, `p/PHONE_NUMBER n/NAME` is also acceptable. -==== - -=== Viewing help : `help` - -Format: `help` - -=== Adding a person: `add` - -Adds a person to the address book + -Format: `add n/NAME p/PHONE_NUMBER e/EMAIL a/ADDRESS [t/TAG]...` - -[TIP] -A person can have any number of tags (including 0) - -Examples: - -* `add n/John Doe p/98765432 e/johnd@example.com a/John street, block 123, #01-01` -* `add n/Betsy Crowe t/friend e/betsycrowe@example.com a/Newgate Prison p/1234567 t/criminal` - -=== Listing all persons : `list` - -Shows a list of all persons in the address book. + -Format: `list` - -=== Editing a person : `edit` - -Edits an existing person in the address book. + -Format: `edit INDEX [n/NAME] [p/PHONE] [e/EMAIL] [a/ADDRESS] [t/TAG]...` - -**** -* Edits the person at the specified `INDEX`. The index refers to the index number shown in the displayed person list. The index *must be a positive integer* 1, 2, 3, ... -* At least one of the optional fields must be provided. -* Existing values will be updated to the input values. -* When editing tags, the existing tags of the person will be removed i.e adding of tags is not cumulative. -* You can remove all the person's tags by typing `t/` without specifying any tags after it. -**** - -Examples: - -* `edit 1 p/91234567 e/johndoe@example.com` + -Edits the phone number and email address of the 1st person to be `91234567` and `johndoe@example.com` respectively. -* `edit 2 n/Betsy Crower t/` + -Edits the name of the 2nd person to be `Betsy Crower` and clears all existing tags. - -=== Locating persons by name: `find` - -Finds persons whose names contain any of the given keywords. + -Format: `find KEYWORD [MORE_KEYWORDS]` - -**** -* The search is case insensitive. e.g `hans` will match `Hans` -* The order of the keywords does not matter. e.g. `Hans Bo` will match `Bo Hans` -* Only the name is searched. -* Only full words will be matched e.g. `Han` will not match `Hans` -* Persons matching at least one keyword will be returned (i.e. `OR` search). e.g. `Hans Bo` will return `Hans Gruber`, `Bo Yang` -**** - -Examples: - -* `find John` + -Returns `john` and `John Doe` -* `find Betsy Tim John` + -Returns any person having names `Betsy`, `Tim`, or `John` - -// tag::delete[] -=== Deleting a person : `delete` - -Deletes the specified person from the address book. + -Format: `delete INDEX` - -**** -* Deletes the person at the specified `INDEX`. -* The index refers to the index number shown in the displayed person list. -* The index *must be a positive integer* 1, 2, 3, ... -**** - -Examples: - -* `list` + -`delete 2` + -Deletes the 2nd person in the address book. -* `find Betsy` + -`delete 1` + -Deletes the 1st person in the results of the `find` command. - -// end::delete[] -=== Clearing all entries : `clear` - -Clears all entries from the address book. + -Format: `clear` - -=== Exiting the program : `exit` - -Exits the program. + -Format: `exit` - -=== Saving the data - -Address book data are saved in the hard disk automatically after any command that changes the data. + -There is no need to save manually. - -// tag::dataencryption[] -=== Encrypting data files `[coming in v2.0]` - -_{explain how the user can enable/disable data encryption}_ -// end::dataencryption[] - -== FAQ - -*Q*: How do I transfer my data to another Computer? + -*A*: Install the app in the other computer and overwrite the empty data file it creates with the file that contains the data of your previous Address Book folder. - -== Command Summary - -* *Add* `add n/NAME p/PHONE_NUMBER e/EMAIL a/ADDRESS [t/TAG]...` + -e.g. `add n/James Ho p/22224444 e/jamesho@example.com a/123, Clementi Rd, 1234665 t/friend t/colleague` -* *Clear* : `clear` -* *Delete* : `delete INDEX` + -e.g. `delete 3` -* *Edit* : `edit INDEX [n/NAME] [p/PHONE_NUMBER] [e/EMAIL] [a/ADDRESS] [t/TAG]...` + -e.g. `edit 2 n/James Lee e/jameslee@example.com` -* *Find* : `find KEYWORD [MORE_KEYWORDS]` + -e.g. `find James Jake` -* *List* : `list` -* *Help* : `help` diff --git a/docs/UserGuide.md b/docs/UserGuide.md new file mode 100644 index 00000000000..5d0883ceb55 --- /dev/null +++ b/docs/UserGuide.md @@ -0,0 +1,178 @@ +--- +layout: page +title: User Guide +--- + +AddressBook Level 3 (AB3) is a **desktop app for managing contacts, optimized for use via a Command Line Interface** (CLI) while still having the benefits of a Graphical User Interface (GUI). If you can type fast, AB3 can get your contact management tasks done faster than traditional GUI apps. + +* Table of Contents +{:toc} + +-------------------------------------------------------------------------------------------------------------------- + +## Quick start + +1. Ensure you have Java `11` or above installed in your Computer. + +1. Download the latest `addressbook.jar` from [here](https://github.com/se-edu/addressbook-level3/releases). + +1. Copy the file to the folder you want to use as the _home folder_ for your AddressBook. + +1. Double-click the file to start the app. The GUI similar to the below should appear in a few seconds. Note how the app contains some sample data.
+ ![Ui](images/Ui.png) + +1. Type the command in the command box and press Enter to execute it. e.g. typing **`help`** and pressing Enter will open the help window.
+ Some example commands you can try: + + * **`list`** : Lists all contacts. + + * **`add`**`n/John Doe p/98765432 e/johnd@example.com a/John street, block 123, #01-01` : Adds a contact named `John Doe` to the Address Book. + + * **`delete`**`3` : Deletes the 3rd contact shown in the current list. + + * **`clear`** : Deletes all contacts. + + * **`exit`** : Exits the app. + +1. Refer to the [Features](#features) below for details of each command. + +-------------------------------------------------------------------------------------------------------------------- + +## Features + +
+ +**:information_source: Notes about the command format:**
+ +* Words in `UPPER_CASE` are the parameters to be supplied by the user.
+ e.g. in `add n/NAME`, `NAME` is a parameter which can be used as `add n/John Doe`. + +* Items in square brackets are optional.
+ e.g `n/NAME [t/TAG]` can be used as `n/John Doe t/friend` or as `n/John Doe`. + +* Items with `…`​ after them can be used multiple times including zero times.
+ e.g. `[t/TAG]…​` can be used as ` ` (i.e. 0 times), `t/friend`, `t/friend t/family` etc. + +* Parameters can be in any order.
+ e.g. if the command specifies `n/NAME p/PHONE_NUMBER`, `p/PHONE_NUMBER n/NAME` is also acceptable. + +
+ +### Viewing help : `help` + +Shows a message explaning how to access the help page. + +![help message](images/helpMessage.png) + +Format: `help` + + +### Adding a person: `add` + +Adds a person to the address book. + +Format: `add n/NAME p/PHONE_NUMBER e/EMAIL a/ADDRESS [t/TAG]…​` + +
:bulb: **Tip:** +A person can have any number of tags (including 0) +
+ +Examples: +* `add n/John Doe p/98765432 e/johnd@example.com a/John street, block 123, #01-01` +* `add n/Betsy Crowe t/friend e/betsycrowe@example.com a/Newgate Prison p/1234567 t/criminal` + +### Listing all persons : `list` + +Shows a list of all persons in the address book. + +Format: `list` + +### Editing a person : `edit` + +Edits an existing person in the address book. + +Format: `edit INDEX [n/NAME] [p/PHONE] [e/EMAIL] [a/ADDRESS] [t/TAG]…​` + +* Edits the person at the specified `INDEX`. The index refers to the index number shown in the displayed person list. The index **must be a positive integer** 1, 2, 3, …​ +* At least one of the optional fields must be provided. +* Existing values will be updated to the input values. +* When editing tags, the existing tags of the person will be removed i.e adding of tags is not cumulative. +* You can remove all the person’s tags by typing `t/` without + specifying any tags after it. + +Examples: +* `edit 1 p/91234567 e/johndoe@example.com` Edits the phone number and email address of the 1st person to be `91234567` and `johndoe@example.com` respectively. +* `edit 2 n/Betsy Crower t/` Edits the name of the 2nd person to be `Betsy Crower` and clears all existing tags. + +### Locating persons by name: `find` + +Finds persons whose names contain any of the given keywords. + +Format: `find KEYWORD [MORE_KEYWORDS]` + +* The search is case-insensitive. e.g `hans` will match `Hans` +* The order of the keywords does not matter. e.g. `Hans Bo` will match `Bo Hans` +* Only the name is searched. +* Only full words will be matched e.g. `Han` will not match `Hans` +* Persons matching at least one keyword will be returned (i.e. `OR` search). + e.g. `Hans Bo` will return `Hans Gruber`, `Bo Yang` + +Examples: +* `find John` returns `john` and `John Doe` +* `find alex david` returns `Alex Yeoh`, `David Li`
+ ![result for 'find alex david'](images/findAlexDavidResult.png) + +### Deleting a person : `delete` + +Deletes the specified person from the address book. + +Format: `delete INDEX` + +* Deletes the person at the specified `INDEX`. +* The index refers to the index number shown in the displayed person list. +* The index **must be a positive integer** 1, 2, 3, …​ + +Examples: +* `list` followed by `delete 2` deletes the 2nd person in the address book. +* `find Betsy` followed by `delete 1` deletes the 1st person in the results of the `find` command. + +### Clearing all entries : `clear` + +Clears all entries from the address book. + +Format: `clear` + +### Exiting the program : `exit` + +Exits the program. + +Format: `exit` + +### Saving the data + +AddressBook data are saved in the hard disk automatically after any command that changes the data. There is no need to save manually. + +### Archiving data files `[coming in v2.0]` + +_{explain the feature here}_ + +-------------------------------------------------------------------------------------------------------------------- + +## FAQ + +**Q**: How do I transfer my data to another Computer?
+**A**: Install the app in the other computer and overwrite the empty data file it creates with the file that contains the data of your previous AddressBook home folder. + +-------------------------------------------------------------------------------------------------------------------- + +## Command summary + +Action | Format, Examples +--------|------------------ +**Add** | `add n/NAME p/PHONE_NUMBER e/EMAIL a/ADDRESS [t/TAG]…​`
e.g., `add n/James Ho p/22224444 e/jamesho@example.com a/123, Clementi Rd, 1234665 t/friend t/colleague` +**Clear** | `clear` +**Delete** | `delete INDEX`
e.g., `delete 3` +**Edit** | `edit INDEX [n/NAME] [p/PHONE_NUMBER] [e/EMAIL] [a/ADDRESS] [t/TAG]…​`
e.g.,`edit 2 n/James Lee e/jameslee@example.com` +**Find** | `find KEYWORD [MORE_KEYWORDS]`
e.g., `find James Jake` +**List** | `list` +**Help** | `help` diff --git a/docs/UsingAppVeyor.adoc b/docs/UsingAppVeyor.adoc deleted file mode 100644 index 12a7a89ac68..00000000000 --- a/docs/UsingAppVeyor.adoc +++ /dev/null @@ -1,94 +0,0 @@ -= AppVeyor -:site-section: DeveloperGuide -:imagesDir: images -:stylesDir: stylesheets -ifdef::env-github[] -:note-caption: :information_source: -endif::[] - -[NOTE] -==== -This document was originally written for _AddressBook Level 4_ and hence its screenshots refer to `addressbook-level4`. -For use with _AddressBook Level 3_, wherever `addressbook-level4` is used in the screenshots, you should use *`addressbook-level3`*. -==== - -https://www.appveyor.com/[AppVeyor] is a _Continuous Integration_ platform for GitHub projects. It runs its builds on Windows virtual machines. - -AppVeyor can run the project's tests automatically whenever new code is pushed to the repo. This ensures that existing functionality and features have not been broken on Windows by the changes. - -The current AppVeyor setup runs `gradlew.bat test` whenever someone pushes code to the repo. - -If you would like to customize your AppVeyor build further, you can learn more about AppVeyor from the https://www.appveyor.com/docs/[AppVeyor Documentation]. - -== Setting up AppVeyor - -. Fork the repo to your own organization. -. Go to https://ci.appveyor.com/, and under `Login`, click on `GitHub` to login with your GitHub account. Enter your GitHub account details if needed. -+ -image:appveyor/login.png[Click on GitHub in the login page] -+ -. After logging in, you will be brought to your projects dashboard. Click on `NEW PROJECT`. -+ -image:appveyor/add-project-1.png[Click on "NEW PROJECT" in the projects dashboard] -+ -. You will be brought to the `Select repository` page. Select `GitHub`. -* On your first usage of AppVeyor, you will need to give AppVeyor authorization to your GitHub account. Click on `Authorize GitHub`. -+ -image:appveyor/add-project-2.png[Click on Authorize GitHub] -+ -* This will bring you to a GitHub page that manages the access of third-party applications to your repositories. -+ -Depending on whether you are the owner of the repository, you can either -grant access: -+ -image:grant_access.png[Grant Access] -+ -Or request access: -+ -image:request_access.png[Request Access] -+ -. AppVeyor will then list the repositories you have access to in your GitHub account. Find the repository you want to set AppVeyor up on, and then click `ADD`. -+ -image:appveyor/add-project-3.png[Click "Add" on the repository you want to set AppVeyor up on] -+ -. AppVeyor will then be activated on that repository. To see the CI in action, push a commit to any branch! -* Go to the repository and see the pushed commit. There should be an icon which will link you to the AppVeyor build: -+ -image:appveyor/ci-pending.png[Commit build] -+ -* As the build is run on a remote machine, we can only examine the logs it produces: -+ -image:appveyor/ci-log.png[AppVeyor build] -+ -. Update the link to the "build status" badge at the top of `README.adoc` to point to the AppVeyor build status of your own repo. -* To find your build status badge URL, first go to your project settings by clicking on the "Settings" icon: -+ -image:appveyor/project-settings-1.png[Click on project settings] -+ -* Then go to the `Badges` section of your project settings by clicking on it: -+ -image:appveyor/project-settings-2.png[Click on "Badges"] -+ -* As AppVeyor does not provide asciidoc code for the badge, we will have to create our own. Start by copying the markdown code provided: -+ -image:appveyor/project-settings-3.png[Copy the markdown code] -+ -The markdown code should be in this format: -+ ----- -[![Build status]()]() ----- -+ -Convert it to the asciidoc format as follows: -+ ----- -[image:[Build status]] ----- -+ -The asciidoc code should look similar to: -+ ----- -https://ci.appveyor.com/project/damithc/addressbook-level3[image:https://ci.appveyor.com/api/projects/status/3boko2x2vr5cc3w2?svg=true[Build status]] ----- -+ -Copy and paste the asciidoc code to your `README.adoc` file. diff --git a/docs/UsingCheckstyle.adoc b/docs/UsingCheckstyle.adoc deleted file mode 100644 index a12ab09cc9c..00000000000 --- a/docs/UsingCheckstyle.adoc +++ /dev/null @@ -1,48 +0,0 @@ -= Using Checkstyle-IDEA -:site-section: DeveloperGuide -:imagesDir: images -:stylesDir: stylesheets -:experimental: -ifdef::env-github[] -:tip-caption: :bulb: -:note-caption: :information_source: -endif::[] - -[NOTE] -==== -This document was originally written for _AddressBook Level 4_ and hence its screenshots refer to `addressbook-level4`. -For use with _AddressBook Level 3_, wherever `addressbook-level4` is used in the screenshots, you should use *`addressbook-level3`*. -==== - -== Configuring Checkstyle-IDEA - -. Install the Checkstyle-IDEA plugin by going to `File` > `Settings` (Windows/Linux), or `IntelliJ IDEA` > `Preferences...` (macOS). + -Select `Plugins`, press `Browse Repository`, and find the plugin. + -Restart the IDE to complete the installation. -. Click `File` > `Settings...` > `Other Settings` > `Checkstyle` -. Set `Scan Scope` to `Only Java sources (including tests)`, so that the plugin will run checkstyle for our test source codes as well -. Ensure that the `Checkstyle version` is set to `8.1`. This is the same version that we are using inside Gradle, so that you won't get any errors due to version incompatibility - * If `Checkstyle version` is not set to `8.1`, set it to version `8.1` and click `Apply` -+ -image::checkstyle-idea-scan-scope.png[width="500"] -. Click the plus sign under `Configuration File` -. Enter an arbitrary description e.g. addressbook -. Select `Use a local Checkstyle file` -. Use the checkstyle configuration file found at `config/checkstyle/checkstyle.xml` -. Click `Next` > `Finish` -. Mark `Active` for the newly imported check configuration -+ -image::checkstyle-idea-configuration.png[width="700"] -. Click `OK` - -== Troubleshooting Checkstyle-IDEA - -**Problem: When importing `checkstyle.xml`, Checkstyle-IDEA plugin complains that `The Checkstyle rules file could not be parsed. ... The file has been blacklisted for 60s.`** - -* Reason: `checkstyle.xml` is written for a particular version, but the plugin was not configured to the correct version. -* Solution: Ensure that you have selected the correct `Checkstyle version` that matches the version in `build.gradle` and have clicked `Apply`, as `checkstyle.xml` is written for Gradle's checkstyle. - -**Problem: After setting up `checkstyle.xml`, Checkstyle-IDEA plugin does not seem to highlight the errors / real-time scanning seems broken.** - -* Reason: The plugin may not immediately run after setting it up. -* Solution: Restart the IDE. diff --git a/docs/UsingCheckstyle.md b/docs/UsingCheckstyle.md new file mode 100644 index 00000000000..201e3bd6e89 --- /dev/null +++ b/docs/UsingCheckstyle.md @@ -0,0 +1,54 @@ +--- +layout: page +title: Using Checkstyle +--- + + +* Table of Contents +{:toc} + +-------------------------------------------------------------------------------------------------------------------- + +## Using Checkstyle-IDEA plugin + +Given below are the steps to install the Checkstyle-IDEA plugin so that Intellij can alert you about code style problems as you write code. + +1. Install the Checkstyle-IDEA plugin by going to `File` \> `Settings` (Windows/Linux), or `IntelliJ IDEA` \> `Preferences…​` (macOS). Select `Plugins`, press `Browse Repository`, and find the plugin. Restart the IDE to complete the installation. + +1. Click `File` \> `Settings…​` \> `Other Settings` \> `Checkstyle` + +1. Set `Scan Scope` to `Only Java sources (including tests)`, so that the plugin will run checkstyle for our test source codes as well + +1. Ensure that the `Checkstyle version` is set to `8.1`. This is the same version that we are using inside Gradle, so that you won’t get any errors due to version incompatibility.
+ If `Checkstyle version` is not set to `8.1`, set it to version `8.1` and click `Apply`
+ ![checkstyle idea scan scope](images/checkstyle-idea-scan-scope.png) + +1. Click the plus sign under `Configuration File` + +1. Enter an arbitrary description e.g. addressbook + +1. Select `Use a local Checkstyle file` + +1. Use the checkstyle configuration file found at `config/checkstyle/checkstyle.xml` + +1. Click `Next` \> `Finish` + +1. Mark `Active` for the newly imported check configuration
+ ![checkstyle idea configuration](images/checkstyle-idea-configuration.png) + +1. Click `OK` + +1. To verify the plugin is set up correctly, temporirily modify the code to violate a style rule (e.g., add an extra space somewhere) and run the CheckStyle check using the plugin.
+ ![run checkstyle plugin](images/checkstyle/runCheckstyle.png) + +#### Troubleshooting + +**Problem: When importing `checkstyle.xml`, Checkstyle-IDEA plugin complains that `The Checkstyle rules file could not be parsed. …​ The file has been blacklisted for 60s.`** +* Reason: `checkstyle.xml` is written for a particular version, but the plugin was not configured to the correct version. +* Solution: Ensure that you have selected the correct `Checkstyle + version` that matches the version in `build.gradle` and have clicked + `Apply`, as `checkstyle.xml` is written for Gradle’s checkstyle. + +**Problem: After setting up `checkstyle.xml`, Checkstyle-IDEA plugin does not seem to highlight the errors / real-time scanning seems broken.** +* Reason: The plugin may not immediately run after setting it up. +* Solution: Restart the IDE. diff --git a/docs/UsingCoveralls.adoc b/docs/UsingCoveralls.adoc deleted file mode 100644 index 5191e47316c..00000000000 --- a/docs/UsingCoveralls.adoc +++ /dev/null @@ -1,63 +0,0 @@ -= Using Coveralls -:site-section: DeveloperGuide -:imagesDir: images -:stylesDir: stylesheets -ifdef::env-github[] -:note-caption: :information_source: -endif::[] - -[NOTE] -==== -This document was originally written for _AddressBook Level 4_ and hence its screenshots refer to `addressbook-level4`. -For use with _AddressBook Level 3_, wherever `addressbook-level4` is used in the screenshots, you should use *`addressbook-level3`*. -==== - -https://coveralls.io/[Coveralls] is a web service that tracks code coverage over time for GitHub projects. -Coveralls requires Travis CI to be set up beforehand as Travis sends the coverage report from the latest build to Coveralls. -If you have not set up Travis CI, see <>. Currently, Coveralls supports Travis CI but not AppVeyor. - -== Setting up Coveralls - -. Go to https://coveralls.io/ and click `SIGN IN`. Then click `GITHUB SIGN IN` and enter your GitHub account details if needed. -+ -. After logging in, you will be brought to the `Your Repositories` page. On the site's navigation bar, click https://coveralls.io/repos/new[ADD REPOS]. -+ -. Find the switch for the forked repository. -* If the organization is not shown, click `GITHUB SETTINGS` as shown below: -+ -image:coveralls/github_settings.png[GitHub settings] -+ -This should bring you to a GitHub page that manages the access of third-party applications. Depending on whether you are the owner of the repository, you can either grant access -+ -image:grant_access.png[Grant Access] -+ -or request access -+ -image:request_access.png[Request Access] -+ -to Coveralls so that it can access your repository. -* If your repository cannot be found, click `SYNC REPOS`. -+ -image:coveralls/sync_repos.png[Sync repos] -+ -. Activate the switch. -+ -image:coveralls/flick_repository_switch.png[Activate the switch] -+ -. Update the link of the `Coverage Status` badge at the top of your <> to point to that of your own repo by replacing the outlined areas with `your-org-name/your-repo-name`. -+ -image:coveralls/coverage_asciidoc_code.png[Coverage Status Badge] -+ -. You can now see the coverage report for your project after each Travis build by clicking on the `Coverage Status` badge. -+ -image:coveralls/coverage_report.png[Coverage Report Summary] - -== Disabling Coveralls Automatic Comments on Pull Requests - -Coveralls automatically comments on the coverage status of the pull requests in GitHub. If it's a hindrance, you can disable it in the settings of your project in Coveralls: - -. Click `Settings`. -+ -. Uncheck the `LEAVE COMMENTS?` checkbox. Then click `SAVE CHANGES`. -+ -image:coveralls/disable_comments.png[Disable comments, width = 942] diff --git a/docs/UsingGradle.adoc b/docs/UsingGradle.adoc deleted file mode 100644 index cca9c6d1d12..00000000000 --- a/docs/UsingGradle.adoc +++ /dev/null @@ -1,99 +0,0 @@ -= Using Gradle -:site-section: DeveloperGuide -:imagesDir: images -:stylesDir: stylesheets -:experimental: -ifdef::env-github[] -:tip-caption: :bulb: -:note-caption: :information_source: -endif::[] - -https://gradle.org/[Gradle] is a build automation tool. It can automate build-related tasks such as - -* Running tests -* Managing library dependencies -* Analyzing code for style compliance - -The gradle configuration for this project is defined in the _build script_ link:../build.gradle[`build.gradle`]. - -[NOTE] -To learn more about gradle build scripts, refer https://docs.gradle.org/current/userguide/tutorial_using_tasks.html[Build Scripts Basics]. - -== Running Gradle Commands - -To run a Gradle command, open a command window on the project folder and enter the Gradle command. Gradle commands look like this: - -* On Windows: `gradlew ...` e.g. `gradlew clean test` -* On Mac/Linux: `./gradlew ...` e.g. -`./gradlew clean test` - -[NOTE] -If you do not specify any tasks, Gradlew will run the default tasks `clean` `test` `coverage` - -== Cleaning the Project - -* *`clean`* + -Deletes the files created during the previous build tasks (e.g. files in the `build` folder). e.g. `./gradlew clean` - -[TIP] -*`clean` to force Gradle to execute a task*: + -When running a Gradle task, Gradle will try to figure out if the task needs running at all. If Gradle determines that the output of the task will be same as the previous time, it will not run the task. For example, it will not build the JAR file again if the relevant source files have not changed since the last time the JAR file was built. If we want to force Gradle to run a task, we can combine that task with `clean`. Once the build files have been `clean` ed, Gradle has no way to determine if the output will be same as before, so it will be forced to execute the task. - -== Creating the JAR file - -* *`shadowJar`* + -Creates the `addressbook.jar` file in the `build/jar` folder, _if the current file is outdated_. + -e.g. `./gradlew shadowJar` - -**** -To force Gradle to create the JAR file even if the current one is up-to-date, you can '`clean`' first. + -e.g. `./gradlew clean shadowJar` -**** - -[NOTE] -*Why do we create a fat JAR?* If we package only our own class files into the JAR file, it will not work properly unless the user has all the other JAR files (i.e. third party libraries) our classes depend on, which is rather inconvenient. Therefore, we package all dependencies into a single JAR files, creating what is also known as a _fat_ JAR file. To create a fat JAR file, we use the Gradle plugin https://github.com/johnrengelman/shadow[shadow jar]. - -== Rendering AsciiDoc files - -* **`asciidoctor`** + -Converts AsciiDoc files in `docs` to HTML format. Generated HTML files can be found in `build/docs`. -* **`deployOfflineDocs`** + -Updates the offline user guide, and its associated files, used by the Help window in the application. Deployed HTML files and images can be found in `src/main/resources/docs`. - -== Running the application - -* *`run`* + -Builds and runs the application. -* *`runShadow`* + -Builds the application as a fat JAR, and then runs it. - -== Running code style checks - -* **`checkstyleMain`** + -Runs the code style check for the main code base -* **`checkstyleTest`** + -Runs the code style check for the test code base - -The set of code style rules implemented can be found in `config/checkstyle/checkstyle.xml`. To enable _exceptions_ to code styles, add in the comment `//CODESTYLE.OFF: RuleName` at the start of the section and `//CODESTYLE.ON: RuleName` at the end of the section. - -== Running Tests - -* **`test`** + -Runs all tests. - -Here are some examples: - -* `./gradlew test` -- Runs all tests -* `./gradlew clean test` -- Cleans the project and runs tests - -== Updating Dependencies - -There is no need to run these Gradle tasks manually as they are called automatically by other relevant Gradle tasks. - -* **`compileJava`** + -Checks whether the project has the required dependencies to compile and run the main program, and download any missing dependencies before compiling the classes. + -See `build.gradle` -> -`allprojects` -> `dependencies` -> `compile` for the list of dependencies required. -* **`compileTestJava`** + -Checks whether the project has the required dependencies to perform testing, and download any missing dependencies before compiling the test classes. + -See `build.gradle` -> `allprojects` -> `dependencies` -> `testCompile` for the list of dependencies required. diff --git a/docs/UsingGradle.md b/docs/UsingGradle.md new file mode 100644 index 00000000000..fe8e92c33bf --- /dev/null +++ b/docs/UsingGradle.md @@ -0,0 +1,72 @@ +--- +layout: page +title: Using Gradle +--- + + +**If you are new to Gradle, please read [this Gradle Tutorial from the Duke project](https://github.com/se-edu/duke/blob/master/tutorials/gradleTutorial.md)**. + + +
+ +:information_source: **Reminder:** To run a Gradle command, open a command window on the project folder and enter the Gradle command. Gradle commands look like this: + +* On Windows: `gradlew …​` e.g. `gradlew clean test` +* On Mac/Linux: `./gradlew …​` e.g. `./gradlew clean + test` + +
+ +Given below are how to use Gradle for some important project tasks. + + +* Table of Contents +{:toc} + +-------------------------------------------------------------------------------------------------------------------- +## Cleaning the project + +* **`clean`**: Deletes the files created during the previous build tasks (e.g. files in the `build` folder).
+ e.g. `./gradlew clean` + +
+ +:bulb: **Tip:** You can use **`clean` to prevent Gradle from skipping tasks**: When running a Gradle task, Gradle will try to figure out if the task needs running at all. If Gradle determines that the output of the task will be same as the previous time, it will not run the task. For example, it will not build the JAR file again if the relevant source files have not changed since the last time the JAR file was built. If you want to force Gradle to run a task, you can combine that task with `clean` (e.g., `./gradlew clean shadowJar`). Once the build files have been `clean` ed, Gradle has no way to determine if the output will be same as before, and it will have no choice but to execute the task. + +
+ +## Creating the JAR file + +* **`shadowJar`**: Uses the ShadowJar plugin to creat a fat JAR file in the `build/jar` folder, *if the current file is outdated*.
+ e.g. `./gradlew shadowJar`. + +
+ +:information_source: **Note:** **What's a _fat_ JAR? Why do we need one?** If you package only your own class files into the JAR file, it will not work properly unless the user has all the other JAR files (i.e. third-party libraries) your classes depend on, which is rather inconvenient. Therefore, you should package all dependencies into a single JAR files, creating what is also known as a _fat_ JAR file. To create a fat JAR file, use the Gradle plugin [shadow jar](https://github.com/johnrengelman/shadow). +
+ +## Running the application + +* **`run`**: Builds and runs the application. +* **`runShadow`**: Builds the application as a fat JAR, and then runs it. + +## Running code style checks + +* **`checkstyleMain`**: Runs the code style check for the main code base. +* **`checkstyleTest`**: Runs the code style check for the test code base. + +The set of code style rules implemented can be found in `config/checkstyle/checkstyle.xml`. To enable *exceptions* to code styles, add in the comment `//CODESTYLE.OFF: RuleName` at the start of the section and `//CODESTYLE.ON: RuleName` at the end of the section. + +## Running Tests + +* **`test`**: Runs all tests.
+ Examples: + * `./gradlew test` — Runs all tests + * `./gradlew clean test` — Cleans the project and runs tests + +## Compiling + +There is no need to run these Gradle tasks manually as they are called automatically by other relevant Gradle tasks. + +* **`compileJava`**: Checks whether the project has the required dependencies to compile and run the main program, and download any missing dependencies before compiling the classes. See `build.gradle` → `allprojects` → `dependencies` → `compile` for the list of dependencies required. +* **`compileTestJava`**: Checks whether the project has the required dependencies to perform testing, and download any missing dependencies before compiling the test classes. See `build.gradle` → `allprojects` → `dependencies` → `testCompile` for the list of dependencies required. diff --git a/docs/UsingNetlify.adoc b/docs/UsingNetlify.adoc deleted file mode 100644 index 2e108c936a3..00000000000 --- a/docs/UsingNetlify.adoc +++ /dev/null @@ -1,59 +0,0 @@ -= Using Netlify -:site-section: DeveloperGuide -:imagesDir: images -:stylesDir: stylesheets -ifdef::env-github[] -:note-caption: :information_source: -endif::[] - -[NOTE] -==== -This document was originally written for _AddressBook Level 4_ and hence its screenshots refer to `addressbook-level4`. -For use with _AddressBook Level 3_, wherever `addressbook-level4` is used in the screenshots, you should use *`addressbook-level3`*. -==== - -https://www.netlify.com/[Netlify] is an automated hosting platform for deploying static websites. With the aid of build tools such as Gradle, Netlify provides a smoother experience for previewing documentation. This can be done by using Netlify's https://www.netlify.com/blog/2016/07/20/introducing-deploy-previews-in-netlify/[Deploy Previews] feature, which shows a preview of the updated documentation whenever a pull request is made. - -== Setting up Netlify -. Fork the repository to your own organization. -+ -. Go to https://www.netlify.com/ and click `Sign Up`. Next, click `GITHUB SIGN IN`, enter your GitHub account details and authorize netlify. -+ -. After logging in, click `New site from Git`. -+ -. You will then be brought to the setup page. Click `GitHub` to link your repository to Netlify. -* Depending on whether you are the owner of the repository, you can either grant or request access to Netlify so that it can access your repository and build your documentation. -+ -image:netlify/grant_or_request_access.png[Grant or request access, width = 630] -* After granting or requesting access to your repository, click `Authorize netlify`. -+ -. Pick your repository from the list. -+ -. Fill out the details as follows and then click `Deploy site`. -* Branch to deploy: select `master` branch -* Build command: `./gradlew asciidoctor` -+ -[NOTE] -The build command is the command that builds the documentation into HTML format. -+ -* Publish directory: `build/docs/html5` -[NOTE] -The publish directory is the directory in which the built HTML documentation resides. -+ -. Once Netlify has completed building your project, you can now: -* View your main branch's deployed documentation on the site name given by Netlify (customizable as shown <>). -+ -image:netlify/temp_site_name.png[Temporary site name, width = 630] -+ -* Preview the updated documentation whenever a pull request is made by clicking the `Details` hyperlink next to the Netlify test status. -+ -image:netlify/netlify_details.png[Netlify details link, width = 630] - -== Changing the site name of your project -If you don't like the site name given by Netlify, you can change it as follows: - -. Click on `Settings`. -+ -. Then click `Change site name` and fill in your desired site name. -+ -image:netlify/change_site_name.png[Change site name, width = 630] diff --git a/docs/UsingNetlify.md b/docs/UsingNetlify.md new file mode 100644 index 00000000000..2ed164341c2 --- /dev/null +++ b/docs/UsingNetlify.md @@ -0,0 +1,51 @@ +--- +layout: page +title: Using Netlify +--- + +[Netlify](https://www.netlify.com/) is an automated hosting platform for deploying static websites. It is particularly useful for previewing documentation changes in a PR (i.e., how would the final output of the documentation will change if the PR is merged), which can be done using Netlify’s [Deploy Previews](https://www.netlify.com/blog/2016/07/20/introducing-deploy-previews-in-netlify/) feature. + +
+ +:exclamation: **Caution:** Netlify allows only 300 free build minutes per month. They use an unsavory practice of letting you exceed the limit and then sending you an invoice for the extra use. You will not be able to use Netlify again unless you pay (or get them to cancel the charge). Therefore, we caution you to use Netlify (if at all) during times you update documentation and only if you want to use Netlify _Deploy Previews_ to help review such PRs. + +
+ +* Table of Contents +{:toc} + + +## Setting up + +1. Go to and click `Sign Up`. Next, click `GITHUB SIGN IN`, enter your GitHub account details and authorize netlify. + +1. After logging in, click `New site from Git`. + +1. You will then be brought to the setup page. Click `GitHub` to link your repository to Netlify. + * Depending on whether you are the owner of the repository, you can either grant or request access to Netlify so that it can access your repository and build your documentation.
+ ![Grant or request access](images/netlify/grant_or_request_access.png) + * After granting or requesting access to your repository, click `Authorize netlify`. + +1. Pick your repository from the list. + +1. Fill out the details as follows and then click `Deploy site`. + * Branch to deploy: select `master` branch + * Build command: `cd docs && bundle install && bundle exec jekyll build` + * Publish directory: `docs/_site` + + +1. Once Netlify has completed building your project, you can now: + * View your main branch’s deployed documentation on the site name given by Netlify (customizable as shown [below](#changing_the_site_name)).
+ ![Temporary site name](images/netlify/temp_site_name.png) + * Preview the updated documentation whenever a pull request is made by clicking the `Details` hyperlink next to the Netlify test status.
+ ![Netlify details link](images/netlify/netlify_details.png) + + +## Changing the site name + +If you don’t like the site name given by Netlify, you can change it as follows: + +1. Click on `Settings`. + +2. Then click `Change site name` and fill in your desired site name.
+ ![Change site name](images/netlify/change_site_name.png) diff --git a/docs/UsingPlantUml.adoc b/docs/UsingPlantUml.adoc deleted file mode 100644 index cfe2533ea84..00000000000 --- a/docs/UsingPlantUml.adoc +++ /dev/null @@ -1,211 +0,0 @@ -= Using PlantUML -:site-section: DeveloperGuide -:imagesDir: images/plantuml -:stylesDir: stylesheets -:experimental: -ifdef::env-github[] -:tip-caption: :bulb: -:note-caption: :information_source: -endif::[] - -== Introduction to PlantUML - -PlantUML is a tool used in this project to create UML diagrams. -For more information about the basics of PlantUML, head over to http://plantuml.com/[its official website]. - -== Set up PlantUML - -=== Installing Graphviz - -Graphviz is a dependency that PlantUML requires to generate more advanced diagrams. -Head over to the https://www.graphviz.org/download/[downloads page] on the official Graphviz website and follow instructions to install Graphviz. - -=== Installing the `PlantUML integration` plugin for IntelliJ IDEA - -Go to `Settings` > `Plugins` > `Marketplace` and install the plugin `PlantUML integration`. - -Then go to `Settings` > `Other Settings` > `PlantUML` or search for PlantUML. -Configure the path to the `dot` executable. -This executable can be found in the `/bin` directory where you installed GraphViz. - -.Settings - Other Settings - PlantUML: input the path to your dot executable -image::ConfiguringGraphviz.png[] - -== Create/Edit PlantUML diagrams - -After installing the `PlantUML integration` plugin, simply create or open any `.puml` file to start editing it. - -.Editing `DeleteSequenceDiagram.puml` -image::EditingDeleteSequenceDiagram.png[] -Any changes you make in editor pane on the left will be reflected in the preview pane on the right. -However, do take note that these changes _will not_ be reflected in the developers guide until you export the diagram. -//TODO: Discussion about why we're not using asciidoctor-diagram - -== Export PlantUML diagrams - -The `PlantUML integration` plugin allows you to export individual diagrams to a location of your choosing. -Click the `Save Current Diagram Only` button and choose the location to export the image file. - -NOTE: You will have to `git add` any new diagrams generated! - -== Common tasks - -=== Applying consistent formatting to PlantUML diagrams - -It is highly recommended to consistently color your UML diagrams as an visual aid. -You can achieve this by creating a dictionary of colors and import it like CSS. - -For example, you can create a `Style.puml` with the contents: - -.Style.puml -[source] ----- -... -!define LOGIC_COLOR #3333C4 -!define LOGIC_COLOR_T1 #7777DB -!define LOGIC_COLOR_T2 #5252CE -!define LOGIC_COLOR_T3 #1616B0 -!define LOGIC_COLOR_T4 #101086 -... ----- - -Then you can use it in another PlantUML file like this: - -.UndoSequenceDiagram.puml -[source] ----- -!include Style.puml - -box Logic LOGIC_COLOR_T2 -participant ":LogicManager" as LogicManager LOGIC_COLOR -participant ":AddressBookParser" as AddressBookParser LOGIC_COLOR -participant ":UndoCommand" as UndoCommand LOGIC_COLOR -end box ----- - -You can fine-tune the formatting of PlantUML diagrams with the `skinparam` command. -For example, `skinparam backgroundColor transparent` turns the background of the diagram transparent. - -For a comprehensive list of ``skinparam``s head over to the https://plantuml-documentation.readthedocs.io/en/latest/[unofficial PlantUML skinparam documentation]. - -*** - -=== Repositioning elements in PlantUML diagrams - -While PlantUML's automatic layout engine usually produces satisfactory results, at times the result can be less than ideal, especially on larger diagrams. -Here is an example where the default layout generated by PlantUML has a lot of overlapping lines that are hard to decipher: - -.The UI class diagram without additional formatting -image::RawUiDiagram.png[] - -NOTE: In most cases, you should consider decomposing the diagram into smaller ones or focusing on a more specific portion of the diagram. - -Here are some of the techniques we used in this project to obtain a more palatable diagram. - -==== Link lengths -By default, a short link (`\->`) points to right and a long link (`-\->`) -points downwards. you can extend any link to make it longer (```--\->```). - -.Length of arrows and its effects -image::ArrowLength.png[] - -==== Link directions -Clever usage of arrow directions will resolve most layout issues. -For example, the table below shows how the way in which you specify arrows can results in drastically different layouts for the same diagram. - -.Link directions -[cols="40a,60a"] -|=== -|Source |Result - -|[source, puml] ----- -A --> Z -B --> Z -C --> Z -D --> Z - -A --> 1 -B --> 2 -C --> 3 -D --> 4 ----- -|image::AllDown.png[] - -|[source, puml] ----- -'default is down -A --> Z -'specify down -B -down-> Z -'shorthand for down -C -d-> Z -'arrow lengths take priority -D -down> Z - -A -up-> 1 -B -up-> 2 -C -up-> 3 -D -up-> 4 - ----- -|image::UpAndDown.png[] - -|[source, puml] ----- -A -up-> Z -B -up-> Z -C -up-> Z -D -up-> Z - -A --> 1 -B --> 2 -C --> 3 -D --> 4 - -'Force A B C D -A -right[hidden]- B -B -right[hidden]- C -C -right[hidden]- D ----- -|image::HiddenArrows.png[] -|=== - -==== Reordering definitions -As a general rule of thumb, the layout engine will attempt to order objects in the order in which they are defined. -If there is no formal definition, the objects is taken to be declared upon its first usage. - -.Definition ordering and outcomes -[cols="70a,30a"] -|=== -|Source |Result - -|[source, puml] ----- -A --> B -C --> D ----- -|image::ABeforeC.png[] - -|[source, puml] ----- -'Class C is defined before A -Class C - -A --> B -C --> D ----- -|image::CBeforeA.png[] - -|[source, puml] ----- -package "Rule Of Thumb"{ - Class C - A --> B - C --> D -} ----- -|image::PackagesAndConsistency.png[] -|=== - -TIP: Explicitly define all symbols to avoid any potential layout mishaps. diff --git a/docs/UsingPlantUml.md b/docs/UsingPlantUml.md new file mode 100644 index 00000000000..0ff7239c0bb --- /dev/null +++ b/docs/UsingPlantUml.md @@ -0,0 +1,266 @@ +--- +layout: page +title: Using PlantUML +--- + +This project uses [PlantUML](http://plantuml.com/) to create UML diagrams. One main advantage of using PlantUML is, as diagrams can be saved in a text format, you can update the diagrams incrementally, as the design evolves over time. + +* Table of Contents +{:toc} + +------------------------------------------------------------------------------------------------------------------ + +## Setting up PlantUML + +1. **Install Graphviz.** Graphviz is a dependency that PlantUML requires to generate more advanced diagrams. Head over to the [downloads page](https://www.graphviz.org/download/) on the official Graphviz website and follow instructions to install Graphviz. + +1. **Install the `PlantUML integration` plugin in IntelliJ IDEA.** + + 1. Go to `Settings` \> `Plugins` \> `Marketplace` and install the plugin `PlantUML integration`. + + 1. Then go to `Settings` \> `Other Settings` \> `PlantUML` or search for PlantUML. Configure the path to the `dot` executable. This executable can be found in the `/bin` directory where you installed GraphViz.
+ ![Settings - Other Settings - PlantUML: input the path to your dot executable](images/plantuml/ConfiguringGraphviz.png) + +------------------------------------------------------------------------------------------------------------------ + +## Creating/editing/exporting diagrams + +After installing the `PlantUML integration` plugin, simply create or open any `.puml` file to start editing it. + +![Editing `DeleteSequenceDiagram.puml`](images/plantuml/EditingDeleteSequenceDiagram.png) + +Any changes you make in editor pane on the left will be reflected in the preview pane on the right. However, do take note that these changes *will not* be reflected in your actual documentation until you export the diagram. + +The `PlantUML integration` plugin allows you to export individual diagrams to a location of your choosing. Click the `Save Current Diagram Only` button and choose the location to export the image file. + +
:information_source: **Note:** + +You will have to `git add` any new diagrams generated\! +
+ +------------------------------------------------------------------------------------------------------------------ + +## Tips and tricks + +### Maintaining consistency in formatting + +It is highly recommended to consistently color your UML diagrams as an visual aid. You can achieve this by creating a dictionary of colors and import it like CSS. + +For example, you can create a `Style.puml` with the contents: + +**Style.puml.** + +```puml +!define LOGIC_COLOR #3333C4 +!define LOGIC_COLOR_T1 #7777DB +!define LOGIC_COLOR_T2 #5252CE +!define LOGIC_COLOR_T3 #1616B0 +!define LOGIC_COLOR_T4 #101086 +``` + + +Then you can use it in another PlantUML file like this: + +**UndoSequenceDiagram.puml.** + +```puml +!include Style.puml + +box Logic LOGIC_COLOR_T2 +participant ":LogicManager" as LogicManager LOGIC_COLOR +participant ":AddressBookParser" as AddressBookParser LOGIC_COLOR +participant ":UndoCommand" as UndoCommand LOGIC_COLOR +end box +``` + +You can fine-tune the formatting of PlantUML diagrams with the `skinparam` command. For example, `skinparam backgroundColor transparent` turns the background of the diagram transparent. + +
+ +:link: **Link**: For a comprehensive list of `skinparam`s head over to the [unofficial PlantUML skinparam documentation](https://plantuml-documentation.readthedocs.io/en/latest/). +
+ + +### Repositioning elements + +While PlantUML’s automatic layout engine usually produces satisfactory results, at times the result can be less than ideal, especially on larger diagrams. Here is an example where the default layout generated by PlantUML has a lot of overlapping lines that are hard to decipher: + +![The UI class diagram without additional formatting](images/plantuml/RawUiDiagram.png) + +
+ +:information_source: **Note:** In most cases, you should consider decomposing the diagram into smaller ones or focusing on a more specific portion of the diagram. + +
+ +Here are some techniques you can use to obtain a more palatable diagram. + +#### Link lengths + +By default, a short link (`->`) points to right and a long link (`-->`) points downwards. you can extend any link to make it longer (`--->`). + +![Length of arrows and its effects](images/plantuml/ArrowLength.png) + +#### Link directions + +Clever usage of arrow directions will resolve most layout issues. For example, the table below shows how the way in which you specify arrows can results in drastically different layouts for the same diagram. + + + ++++ + + + + + + + + + + + + + + + + + + + + +
Table: Link directions
SourceResult
+
+A --> Z
+B --> Z
+C --> Z
+D --> Z
+
+A --> 1
+B --> 2
+C --> 3
+D --> 4
+
+
+ + + +
+ +
+'default is down
+A --> Z
+'specify down
+B -down-> Z
+'shorthand for down
+C -d-> Z
+'arrow lengths take priority
+D -down> Z
+
+A -up-> 1
+B -up-> 2
+C -up-> 3
+D -up-> 4
+
+ +
+ + + +
+ +
+A -up-> Z
+B -up-> Z
+C -up-> Z
+D -up-> Z
+
+A --> 1
+B --> 2
+C --> 3
+D --> 4
+
+'Force A B C D
+A -right[hidden]- B
+B -right[hidden]- C
+C -right[hidden]- D
+
+ +
+ + + +
+ +**Another technique you can use to influence the layout is to reorder definitions.** The layout engine will attempt to order objects in the order in which they are defined. If there is no formal definition, the objects is taken to be declared upon its first usage. + + + ++++ + + + + + + + + + + + + + + + + + + + + +
Table: Definition ordering and outcomes
SourceResult
+ +
+A --> B
+C --> D
+
+ +
+ + + +
+ +
+'Class C is defined before A
+Class C
+
+A --> B
+C --> D
+
+
+ + + +
+ +
+package "Rule Of Thumb";{
+    Class C
+    A --> B
+    C --> D
+}
+
+ +
+ + +
+ +
:bulb: **Tip:** +Explicitly define all symbols to avoid any potential layout mishaps. +
diff --git a/docs/UsingTravis.adoc b/docs/UsingTravis.adoc deleted file mode 100644 index 764e0b0b9d9..00000000000 --- a/docs/UsingTravis.adoc +++ /dev/null @@ -1,140 +0,0 @@ -= Travis CI -:site-section: DeveloperGuide -:imagesDir: images -:stylesDir: stylesheets -ifdef::env-github[] -:note-caption: :information_source: -endif::[] - -[NOTE] -==== -This document was originally written for _AddressBook Level 4_ and hence its screenshots refer to `addressbook-level4`. -For use with _AddressBook Level 3_, wherever `addressbook-level4` is used in the screenshots, you should use *`addressbook-level3`*. -==== - -https://travis-ci.org/[Travis CI] is a _Continuous Integration_ platform for GitHub projects. - -Travis CI can run the projects' tests automatically whenever new code is pushed to the repo. This ensures that existing functionality and features have not been broken by the changes. - -The current Travis CI set up performs the following things whenever someone push code to the repo: - -* Runs the `./gradlew clean test coverage coveralls -i` command (see <> for more details on what this command means). -* Renders documentation from asciidoc to html and automatically publishes them using GitHub Pages. -* Runs additional link:#repository-wide-checks[repository-wide checks]. - -If you would like to customise your travis build further, you can learn more about Travis from https://docs.travis-ci.com/[Travis CI Documentation]. - -== Setting up Travis CI - -. Fork the repo to your own organization. -. Go to https://travis-ci.org/ and click `Sign in with GitHub`, then enter your GitHub account details if needed. -+ -image:signing_in.png[Signing into Travis CI] -+ -. Head to the https://travis-ci.org/profile[Accounts] page, and find the switch for the forked repository. -* If the organization is not shown, click `Review and add` as shown below: -+ -image:review_and_add.png[Review and add] -+ -This should bring you to a GitHub page that manages the access of third-party applications. Depending on whether you are the owner of the repository, you can either grant access -+ -image:grant_access.png[Grant Access] -+ -or request access -+ -image:request_access.png[Request Access] -+ -to Travis CI so that it can access your commits and build your code. -* If repository cannot be found, click `Sync account` -. Activate the switch. -+ -image:flick_repository_switch.png[Activate the switch] -+ -. This repo comes with a link:../.travis.yml[`.travis.yml`] that tells Travis what to do. So there is no need for you to create one yourself. -. To see the CI in action, push a commit to the master branch! -* Go to the repository and see the pushed commit. There should be an icon which will link you to the Travis build. -+ -image:build_pending.png[Commit build] -+ -* As the build is run on a provided remote machine, we can only examine the logs it produces: -+ -image:travis_build.png[Travis build] -+ -. If the build is successful, you should be able to check the coverage details of the tests at http://coveralls.io/[Coveralls] -. Update the link to the 'build status' badge at the top of the `README.adoc` to point to the build status of your own repo. - -== Enabling auto-publishing of documentation - -. Ensure that you have followed the steps above to set up Travis CI. -. On GitHub, create a new user account and give this account collaborator and admin access to the repo. + - Using this account, generate a personal access token https://github.com/settings/tokens/new[here]. -+ -[NOTE] -Personal access tokens are like passwords so make sure you keep them secret! If the personal access token is leaked, please delete it and generate a new one. -+ -[NOTE] -We use a new user account to generate the token for team projects to prevent team members from gaining access to other team members' repos. + -If you are the only one with write access to the repo, you can use your own account to generate the token. -+ --- -* Add a description for the token. (e.g. `Travis CI - deploy docs to gh-pages`) -* Check the `public_repo` checkbox. -* Click `Generate Token` and copy your new personal access token. --- -We will use this token to grant Travis access to the repo. -+ -image:generate_token.png[Generate token] - -. Head to the https://travis-ci.org/profile[Accounts] page, and find the switch for the forked repository. -+ -image:flick_repository_switch.png[Activate the switch] -+ -. Click on the settings button next to the switch. In the Environment Variables section, add a new environment variable with -+ --- -* name: `GITHUB_TOKEN` -* value: personal access token copied in step 1 -* Display value in build log: `OFF` --- -image:travis_add_token.png[Travis add token] -+ -[NOTE] -*Make sure you set `Display value in build log` to `OFF`.* + -Otherwise, other people will be able to see the personal access token and thus have access this repo. + -Similarly, make sure you *do not print `$GITHUB_TOKEN` to the logs* in Travis scripts as the logs are viewable by the public. - -. Now, whenever there's a new commit to master branch, Travis will push the latest documentation to gh-pages branch. - -**To verify that it works,** - -. Trigger Travis to regenerate documentation. To do so, you need to push a new commit to the master branch of the fork. + - Suggested change: Remove the codacy badge from `README`. -. Wait for Travis CI to finish running the build on your new commit. -. Go to the URL `\https://.github.io/addressbook-level3/`. You should see your `README` file displayed. - -== Repository-wide checks - -In addition to running Gradle checks, we also configure Travis CI to run some repository-wide checks. Unlike the Gradle checks which only cover files used in the build process, these repository-wide checks cover _all_ files in the repository. They check for repository rules which are hard to enforce on development machines such as line ending requirements. - -These checks are implemented as POSIX shell scripts, and thus can only be run on POSIX-compliant operating systems such as macOS and Linux. To run all checks locally on these operating systems, execute the following in the repository root directory: - -[source,shell] ----- -./config/travis/run-checks.sh ----- - -Any warnings or errors will be printed out to the console. - -=== Implementing new checks - -Checks are implemented as executable `check-*` scripts within the `config/travis/` directory. The `run-checks.sh` script will automatically pick up and run files named as such. - -Check scripts should print out errors in the following format: - -.... -SEVERITY:FILENAME:LINE: MESSAGE -.... - -where `SEVERITY` is either `ERROR` or `WARN`, `FILENAME` is the path to the file relative to the current directory, `LINE` is the line of the file where the error occurred and `MESSAGE` is the message explaining the error. - -Check scripts must exit with a non-zero exit code if any errors occur. diff --git a/docs/_config.yml b/docs/_config.yml new file mode 100644 index 00000000000..29ec7733e40 --- /dev/null +++ b/docs/_config.yml @@ -0,0 +1,14 @@ +title: "AB-3" +theme: minima + +header_pages: + - UserGuide.md + - DeveloperGuide.md + - AboutUs.md + +markdown: kramdown + +repository: "se-edu/addressbook-level3" + +plugins: + - jemoji diff --git a/docs/_data/projects.yml b/docs/_data/projects.yml new file mode 100644 index 00000000000..8f3e50cb601 --- /dev/null +++ b/docs/_data/projects.yml @@ -0,0 +1,23 @@ +- name: "AB-1" + url: https://se-edu.github.io/addressbook-level1 + +- name: "AB-2" + url: https://se-edu.github.io/addressbook-level2 + +- name: "AB-3" + url: https://se-edu.github.io/addressbook-level3 + +- name: "AB-4" + url: https://se-edu.github.io/addressbook-level4 + +- name: "Duke" + url: https://se-edu.github.io/duke + +- name: "Collate" + url: https://se-edu.github.io/collate + +- name: "Book" + url: https://se-edu.github.io/se-book + +- name: "Resources" + url: https://se-edu.github.io/resources diff --git a/docs/_includes/custom-head.html b/docs/_includes/custom-head.html new file mode 100644 index 00000000000..8559a67ffad --- /dev/null +++ b/docs/_includes/custom-head.html @@ -0,0 +1,6 @@ +{% comment %} + Placeholder to allow defining custom head, in principle, you can add anything here, e.g. favicons: + + 1. Head over to https://realfavicongenerator.net/ to add your own favicons. + 2. Customize default _includes/custom-head.html in your source directory and insert the given code snippet. +{% endcomment %} diff --git a/docs/_includes/head.html b/docs/_includes/head.html new file mode 100644 index 00000000000..8a93e7299d2 --- /dev/null +++ b/docs/_includes/head.html @@ -0,0 +1,10 @@ + + + + + + + + {%- include custom-head.html -%} + + diff --git a/docs/_includes/header.html b/docs/_includes/header.html new file mode 100644 index 00000000000..ed5a382aef7 --- /dev/null +++ b/docs/_includes/header.html @@ -0,0 +1,31 @@ + diff --git a/docs/_layouts/alt-page.html b/docs/_layouts/alt-page.html new file mode 100644 index 00000000000..5dbc6ef245f --- /dev/null +++ b/docs/_layouts/alt-page.html @@ -0,0 +1,14 @@ +--- +layout: default +--- +
+ +
+

{{ page.alt_title | escape }}

+
+ +
+ {{ content }} +
+ +
diff --git a/docs/_layouts/default.html b/docs/_layouts/default.html new file mode 100644 index 00000000000..e092cd572e0 --- /dev/null +++ b/docs/_layouts/default.html @@ -0,0 +1,18 @@ + + + + {%- include head.html -%} + + + + {%- include header.html -%} + +
+
+ {{ content }} +
+
+ + + + diff --git a/docs/_layouts/page.html b/docs/_layouts/page.html new file mode 100644 index 00000000000..01e4b2a93b8 --- /dev/null +++ b/docs/_layouts/page.html @@ -0,0 +1,14 @@ +--- +layout: default +--- +
+ +
+

{{ page.title | escape }}

+
+ +
+ {{ content }} +
+ +
diff --git a/docs/_sass/minima/_base.scss b/docs/_sass/minima/_base.scss new file mode 100644 index 00000000000..06e47f23762 --- /dev/null +++ b/docs/_sass/minima/_base.scss @@ -0,0 +1,272 @@ +html { + font-size: $base-font-size; +} + +/** + * Reset some basic elements + */ +body, h1, h2, h3, h4, h5, h6, +p, blockquote, pre, hr, +dl, dd, ol, ul, figure { + margin: 0; + padding: 0; + +} + + + +/** + * Basic styling + */ +body { + font: $base-font-weight #{$base-font-size}/#{$base-line-height} $base-font-family; + color: $text-color; + background-color: $background-color; + -webkit-text-size-adjust: 100%; + -webkit-font-feature-settings: "kern" 1; + -moz-font-feature-settings: "kern" 1; + -o-font-feature-settings: "kern" 1; + font-feature-settings: "kern" 1; + font-kerning: normal; + display: flex; + min-height: 100vh; + flex-direction: column; + overflow-wrap: break-word; +} + + + +/** + * Set `margin-bottom` to maintain vertical rhythm + */ +h1, h2, h3, h4, h5, h6, +p, blockquote, pre, +ul, ol, dl, figure, +%vertical-rhythm { + margin-bottom: $spacing-unit / 2; +} + +hr { + margin-top: $spacing-unit; + margin-bottom: $spacing-unit; +} + +/** + * `main` element + */ +main { + display: block; /* Default value of `display` of `main` element is 'inline' in IE 11. */ +} + + + +/** + * Images + */ +img { + max-width: 100%; + vertical-align: middle; +} + + + +/** + * Figures + */ +figure > img { + display: block; +} + +figcaption { + font-size: $small-font-size; +} + + + +/** + * Lists + */ +ul, ol { + margin-left: $spacing-unit; +} + +li { + > ul, + > ol { + margin-bottom: 0; + } +} + + + +/** + * Headings + */ +h1, h2, h3, h4, h5, h6 { + font-weight: $base-font-weight; +} + + + +/** + * Links + */ +a { + color: $link-base-color; + text-decoration: none; + + &:visited { + color: $link-visited-color; + } + + &:hover { + color: $text-color; + text-decoration: underline; + } + + .social-media-list &:hover { + text-decoration: none; + + .username { + text-decoration: underline; + } + } +} + + +/** + * Blockquotes + */ +blockquote { + color: $brand-color; + border-left: 4px solid $brand-color-light; + padding-left: $spacing-unit / 2; + @include relative-font-size(1.125); + font-style: italic; + + > :last-child { + margin-bottom: 0; + } + + i, em { + font-style: normal; + } +} + + + +/** + * Code formatting + */ +pre, +code { + font-family: $code-font-family; + font-size: 0.9375em; + border: 1px solid $brand-color-light; + border-radius: 3px; + background-color: $code-background-color; +} + +code { + padding: 1px 5px; +} + +pre { + padding: 8px 12px; + overflow-x: auto; + + > code { + border: 0; + padding-right: 0; + padding-left: 0; + } +} + +.highlight { + border-radius: 3px; + background: $code-background-color; + @extend %vertical-rhythm; + + .highlighter-rouge & { + background: $code-background-color; + } +} + + + +/** + * Wrapper + */ +.wrapper { + max-width: calc(#{$content-width} - (#{$spacing-unit})); + margin-right: auto; + margin-left: auto; + padding-right: $spacing-unit / 2; + padding-left: $spacing-unit / 2; + @extend %clearfix; + + @media screen and (min-width: $on-large) { + max-width: calc(#{$content-width} - (#{$spacing-unit} * 2)); + padding-right: $spacing-unit; + padding-left: $spacing-unit; + } +} + + + +/** + * Clearfix + */ +%clearfix:after { + content: ""; + display: table; + clear: both; +} + + + +/** + * Icons + */ + +.orange { + color: #f66a0a; +} + +.grey { + color: #828282; +} + +/** + * Tables + */ +table { + margin-bottom: $spacing-unit; + width: 100%; + text-align: $table-text-align; + color: $table-text-color; + border-collapse: collapse; + border: 1px solid $table-border-color; + tr { + &:nth-child(even) { + background-color: $table-zebra-color; + } + } + th, td { + padding: ($spacing-unit / 3) ($spacing-unit / 2); + } + th { + background-color: $table-header-bg-color; + border: 1px solid $table-header-border; + } + td { + border: 1px solid $table-border-color; + } + + @include media-query($on-laptop) { + display: block; + overflow-x: auto; + -webkit-overflow-scrolling: touch; + -ms-overflow-style: -ms-autohiding-scrollbar; + } +} diff --git a/docs/_sass/minima/_layout.scss b/docs/_sass/minima/_layout.scss new file mode 100644 index 00000000000..ca99f981701 --- /dev/null +++ b/docs/_sass/minima/_layout.scss @@ -0,0 +1,263 @@ +/** + * Site header + */ +.site-header { + border-top: 5px solid $brand-color-dark; + border-bottom: 1px solid $brand-color-light; + min-height: $spacing-unit * 1.865; + line-height: $base-line-height * $base-font-size * 2.25; + + // Positioning context for the mobile navigation icon + position: relative; +} + +.site-title { + @include relative-font-size(1.625); + font-weight: 300; + letter-spacing: -1px; + margin-bottom: 0; + float: left; + + @include media-query($on-palm) { + padding-right: 45px; + } + + &, + &:visited { + color: $brand-color-dark; + } +} + +.site-nav { + position: absolute; + top: 9px; + right: $spacing-unit / 2; + background-color: $background-color; + border: 1px solid $brand-color-light; + border-radius: 5px; + text-align: right; + + .nav-trigger { + display: none; + } + + .menu-icon { + float: right; + width: 36px; + height: 26px; + line-height: 0; + padding-top: 10px; + text-align: center; + + > svg path { + fill: $brand-color-dark; + } + } + + label[for="nav-trigger"] { + display: block; + float: right; + width: 36px; + height: 36px; + z-index: 2; + cursor: pointer; + } + + input ~ .trigger { + clear: both; + display: none; + } + + input:checked ~ .trigger { + display: block; + padding-bottom: 5px; + } + + .page-link { + color: $text-color; + line-height: $base-line-height; + display: block; + padding: 5px 10px; + + // Gaps between nav items, but not on the last one + &:not(:last-child) { + margin-right: 0; + } + margin-left: 20px; + } + + @media screen and (min-width: $on-medium) { + position: static; + float: right; + border: none; + background-color: inherit; + + label[for="nav-trigger"] { + display: none; + } + + .menu-icon { + display: none; + } + + input ~ .trigger { + display: block; + } + + .page-link { + display: inline; + padding: 0; + + &:not(:last-child) { + margin-right: 20px; + } + margin-left: auto; + } + } +} + + + +/** + * Page content + */ +.page-content { + padding: $spacing-unit 0; + flex: 1 0 auto; +} + +.page-heading { + @include relative-font-size(2); +} + +.post-list-heading { + @include relative-font-size(1.75); +} + +.post-list { + margin-left: 0; + list-style: none; + + > li { + margin-bottom: $spacing-unit; + } +} + +.post-meta { + font-size: $small-font-size; + color: $brand-color; +} + +.post-link { + display: block; + @include relative-font-size(1.5); +} + + + +/** + * Posts + */ +.post-header { + margin-bottom: $spacing-unit; +} + +.post-title, +.post-content h1 { + @include relative-font-size(2.625); + letter-spacing: -1px; + line-height: 1.15; + + @media screen and (min-width: $on-large) { + @include relative-font-size(2.625); + } +} + +.post-content { + margin-bottom: $spacing-unit; + + h1, h2, h3 { margin-top: $spacing-unit * 2 } + h4, h5, h6 { margin-top: $spacing-unit } + + h2 { + @include relative-font-size(1.75); + + @media screen and (min-width: $on-large) { + @include relative-font-size(2); + } + } + + h3 { + @include relative-font-size(1.375); + + @media screen and (min-width: $on-large) { + @include relative-font-size(1.625); + } + } + + h4 { + @include relative-font-size(1.25); + } + + h5 { + @include relative-font-size(1.125); + } + h6 { + @include relative-font-size(1.0625); + } +} + + +.social-media-list { + display: table; + margin: 0 auto; + li { + float: left; + margin: 5px 10px 5px 0; + &:last-of-type { margin-right: 0 } + a { + display: block; + padding: $spacing-unit / 4; + border: 1px solid $brand-color-light; + &:hover { border-color: darken($brand-color-light, 10%) } + } + } +} + + + +/** + * Pagination navbar + */ +.pagination { + margin-bottom: $spacing-unit; + @extend .social-media-list; + li { + a, div { + min-width: 41px; + text-align: center; + box-sizing: border-box; + } + div { + display: block; + padding: $spacing-unit / 4; + border: 1px solid transparent; + + &.pager-edge { + color: darken($brand-color-light, 5%); + border: 1px dashed; + } + } + } +} + + + +/** + * Grid helpers + */ +@media screen and (min-width: $on-large) { + .one-half { + width: calc(50% - (#{$spacing-unit} / 2)); + } +} diff --git a/docs/_sass/minima/custom-mixins.scss b/docs/_sass/minima/custom-mixins.scss new file mode 100644 index 00000000000..9d4bedc1c67 --- /dev/null +++ b/docs/_sass/minima/custom-mixins.scss @@ -0,0 +1,21 @@ +@mixin alert-variant($background, $border, $color) { + color: $color; + @include gradient-bg($background); + border-color: $border; + + .alert-link { + color: darken($color, 10%); + } +} + +@mixin gradient-bg($color, $foreground: null) { + @if $enable-gradients { + @if $foreground { + background-image: $foreground, linear-gradient(180deg, mix($body-bg, $color, 15%), $color); + } @else { + background-image: linear-gradient(180deg, mix($body-bg, $color, 15%), $color); + } + } @else { + background-color: $color; + } +} diff --git a/docs/_sass/minima/custom-styles.scss b/docs/_sass/minima/custom-styles.scss new file mode 100644 index 00000000000..a992115a70f --- /dev/null +++ b/docs/_sass/minima/custom-styles.scss @@ -0,0 +1,34 @@ +// Placeholder to allow defining custom styles that override everything else. +// (Use `_sass/minima/custom-variables.scss` to override variable defaults) +h2, h3, h4, h5, h6 { + color: #e46c0a; +} + +// Bootstrap style alerts +.alert { + position: relative; + padding: $alert-padding-y $alert-padding-x; + margin-bottom: $alert-margin-bottom; + border: $alert-border-width solid transparent; + order-radius : $alert-border-radius; +} + +// Headings for larger alerts +.alert-heading { + // Specified to prevent conflicts of changing $headings-color + color: inherit; +} + +// Provide class for links that match alerts +.alert-link { + font-weight: $alert-link-font-weight; +} + +// Generate contextual modifier classes for colorizing the alert. + +@each $color, $value in $theme-colors { + .alert-#{$color} { + @include alert-variant(color-level($value, $alert-bg-level), color-level($value, $alert-border-level), color-level($value, $alert-color-level)); + } +} + diff --git a/docs/_sass/minima/custom-variables.scss b/docs/_sass/minima/custom-variables.scss new file mode 100644 index 00000000000..a128970cbe7 --- /dev/null +++ b/docs/_sass/minima/custom-variables.scss @@ -0,0 +1,76 @@ +// Placeholder to allow overriding predefined variables smoothly. + +//Bootstrap's default +$white: #fff !default; +$gray-100: #f8f9fa !default; +$gray-200: #e9ecef !default; +$gray-300: #dee2e6 !default; +$gray-400: #ced4da !default; +$gray-500: #adb5bd !default; +$gray-600: #6c757d !default; +$gray-700: #495057 !default; +$gray-800: #343a40 !default; +$gray-900: #212529 !default; +$black: #000 !default; +$blue: #0d6efd !default; +$indigo: #6610f2 !default; +$purple: #6f42c1 !default; +$pink: #d63384 !default; +$red: #dc3545 !default; +$orange: #fd7e14 !default; +$yellow: #ffc107 !default; +$green: #28a745 !default; +$teal: #20c997 !default; +$cyan: #17a2b8 !default; + +$primary: $blue !default; +$secondary: $gray-600 !default; +$success: $green !default; +$info: $cyan !default; +$warning: $yellow !default; +$danger: $red !default; +$light: $gray-100 !default; +$dark: $gray-800 !default; + +$theme-colors: ( + "primary": $primary, + "secondary": $secondary, + "success": $success, + "info": $info, + "warning": $warning, + "danger": $danger, + "light": $light, + "dark": $dark +) !default; + +$theme-color-interval: 8% !default; + +$body-bg: $white !default; +$body-color: $gray-900 !default; +$body-text-align: null !default; + +$enable-gradients: true; + +// Define alert colors, border radius, and padding. +$border-radius: .25rem !default; +$border-width: 1px !default; +$font-weight-bold: 700 !default; + +$alert-padding-y: .75rem !default; +$alert-padding-x: 1.25rem !default; +$alert-margin-bottom: 1rem !default; +$alert-border-radius: $border-radius !default; +$alert-link-font-weight: $font-weight-bold !default; +$alert-border-width: $border-width !default; + +$alert-bg-level: -10 !default; +$alert-border-level: -9 !default; +$alert-color-level: 6 !default; + +// Request a color level +// scss-docs-start color-level +@function color-level($color: $primary, $level: 0) { + $color-base: if($level > 0, $black, $white); + $level: abs($level); + @return mix($color-base, $color, $level * $theme-color-interval); +} diff --git a/docs/_sass/minima/initialize.scss b/docs/_sass/minima/initialize.scss new file mode 100644 index 00000000000..30288811151 --- /dev/null +++ b/docs/_sass/minima/initialize.scss @@ -0,0 +1,51 @@ +@charset "utf-8"; + +// Define defaults for each variable. + +$base-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Segoe UI Symbol", "Segoe UI Emoji", "Apple Color Emoji", Roboto, Helvetica, Arial, sans-serif !default; +$code-font-family: "Menlo", "Inconsolata", "Consolas", "Roboto Mono", "Ubuntu Mono", "Liberation Mono", "Courier New", monospace; +$base-font-size: 16px !default; +$base-font-weight: 400 !default; +$small-font-size: $base-font-size * 0.875 !default; +$base-line-height: 1.5 !default; + +$spacing-unit: 30px !default; + +$table-text-align: left !default; + +// Width of the content area +$content-width: 800px !default; + +$on-palm: 600px !default; +$on-laptop: 800px !default; + +$on-medium: $on-palm !default; +$on-large: $on-laptop !default; + +// Use media queries like this: +// @include media-query($on-palm) { +// .wrapper { +// padding-right: $spacing-unit / 2; +// padding-left: $spacing-unit / 2; +// } +// } +// Notice the following mixin uses max-width, in a deprecated, desktop-first +// approach, whereas media queries used elsewhere now use min-width. +@mixin media-query($device) { + @media screen and (max-width: $device) { + @content; + } +} + +@mixin relative-font-size($ratio) { + font-size: #{$ratio}rem; +} + +// Import pre-styling-overrides hook and style-partials. +@import + "minima/custom-variables", // Hook to override predefined variables. + "minima/custom-mixins", // Hook to add custom mixins. + "minima/base", // Defines element resets. + "minima/layout", // Defines structure and style based on CSS selectors. + "minima/custom-styles" // Hook to override existing styles. +; diff --git a/docs/_sass/minima/skins/classic.scss b/docs/_sass/minima/skins/classic.scss new file mode 100644 index 00000000000..37ea9c5244c --- /dev/null +++ b/docs/_sass/minima/skins/classic.scss @@ -0,0 +1,84 @@ +@charset "utf-8"; + +$brand-color: #828282 !default; +$brand-color-light: lighten($brand-color, 40%) !default; +$brand-color-dark: darken($brand-color, 25%) !default; + +$text-color: #111 !default; +$background-color: #fdfdfd !default; +$code-background-color: #eef !default; + +$link-base-color: #2a7ae2 !default; +$link-visited-color: darken($link-base-color, 15%) !default; + +$table-text-color: lighten($text-color, 18%) !default; +$table-zebra-color: lighten($brand-color, 46%) !default; +$table-header-bg-color: lighten($brand-color, 43%) !default; +$table-header-border: lighten($brand-color, 36%) !default; +$table-border-color: $brand-color-light !default; + + +// Syntax highlighting styles should be adjusted appropriately for every "skin" +// ---------------------------------------------------------------------------- + +.highlight { + .c { color: #998; font-style: italic } // Comment + .err { color: #a61717; background-color: #e3d2d2 } // Error + .k { font-weight: bold } // Keyword + .o { font-weight: bold } // Operator + .cm { color: #998; font-style: italic } // Comment.Multiline + .cp { color: #999; font-weight: bold } // Comment.Preproc + .c1 { color: #998; font-style: italic } // Comment.Single + .cs { color: #999; font-weight: bold; font-style: italic } // Comment.Special + .gd { color: #000; background-color: #fdd } // Generic.Deleted + .gd .x { color: #000; background-color: #faa } // Generic.Deleted.Specific + .ge { font-style: italic } // Generic.Emph + .gr { color: #a00 } // Generic.Error + .gh { color: #999 } // Generic.Heading + .gi { color: #000; background-color: #dfd } // Generic.Inserted + .gi .x { color: #000; background-color: #afa } // Generic.Inserted.Specific + .go { color: #888 } // Generic.Output + .gp { color: #555 } // Generic.Prompt + .gs { font-weight: bold } // Generic.Strong + .gu { color: #aaa } // Generic.Subheading + .gt { color: #a00 } // Generic.Traceback + .kc { font-weight: bold } // Keyword.Constant + .kd { font-weight: bold } // Keyword.Declaration + .kp { font-weight: bold } // Keyword.Pseudo + .kr { font-weight: bold } // Keyword.Reserved + .kt { color: #458; font-weight: bold } // Keyword.Type + .m { color: #099 } // Literal.Number + .s { color: #d14 } // Literal.String + .na { color: #008080 } // Name.Attribute + .nb { color: #0086B3 } // Name.Builtin + .nc { color: #458; font-weight: bold } // Name.Class + .no { color: #008080 } // Name.Constant + .ni { color: #800080 } // Name.Entity + .ne { color: #900; font-weight: bold } // Name.Exception + .nf { color: #900; font-weight: bold } // Name.Function + .nn { color: #555 } // Name.Namespace + .nt { color: #000080 } // Name.Tag + .nv { color: #008080 } // Name.Variable + .ow { font-weight: bold } // Operator.Word + .w { color: #bbb } // Text.Whitespace + .mf { color: #099 } // Literal.Number.Float + .mh { color: #099 } // Literal.Number.Hex + .mi { color: #099 } // Literal.Number.Integer + .mo { color: #099 } // Literal.Number.Oct + .sb { color: #d14 } // Literal.String.Backtick + .sc { color: #d14 } // Literal.String.Char + .sd { color: #d14 } // Literal.String.Doc + .s2 { color: #d14 } // Literal.String.Double + .se { color: #d14 } // Literal.String.Escape + .sh { color: #d14 } // Literal.String.Heredoc + .si { color: #d14 } // Literal.String.Interpol + .sx { color: #d14 } // Literal.String.Other + .sr { color: #009926 } // Literal.String.Regex + .s1 { color: #d14 } // Literal.String.Single + .ss { color: #990073 } // Literal.String.Symbol + .bp { color: #999 } // Name.Builtin.Pseudo + .vc { color: #008080 } // Name.Variable.Class + .vg { color: #008080 } // Name.Variable.Global + .vi { color: #008080 } // Name.Variable.Instance + .il { color: #099 } // Literal.Number.Integer.Long +} diff --git a/docs/_sass/minima/skins/solarized-dark.scss b/docs/_sass/minima/skins/solarized-dark.scss new file mode 100644 index 00000000000..f3b1f387de0 --- /dev/null +++ b/docs/_sass/minima/skins/solarized-dark.scss @@ -0,0 +1,4 @@ +@charset "utf-8"; + +$sol-is-dark: true; +@import "minima/skins/solarized"; diff --git a/docs/_sass/minima/skins/solarized.scss b/docs/_sass/minima/skins/solarized.scss new file mode 100644 index 00000000000..982bd7f2990 --- /dev/null +++ b/docs/_sass/minima/skins/solarized.scss @@ -0,0 +1,133 @@ +@charset "utf-8"; + +// Solarized skin +// ============== +// Created by Sander Voerman using the Solarized +// color scheme by Ethan Schoonover . + +// This style sheet implements two options for the minima.skin setting: +// "solarized" for light mode and "solarized-dark" for dark mode. +$sol-is-dark: false !default; + + +// Color scheme +// ------------ +// The inline comments show the canonical L*a*b values for each color. + +$sol-base03: #002b36; // 15 -12 -12 +$sol-base02: #073642; // 20 -12 -12 +$sol-base01: #586e75; // 45 -07 -07 +$sol-base00: #657b83; // 50 -07 -07 +$sol-base0: #839496; // 60 -06 -03 +$sol-base1: #93a1a1; // 65 -05 -02 +$sol-base2: #eee8d5; // 92 -00 10 +$sol-base3: #fdf6e3; // 97 00 10 +$sol-yellow: #b58900; // 60 10 65 +$sol-orange: #cb4b16; // 50 50 55 +$sol-red: #dc322f; // 50 65 45 +$sol-magenta: #d33682; // 50 65 -05 +$sol-violet: #6c71c4; // 50 15 -45 +$sol-blue: #268bd2; // 55 -10 -45 +$sol-cyan: #2aa198; // 60 -35 -05 +$sol-green: #859900; // 60 -20 65 + +$sol-mono3: $sol-base3; +$sol-mono2: $sol-base2; +$sol-mono1: $sol-base1; +$sol-mono00: $sol-base00; +$sol-mono01: $sol-base01; + +@if $sol-is-dark { + $sol-mono3: $sol-base03; + $sol-mono2: $sol-base02; + $sol-mono1: $sol-base01; + $sol-mono00: $sol-base0; + $sol-mono01: $sol-base1; +} + + +// Minima color variables +// ---------------------- + +$brand-color: $sol-mono1 !default; +$brand-color-light: mix($sol-mono1, $sol-mono3) !default; +$brand-color-dark: $sol-mono00 !default; + +$text-color: $sol-mono01 !default; +$background-color: $sol-mono3 !default; +$code-background-color: $sol-mono2 !default; + +$link-base-color: $sol-blue !default; +$link-visited-color: mix($sol-blue, $sol-mono00) !default; + +$table-text-color: $sol-mono00 !default; +$table-zebra-color: mix($sol-mono2, $sol-mono3) !default; +$table-header-bg-color: $sol-mono2 !default; +$table-header-border: $sol-mono1 !default; +$table-border-color: $sol-mono1 !default; + + +// Syntax highlighting styles +// -------------------------- + +.highlight { + .c { color: $sol-mono1; font-style: italic } // Comment + .err { color: $sol-red } // Error + .k { color: $sol-mono01; font-weight: bold } // Keyword + .o { color: $sol-mono01; font-weight: bold } // Operator + .cm { color: $sol-mono1; font-style: italic } // Comment.Multiline + .cp { color: $sol-mono1; font-weight: bold } // Comment.Preproc + .c1 { color: $sol-mono1; font-style: italic } // Comment.Single + .cs { color: $sol-mono1; font-weight: bold; font-style: italic } // Comment.Special + .gd { color: $sol-red } // Generic.Deleted + .gd .x { color: $sol-red } // Generic.Deleted.Specific + .ge { color: $sol-mono00; font-style: italic } // Generic.Emph + .gr { color: $sol-red } // Generic.Error + .gh { color: $sol-mono1 } // Generic.Heading + .gi { color: $sol-green } // Generic.Inserted + .gi .x { color: $sol-green } // Generic.Inserted.Specific + .go { color: $sol-mono00 } // Generic.Output + .gp { color: $sol-mono00 } // Generic.Prompt + .gs { color: $sol-mono01; font-weight: bold } // Generic.Strong + .gu { color: $sol-mono1 } // Generic.Subheading + .gt { color: $sol-red } // Generic.Traceback + .kc { color: $sol-mono01; font-weight: bold } // Keyword.Constant + .kd { color: $sol-mono01; font-weight: bold } // Keyword.Declaration + .kp { color: $sol-mono01; font-weight: bold } // Keyword.Pseudo + .kr { color: $sol-mono01; font-weight: bold } // Keyword.Reserved + .kt { color: $sol-violet; font-weight: bold } // Keyword.Type + .m { color: $sol-cyan } // Literal.Number + .s { color: $sol-magenta } // Literal.String + .na { color: $sol-cyan } // Name.Attribute + .nb { color: $sol-blue } // Name.Builtin + .nc { color: $sol-violet; font-weight: bold } // Name.Class + .no { color: $sol-cyan } // Name.Constant + .ni { color: $sol-violet } // Name.Entity + .ne { color: $sol-violet; font-weight: bold } // Name.Exception + .nf { color: $sol-blue; font-weight: bold } // Name.Function + .nn { color: $sol-mono00 } // Name.Namespace + .nt { color: $sol-blue } // Name.Tag + .nv { color: $sol-cyan } // Name.Variable + .ow { color: $sol-mono01; font-weight: bold } // Operator.Word + .w { color: $sol-mono1 } // Text.Whitespace + .mf { color: $sol-cyan } // Literal.Number.Float + .mh { color: $sol-cyan } // Literal.Number.Hex + .mi { color: $sol-cyan } // Literal.Number.Integer + .mo { color: $sol-cyan } // Literal.Number.Oct + .sb { color: $sol-magenta } // Literal.String.Backtick + .sc { color: $sol-magenta } // Literal.String.Char + .sd { color: $sol-magenta } // Literal.String.Doc + .s2 { color: $sol-magenta } // Literal.String.Double + .se { color: $sol-magenta } // Literal.String.Escape + .sh { color: $sol-magenta } // Literal.String.Heredoc + .si { color: $sol-magenta } // Literal.String.Interpol + .sx { color: $sol-magenta } // Literal.String.Other + .sr { color: $sol-green } // Literal.String.Regex + .s1 { color: $sol-magenta } // Literal.String.Single + .ss { color: $sol-magenta } // Literal.String.Symbol + .bp { color: $sol-mono1 } // Name.Builtin.Pseudo + .vc { color: $sol-cyan } // Name.Variable.Class + .vg { color: $sol-cyan } // Name.Variable.Global + .vi { color: $sol-cyan } // Name.Variable.Instance + .il { color: $sol-cyan } // Literal.Number.Integer.Long +} diff --git a/docs/assets/css/style.scss b/docs/assets/css/style.scss new file mode 100644 index 00000000000..0d1fce9fbbe --- /dev/null +++ b/docs/assets/css/style.scss @@ -0,0 +1,7 @@ +--- +# Only the main Sass file needs front matter (the dashes are enough) +--- + +@import + "minima/skins/{{ site.minima.skin | default: 'classic' }}", + "minima/initialize"; diff --git a/docs/diagrams/ArchitectureDiagram.puml b/docs/diagrams/ArchitectureDiagram.puml index d021b3992ed..a929d8e40b3 100644 --- a/docs/diagrams/ArchitectureDiagram.puml +++ b/docs/diagrams/ArchitectureDiagram.puml @@ -9,34 +9,23 @@ Package " "<>{ Class Logic LOGIC_COLOR Class Storage STORAGE_COLOR Class Model MODEL_COLOR - Class Main MODEL_COLOR_T1 + Class Main #grey Class Commons LOGIC_COLOR_T2 - Class "Log Center" as Logs UI_COLOR_T2 - Class Hidden #FFFFFF - Class HiddenUI #FFFFFF - Class HiddenModel #FFFFFF - - } + Class "<$user>" as User MODEL_COLOR_T2 Class "<$documents>" as File UI_COLOR_T1 -HiddenUI -up[hidden]-> UI -HiddenModel -left[hidden]-> Model -Main -up-> HiddenUI -Main -left-> HiddenModel -UI -> Logic -UI -right-> Model -Logic -> Storage -Logic -down-> Model - -Logs -right- Commons -Hidden .down.> Commons -Hidden .down.> Commons -Hidden .down.> Commons +UI -[#green]> Logic +UI -right[#green]-> Model +Logic -[#blue]-> Storage +Logic -down[#blue]-> Model +Main -[#grey]-> UI +Main -[#grey]-> Logic +Main -[#grey]-> Storage +Main -up[#grey]-> Model -Storage .right.>File -User --> UI -Main --> Hidden +Storage .right[STORAGE_COLOR].>File +User ..> UI @enduml diff --git a/docs/diagrams/BetterModelClassDiagram.puml b/docs/diagrams/BetterModelClassDiagram.puml index 7790472da52..29076104af3 100644 --- a/docs/diagrams/BetterModelClassDiagram.puml +++ b/docs/diagrams/BetterModelClassDiagram.puml @@ -12,7 +12,7 @@ UniqueTagList -[hidden]down- UniquePersonList UniqueTagList *-right-> "*" Tag UniquePersonList o-right-> Person -Person o-up-> "*" Tag +Person -up-> "*" Tag Person *--> Name Person *--> Phone diff --git a/docs/images/ArchitectureDiagram.png b/docs/images/ArchitectureDiagram.png index aa2d337d9323ad4f0d7479e3a5bf4e3087add609..5cdcf67e7475dcacffc9b7adee24cfcf850f7e48 100644 GIT binary patch literal 34090 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 literal 16491 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 diff --git a/docs/images/checkstyle/runCheckstyle.png b/docs/images/checkstyle/runCheckstyle.png new file mode 100644 index 0000000000000000000000000000000000000000..dc8217aabef32fb61ac28a4ca723c5fb329446f4 GIT binary patch literal 30278 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 literal 0 HcmV?d00001 diff --git a/docs/images/helpMessage.png b/docs/images/helpMessage.png new file mode 100644 index 0000000000000000000000000000000000000000..b1f70470137ec75b2bfe4d29458114d1aa75dbcd GIT binary patch literal 8435 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ÐxTGMs?~ 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 z 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,#preamble>.sectionbody>.paragraph:first-of-type p{font-size:1.21875em;line-height:1.6} -.subheader,.admonitionblock td.content>.title,.audioblock>.title,.exampleblock>.title,.imageblock>.title,.listingblock>.title,.literalblock>.title,.stemblock>.title,.openblock>.title,.paragraph>.title,.quoteblock>.title,table.tableblock>.title,.verseblock>.title,.videoblock>.title,.dlist>.title,.olist>.title,.ulist>.title,.qlist>.title,.hdlist>.title{line-height:1.45;color:#7a2518;font-weight:400;margin-top:0;margin-bottom:.25em} -div,dl,dt,dd,ul,ol,li,h1,h2,h3,#toctitle,.sidebarblock>.content>.title,h4,h5,h6,pre,form,p,blockquote,th,td{margin:0;padding:0;direction:ltr} -a{color:#2156a5;text-decoration:underline;line-height:inherit} -a:hover,a:focus{color:#1d4b8f} -a img{border:none} -p{font-family:inherit;font-weight:400;font-size:1em;line-height:1.6;margin-bottom:1.25em;text-rendering:optimizeLegibility} -p aside{font-size:.875em;line-height:1.35;font-style:italic} -h1,h2,h3,#toctitle,.sidebarblock>.content>.title,h4,h5,h6{font-family:"Open Sans","DejaVu Sans",sans-serif;font-weight:300;font-style:normal;color:#ba3925;text-rendering:optimizeLegibility;margin-top:1em;margin-bottom:.5em;line-height:1.0125em} -h1 small,h2 small,h3 small,#toctitle small,.sidebarblock>.content>.title small,h4 small,h5 small,h6 small{font-size:60%;color:#e99b8f;line-height:0} -h1{font-size:2.125em} -h2{font-size:1.6875em} -h3,#toctitle,.sidebarblock>.content>.title{font-size:1.375em} -h4,h5{font-size:1.125em} -h6{font-size:1em} -hr{border:solid #ddddd8;border-width:1px 0 0;clear:both;margin:1.25em 0 1.1875em;height:0} -em,i{font-style:italic;line-height:inherit} -strong,b{font-weight:bold;line-height:inherit} -small{font-size:60%;line-height:inherit} -code{font-family:"Droid Sans Mono","DejaVu Sans Mono",monospace;font-weight:400;color:rgba(0,0,0,.9)} -ul,ol,dl{font-size:1em;line-height:1.6;margin-bottom:1.25em;list-style-position:outside;font-family:inherit} -ul,ol,ul.no-bullet,ol.no-bullet{margin-left:1.5em} -ul li ul,ul li ol{margin-left:1.25em;margin-bottom:0;font-size:1em} -ul.square li ul,ul.circle li ul,ul.disc li ul{list-style:inherit} -ul.square{list-style-type:square} -ul.circle{list-style-type:circle} -ul.disc{list-style-type:disc} -ul.no-bullet{list-style:none} -ol li ul,ol li ol{margin-left:1.25em;margin-bottom:0} -dl dt{margin-bottom:.3125em;font-weight:bold} -dl dd{margin-bottom:1.25em} -abbr,acronym{text-transform:uppercase;font-size:90%;color:rgba(0,0,0,.8);border-bottom:1px dotted #ddd;cursor:help} -abbr{text-transform:none} -blockquote{margin:0 0 1.25em;padding:.5625em 1.25em 0 1.1875em;border-left:1px solid #ddd} -blockquote cite{display:block;font-size:.9375em;color:rgba(0,0,0,.6)} -blockquote cite:before{content:"\2014 \0020"} -blockquote cite a,blockquote cite a:visited{color:rgba(0,0,0,.6)} -blockquote,blockquote p{line-height:1.6;color:rgba(0,0,0,.85)} -@media only screen and (min-width:768px){h1,h2,h3,#toctitle,.sidebarblock>.content>.title,h4,h5,h6{line-height:1.2} -h1{font-size:2.75em} -h2{font-size:2.3125em} -h3,#toctitle,.sidebarblock>.content>.title{font-size:1.6875em} -h4{font-size:1.4375em}} -table{background:#fff;margin-bottom:1.25em;border:solid 1px #dedede} -table thead,table tfoot{background:#f7f8f7;font-weight:bold} -table thead tr th,table thead tr td,table tfoot tr th,table tfoot tr td{padding:.5em .625em .625em;font-size:inherit;color:rgba(0,0,0,.8);text-align:left} -table tr th,table tr td{padding:.5625em .625em;font-size:inherit;color:rgba(0,0,0,.8)} -table tr.even,table tr.alt,table tr:nth-of-type(even){background:#f8f8f7} -table thead tr th,table tfoot tr th,table tbody tr td,table tr td,table tfoot tr td{display:table-cell;line-height:1.6} -body{tab-size:4} -h1,h2,h3,#toctitle,.sidebarblock>.content>.title,h4,h5,h6{line-height:1.2;word-spacing:-.05em} -h1 strong,h2 strong,h3 strong,#toctitle strong,.sidebarblock>.content>.title strong,h4 strong,h5 strong,h6 strong{font-weight:400} -.clearfix:before,.clearfix:after,.float-group:before,.float-group:after{content:" ";display:table} -.clearfix:after,.float-group:after{clear:both} -*:not(pre)>code{font-size:.9375em;font-style:normal!important;letter-spacing:0;padding:.1em .5ex;word-spacing:-.15em;background-color:#f7f7f8;-webkit-border-radius:4px;border-radius:4px;line-height:1.45;text-rendering:optimizeSpeed} -pre,pre>code{line-height:1.45;color:rgba(0,0,0,.9);font-family:"Droid Sans Mono","DejaVu Sans Mono",monospace;font-weight:400;text-rendering:optimizeSpeed} -.keyseq{color:rgba(51,51,51,.8)} -kbd{font-family:"Droid Sans Mono","DejaVu Sans Mono",monospace;display:inline-block;color:rgba(0,0,0,.8);font-size:.65em;line-height:1.45;background-color:#f7f7f7;border:1px solid #ccc;-webkit-border-radius:3px;border-radius:3px;-webkit-box-shadow:0 1px 0 rgba(0,0,0,.2),0 0 0 .1em white inset;box-shadow:0 1px 0 rgba(0,0,0,.2),0 0 0 .1em #fff inset;margin:0 .15em;padding:.2em .5em;vertical-align:middle;position:relative;top:-.1em;white-space:nowrap} -.keyseq kbd:first-child{margin-left:0} -.keyseq kbd:last-child{margin-right:0} -.menuseq,.menu{color:rgba(0,0,0,.8)} -b.button:before,b.button:after{position:relative;top:-1px;font-weight:400} -b.button:before{content:"[";padding:0 3px 0 2px} -b.button:after{content:"]";padding:0 2px 0 3px} -p a>code:hover{color:rgba(0,0,0,.9)} -#header,#content,#footnotes,#footer{width:100%;margin-left:auto;margin-right:auto;margin-top:0;margin-bottom:0;max-width:62.5em;*zoom:1;position:relative;padding-left:.9375em;padding-right:.9375em} -#header:before,#header:after,#content:before,#content:after,#footnotes:before,#footnotes:after,#footer:before,#footer:after{content:" ";display:table} -#header:after,#content:after,#footnotes:after,#footer:after{clear:both} -#content{margin-top:1.25em} -#content:before{content:none} -#header>h1:first-child{color:rgba(0,0,0,.85);margin-top:2.25rem;margin-bottom:0} -#header>h1:first-child+#toc{margin-top:8px;border-top:1px solid #ddddd8} -#header>h1:only-child,body.toc2 #header>h1:nth-last-child(2){border-bottom:1px solid #ddddd8;padding-bottom:8px} -#header .details{border-bottom:1px solid #ddddd8;line-height:1.45;padding-top:.25em;padding-bottom:.25em;padding-left:.25em;color:rgba(0,0,0,.6);display:-ms-flexbox;display:-webkit-flex;display:flex;-ms-flex-flow:row wrap;-webkit-flex-flow:row wrap;flex-flow:row wrap} -#header .details span:first-child{margin-left:-.125em} -#header .details span.email a{color:rgba(0,0,0,.85)} -#header .details br{display:none} -#header .details br+span:before{content:"\00a0\2013\00a0"} -#header .details br+span.author:before{content:"\00a0\22c5\00a0";color:rgba(0,0,0,.85)} -#header .details br+span#revremark:before{content:"\00a0|\00a0"} -#header #revnumber{text-transform:capitalize} -#header #revnumber:after{content:"\00a0"} -#content>h1:first-child:not([class]){color:rgba(0,0,0,.85);border-bottom:1px solid #ddddd8;padding-bottom:8px;margin-top:0;padding-top:1rem;margin-bottom:1.25rem} -#toc{border-bottom:1px solid #efefed;padding-bottom:.5em} -#toc>ul{margin-left:.125em} -#toc ul.sectlevel0>li>a{font-style:italic} -#toc ul.sectlevel0 ul.sectlevel1{margin:.5em 0} -#toc ul{font-family:"Open Sans","DejaVu Sans",sans-serif;list-style-type:none} -#toc li{line-height:1.3334;margin-top:.3334em} -#toc a{text-decoration:none} -#toc a:active{text-decoration:underline} -#toctitle{color:#7a2518;font-size:1.2em} -@media only screen and (min-width:768px){#toctitle{font-size:1.375em} -body.toc2{padding-left:15em;padding-right:0} -#toc.toc2{margin-top:0!important;background-color:#f8f8f7;position:fixed;width:15em;left:0;top:0;border-right:1px solid #efefed;border-top-width:0!important;border-bottom-width:0!important;z-index:1000;padding:1.25em 1em;height:100%;overflow:auto} -#toc.toc2 #toctitle{margin-top:0;margin-bottom:.8rem;font-size:1.2em} -#toc.toc2>ul{font-size:.9em;margin-bottom:0} -#toc.toc2 ul ul{margin-left:0;padding-left:1em} -#toc.toc2 ul.sectlevel0 ul.sectlevel1{padding-left:0;margin-top:.5em;margin-bottom:.5em} -body.toc2.toc-right{padding-left:0;padding-right:15em} -body.toc2.toc-right #toc.toc2{border-right-width:0;border-left:1px solid #efefed;left:auto;right:0}} -@media only screen and (min-width:1280px){body.toc2{padding-left:20em;padding-right:0} -#toc.toc2{width:20em} -#toc.toc2 #toctitle{font-size:1.375em} -#toc.toc2>ul{font-size:.95em} -#toc.toc2 ul ul{padding-left:1.25em} -body.toc2.toc-right{padding-left:0;padding-right:20em}} -#content #toc{border-style:solid;border-width:1px;border-color:#e0e0dc;margin-bottom:1.25em;padding:1.25em;background:#f8f8f7;-webkit-border-radius:4px;border-radius:4px} -#content #toc>:first-child{margin-top:0} -#content #toc>:last-child{margin-bottom:0} -#footer{max-width:100%;background-color:rgba(0,0,0,.8);padding:1.25em} -#footer-text{color:rgba(255,255,255,.8);line-height:1.44} -.sect1{padding-bottom:.625em} -@media only screen and (min-width:768px){.sect1{padding-bottom:1.25em}} -.sect1+.sect1{border-top:1px solid #efefed} -#content h1>a.anchor,h2>a.anchor,h3>a.anchor,#toctitle>a.anchor,.sidebarblock>.content>.title>a.anchor,h4>a.anchor,h5>a.anchor,h6>a.anchor{position:absolute;z-index:1001;width:1.5ex;margin-left:-1.5ex;display:block;text-decoration:none!important;visibility:hidden;text-align:center;font-weight:400} -#content h1>a.anchor:before,h2>a.anchor:before,h3>a.anchor:before,#toctitle>a.anchor:before,.sidebarblock>.content>.title>a.anchor:before,h4>a.anchor:before,h5>a.anchor:before,h6>a.anchor:before{content:"\00A7";font-size:.85em;display:block;padding-top:.1em} -#content h1:hover>a.anchor,#content h1>a.anchor:hover,h2:hover>a.anchor,h2>a.anchor:hover,h3:hover>a.anchor,#toctitle:hover>a.anchor,.sidebarblock>.content>.title:hover>a.anchor,h3>a.anchor:hover,#toctitle>a.anchor:hover,.sidebarblock>.content>.title>a.anchor:hover,h4:hover>a.anchor,h4>a.anchor:hover,h5:hover>a.anchor,h5>a.anchor:hover,h6:hover>a.anchor,h6>a.anchor:hover{visibility:visible} -#content h1>a.link,h2>a.link,h3>a.link,#toctitle>a.link,.sidebarblock>.content>.title>a.link,h4>a.link,h5>a.link,h6>a.link{color:#ba3925;text-decoration:none} -#content h1>a.link:hover,h2>a.link:hover,h3>a.link:hover,#toctitle>a.link:hover,.sidebarblock>.content>.title>a.link:hover,h4>a.link:hover,h5>a.link:hover,h6>a.link:hover{color:#a53221} -.audioblock,.imageblock,.literalblock,.listingblock,.stemblock,.videoblock{margin-bottom:1.25em} -.admonitionblock td.content>.title,.audioblock>.title,.exampleblock>.title,.imageblock>.title,.listingblock>.title,.literalblock>.title,.stemblock>.title,.openblock>.title,.paragraph>.title,.quoteblock>.title,table.tableblock>.title,.verseblock>.title,.videoblock>.title,.dlist>.title,.olist>.title,.ulist>.title,.qlist>.title,.hdlist>.title{text-rendering:optimizeLegibility;text-align:left;font-family:"Noto Serif","DejaVu Serif",serif;font-size:1rem;font-style:italic} -table.tableblock>caption.title{white-space:nowrap;overflow:visible;max-width:0} -.paragraph.lead>p,#preamble>.sectionbody>.paragraph:first-of-type p{color:rgba(0,0,0,.85)} -table.tableblock #preamble>.sectionbody>.paragraph:first-of-type p{font-size:inherit} -.admonitionblock>table{border-collapse:separate;border:0;background:none;width:100%} -.admonitionblock>table td.icon{text-align:center;width:80px} -.admonitionblock>table td.icon img{max-width:none} -.admonitionblock>table td.icon .title{font-weight:bold;font-family:"Open Sans","DejaVu Sans",sans-serif;text-transform:uppercase} -.admonitionblock>table td.content{padding-left:1.125em;padding-right:1.25em;border-left:1px solid #ddddd8;color:rgba(0,0,0,.6)} -.admonitionblock>table td.content>:last-child>:last-child{margin-bottom:0} -.exampleblock>.content{border-style:solid;border-width:1px;border-color:#e6e6e6;margin-bottom:1.25em;padding:1.25em;background:#fff;-webkit-border-radius:4px;border-radius:4px} -.exampleblock>.content>:first-child{margin-top:0} -.exampleblock>.content>:last-child{margin-bottom:0} -.sidebarblock{border-style:solid;border-width:1px;border-color:#e0e0dc;margin-bottom:1.25em;padding:1.25em;background:#f8f8f7;-webkit-border-radius:4px;border-radius:4px} -.sidebarblock>:first-child{margin-top:0} -.sidebarblock>:last-child{margin-bottom:0} -.sidebarblock>.content>.title{color:#7a2518;margin-top:0;text-align:center} -.exampleblock>.content>:last-child>:last-child,.exampleblock>.content .olist>ol>li:last-child>:last-child,.exampleblock>.content .ulist>ul>li:last-child>:last-child,.exampleblock>.content .qlist>ol>li:last-child>:last-child,.sidebarblock>.content>:last-child>:last-child,.sidebarblock>.content .olist>ol>li:last-child>:last-child,.sidebarblock>.content .ulist>ul>li:last-child>:last-child,.sidebarblock>.content .qlist>ol>li:last-child>:last-child{margin-bottom:0} -.literalblock pre,.listingblock pre:not(.highlight),.listingblock pre[class="highlight"],.listingblock pre[class^="highlight "],.listingblock pre.CodeRay,.listingblock pre.prettyprint{background:#f7f7f8} -.sidebarblock .literalblock pre,.sidebarblock .listingblock pre:not(.highlight),.sidebarblock .listingblock pre[class="highlight"],.sidebarblock .listingblock pre[class^="highlight "],.sidebarblock .listingblock pre.CodeRay,.sidebarblock .listingblock pre.prettyprint{background:#f2f1f1} -.literalblock pre,.literalblock pre[class],.listingblock pre,.listingblock pre[class]{-webkit-border-radius:4px;border-radius:4px;word-wrap:break-word;padding:1em;font-size:.8125em} -.literalblock pre.nowrap,.literalblock pre[class].nowrap,.listingblock pre.nowrap,.listingblock pre[class].nowrap{overflow-x:auto;white-space:pre;word-wrap:normal} -@media only screen and (min-width:768px){.literalblock pre,.literalblock pre[class],.listingblock pre,.listingblock pre[class]{font-size:.90625em}} -@media only screen and (min-width:1280px){.literalblock pre,.literalblock pre[class],.listingblock pre,.listingblock pre[class]{font-size:1em}} -.literalblock.output pre{color:#f7f7f8;background-color:rgba(0,0,0,.9)} -.listingblock pre.highlightjs{padding:0} -.listingblock pre.highlightjs>code{padding:1em;-webkit-border-radius:4px;border-radius:4px} -.listingblock pre.prettyprint{border-width:0} -.listingblock>.content{position:relative} -.listingblock code[data-lang]:before{display:none;content:attr(data-lang);position:absolute;font-size:.75em;top:.425rem;right:.5rem;line-height:1;text-transform:uppercase;color:#999} -.listingblock:hover code[data-lang]:before{display:block} -.listingblock.terminal pre .command:before{content:attr(data-prompt);padding-right:.5em;color:#999} -.listingblock.terminal pre .command:not([data-prompt]):before{content:"$"} -table.pyhltable{border-collapse:separate;border:0;margin-bottom:0;background:none} -table.pyhltable td{vertical-align:top;padding-top:0;padding-bottom:0;line-height:1.45} -table.pyhltable td.code{padding-left:.75em;padding-right:0} -pre.pygments .lineno,table.pyhltable td:not(.code){color:#999;padding-left:0;padding-right:.5em;border-right:1px solid #ddddd8} -pre.pygments .lineno{display:inline-block;margin-right:.25em} -table.pyhltable .linenodiv{background:none!important;padding-right:0!important} -.quoteblock{margin:0 1em 1.25em 1.5em;display:table} -.quoteblock>.title{margin-left:-1.5em;margin-bottom:.75em} -.quoteblock blockquote,.quoteblock blockquote p{color:rgba(0,0,0,.85);font-size:1.15rem;line-height:1.75;word-spacing:.1em;letter-spacing:0;font-style:italic;text-align:justify} -.quoteblock blockquote{margin:0;padding:0;border:0} -.quoteblock blockquote:before{content:"\201c";float:left;font-size:2.75em;font-weight:bold;line-height:.6em;margin-left:-.6em;color:#7a2518;text-shadow:0 1px 2px rgba(0,0,0,.1)} -.quoteblock blockquote>.paragraph:last-child p{margin-bottom:0} -.quoteblock .attribution{margin-top:.5em;margin-right:.5ex;text-align:right} -.quoteblock .quoteblock{margin-left:0;margin-right:0;padding:.5em 0;border-left:3px solid rgba(0,0,0,.6)} -.quoteblock .quoteblock blockquote{padding:0 0 0 .75em} -.quoteblock .quoteblock blockquote:before{display:none} -.verseblock{margin:0 1em 1.25em 1em} -.verseblock pre{font-family:"Open Sans","DejaVu Sans",sans;font-size:1.15rem;color:rgba(0,0,0,.85);font-weight:300;text-rendering:optimizeLegibility} -.verseblock pre strong{font-weight:400} -.verseblock .attribution{margin-top:1.25rem;margin-left:.5ex} -.quoteblock .attribution,.verseblock .attribution{font-size:.9375em;line-height:1.45;font-style:italic} -.quoteblock .attribution br,.verseblock .attribution br{display:none} -.quoteblock .attribution cite,.verseblock .attribution cite{display:block;letter-spacing:-.025em;color:rgba(0,0,0,.6)} -.quoteblock.abstract{margin:0 0 1.25em 0;display:block} -.quoteblock.abstract blockquote,.quoteblock.abstract blockquote p{text-align:left;word-spacing:0} -.quoteblock.abstract blockquote:before,.quoteblock.abstract blockquote p:first-of-type:before{display:none} -table.tableblock{max-width:100%;border-collapse:separate} -table.tableblock td>.paragraph:last-child p>p:last-child,table.tableblock th>p:last-child,table.tableblock td>p:last-child{margin-bottom:0} -table.tableblock,th.tableblock,td.tableblock{border:0 solid #dedede} -table.grid-all th.tableblock,table.grid-all td.tableblock{border-width:0 1px 1px 0} -table.grid-all tfoot>tr>th.tableblock,table.grid-all tfoot>tr>td.tableblock{border-width:1px 1px 0 0} -table.grid-cols th.tableblock,table.grid-cols td.tableblock{border-width:0 1px 0 0} -table.grid-all *>tr>.tableblock:last-child,table.grid-cols *>tr>.tableblock:last-child{border-right-width:0} -table.grid-rows th.tableblock,table.grid-rows td.tableblock{border-width:0 0 1px 0} -table.grid-all tbody>tr:last-child>th.tableblock,table.grid-all tbody>tr:last-child>td.tableblock,table.grid-all thead:last-child>tr>th.tableblock,table.grid-rows tbody>tr:last-child>th.tableblock,table.grid-rows tbody>tr:last-child>td.tableblock,table.grid-rows thead:last-child>tr>th.tableblock{border-bottom-width:0} -table.grid-rows tfoot>tr>th.tableblock,table.grid-rows tfoot>tr>td.tableblock{border-width:1px 0 0 0} -table.frame-all{border-width:1px} -table.frame-sides{border-width:0 1px} -table.frame-topbot{border-width:1px 0} -th.halign-left,td.halign-left{text-align:left} -th.halign-right,td.halign-right{text-align:right} -th.halign-center,td.halign-center{text-align:center} -th.valign-top,td.valign-top{vertical-align:top} -th.valign-bottom,td.valign-bottom{vertical-align:bottom} -th.valign-middle,td.valign-middle{vertical-align:middle} -table thead th,table tfoot th{font-weight:bold} -tbody tr th{display:table-cell;line-height:1.6;background:#f7f8f7} -tbody tr th,tbody tr th p,tfoot tr th,tfoot tr th p{color:rgba(0,0,0,.8);font-weight:bold} -p.tableblock>code:only-child{background:none;padding:0} -p.tableblock{font-size:1em} -td>div.verse{white-space:pre} -ol{margin-left:1.75em} -ul li ol{margin-left:1.5em} -dl dd{margin-left:1.125em} -dl dd:last-child,dl dd:last-child>:last-child{margin-bottom:0} -ol>li p,ul>li p,ul dd,ol dd,.olist .olist,.ulist .ulist,.ulist .olist,.olist .ulist{margin-bottom:.625em} -ul.unstyled,ol.unnumbered,ul.checklist,ul.none{list-style-type:none} -ul.unstyled,ol.unnumbered,ul.checklist{margin-left:.625em} -ul.checklist li>p:first-child>.fa-square-o:first-child,ul.checklist li>p:first-child>.fa-check-square-o:first-child{width:1em;font-size:.85em} -ul.checklist li>p:first-child>input[type="checkbox"]:first-child{width:1em;position:relative;top:1px} -ul.inline{margin:0 auto .625em auto;margin-left:-1.375em;margin-right:0;padding:0;list-style:none;overflow:hidden} -ul.inline>li{list-style:none;float:left;margin-left:1.375em;display:block} -ul.inline>li>*{display:block} -.unstyled dl dt{font-weight:400;font-style:normal} -ol.arabic{list-style-type:decimal} -ol.decimal{list-style-type:decimal-leading-zero} -ol.loweralpha{list-style-type:lower-alpha} -ol.upperalpha{list-style-type:upper-alpha} -ol.lowerroman{list-style-type:lower-roman} -ol.upperroman{list-style-type:upper-roman} -ol.lowergreek{list-style-type:lower-greek} -.hdlist>table,.colist>table{border:0;background:none} -.hdlist>table>tbody>tr,.colist>table>tbody>tr{background:none} -td.hdlist1,td.hdlist2{vertical-align:top;padding:0 .625em} -td.hdlist1{font-weight:bold;padding-bottom:1.25em} -.literalblock+.colist,.listingblock+.colist{margin-top:-.5em} -.colist>table tr>td:first-of-type{padding:0 .75em;line-height:1} -.colist>table tr>td:last-of-type{padding:.25em 0} -.thumb,.th{line-height:0;display:inline-block;border:solid 4px #fff;-webkit-box-shadow:0 0 0 1px #ddd;box-shadow:0 0 0 1px #ddd} -.imageblock.left,.imageblock[style*="float: left"]{margin:.25em .625em 1.25em 0} -.imageblock.right,.imageblock[style*="float: right"]{margin:.25em 0 1.25em .625em} -.imageblock>.title{margin-bottom:0} -.imageblock.thumb,.imageblock.th{border-width:6px} -.imageblock.thumb>.title,.imageblock.th>.title{padding:0 .125em} -.image.left,.image.right{margin-top:.25em;margin-bottom:.25em;display:inline-block;line-height:0} -.image.left{margin-right:.625em} -.image.right{margin-left:.625em} -a.image{text-decoration:none;display:inline-block} -a.image object{pointer-events:none} -sup.footnote,sup.footnoteref{font-size:.875em;position:static;vertical-align:super} -sup.footnote a,sup.footnoteref a{text-decoration:none} -sup.footnote a:active,sup.footnoteref a:active{text-decoration:underline} -#footnotes{padding-top:.75em;padding-bottom:.75em;margin-bottom:.625em} -#footnotes hr{width:20%;min-width:6.25em;margin:-.25em 0 .75em 0;border-width:1px 0 0 0} -#footnotes .footnote{padding:0 .375em 0 .225em;line-height:1.3334;font-size:.875em;margin-left:1.2em;text-indent:-1.05em;margin-bottom:.2em} -#footnotes .footnote a:first-of-type{font-weight:bold;text-decoration:none} -#footnotes .footnote:last-of-type{margin-bottom:0} -#content #footnotes{margin-top:-.625em;margin-bottom:0;padding:.75em 0} -.gist .file-data>table{border:0;background:#fff;width:100%;margin-bottom:0} -.gist .file-data>table td.line-data{width:99%} -div.unbreakable{page-break-inside:avoid} -.big{font-size:larger} -.small{font-size:smaller} -.underline{text-decoration:underline} -.overline{text-decoration:overline} -.line-through{text-decoration:line-through} -.aqua{color:#00bfbf} -.aqua-background{background-color:#00fafa} -.black{color:#000} -.black-background{background-color:#000} -.blue{color:#0000bf} -.blue-background{background-color:#0000fa} -.fuchsia{color:#bf00bf} -.fuchsia-background{background-color:#fa00fa} -.gray{color:#606060} -.gray-background{background-color:#7d7d7d} -.green{color:#006000} -.green-background{background-color:#007d00} -.lime{color:#00bf00} -.lime-background{background-color:#00fa00} -.maroon{color:#600000} -.maroon-background{background-color:#7d0000} -.navy{color:#000060} -.navy-background{background-color:#00007d} -.olive{color:#606000} -.olive-background{background-color:#7d7d00} -.purple{color:#600060} -.purple-background{background-color:#7d007d} -.red{color:#bf0000} -.red-background{background-color:#fa0000} -.silver{color:#909090} -.silver-background{background-color:#bcbcbc} -.teal{color:#006060} -.teal-background{background-color:#007d7d} -.white{color:#bfbfbf} -.white-background{background-color:#fafafa} -.yellow{color:#bfbf00} -.yellow-background{background-color:#fafa00} -span.icon>.fa{cursor:default} -.admonitionblock td.icon [class^="fa icon-"]{font-size:2.5em;text-shadow:1px 1px 2px rgba(0,0,0,.5);cursor:default} -.admonitionblock td.icon .icon-note:before{content:"\f05a";color:#19407c} -.admonitionblock td.icon .icon-tip:before{content:"\f0eb";text-shadow:1px 1px 2px rgba(155,155,0,.8);color:#111} -.admonitionblock td.icon .icon-warning:before{content:"\f071";color:#bf6900} -.admonitionblock td.icon .icon-caution:before{content:"\f06d";color:#bf3400} -.admonitionblock td.icon .icon-important:before{content:"\f06a";color:#bf0000} -.conum[data-value]{display:inline-block;color:#fff!important;background-color:rgba(0,0,0,.8);-webkit-border-radius:100px;border-radius:100px;text-align:center;font-size:.75em;width:1.67em;height:1.67em;line-height:1.67em;font-family:"Open Sans","DejaVu Sans",sans-serif;font-style:normal;font-weight:bold} -.conum[data-value] *{color:#fff!important} -.conum[data-value]+b{display:none} -.conum[data-value]:after{content:attr(data-value)} -pre .conum[data-value]{position:relative;top:-.125em} -b.conum *{color:inherit!important} -.conum:not([data-value]):empty{display:none} -dt,th.tableblock,td.content,div.footnote{text-rendering:optimizeLegibility} -h1,h2,p,td.content,span.alt{letter-spacing:-.01em} -p strong,td.content strong,div.footnote strong{letter-spacing:-.005em} -p,blockquote,dt,td.content,span.alt{font-size:1.0625rem} -p{margin-bottom:1.25rem} -.sidebarblock p,.sidebarblock dt,.sidebarblock td.content,p.tableblock{font-size:1em} -.exampleblock>.content{background-color:#fffef7;border-color:#e0e0dc;-webkit-box-shadow:0 1px 4px #e0e0dc;box-shadow:0 1px 4px #e0e0dc} -.print-only{display:none!important} -@media print{@page{margin:1.25cm .75cm} -*{-webkit-box-shadow:none!important;box-shadow:none!important;text-shadow:none!important} -a{color:inherit!important;text-decoration:underline!important} -a.bare,a[href^="#"],a[href^="mailto:"]{text-decoration:none!important} -a[href^="http:"]:not(.bare):after,a[href^="https:"]:not(.bare):after{content:"(" attr(href) ")";display:inline-block;font-size:.875em;padding-left:.25em} -abbr[title]:after{content:" (" attr(title) ")"} -pre,blockquote,tr,img,object,svg{page-break-inside:avoid} -thead{display:table-header-group} -svg{max-width:100%} -p,blockquote,dt,td.content{font-size:1em;orphans:3;widows:3} -h2,h3,#toctitle,.sidebarblock>.content>.title{page-break-after:avoid} -#toc,.sidebarblock,.exampleblock>.content{background:none!important} -#toc{border-bottom:1px solid #ddddd8!important;padding-bottom:0!important} -.sect1{padding-bottom:0!important} -.sect1+.sect1{border:0!important} -#header>h1:first-child{margin-top:1.25rem} -body.book #header{text-align:center} -body.book #header>h1:first-child{border:0!important;margin:2.5em 0 1em 0} -body.book #header .details{border:0!important;display:block;padding:0!important} -body.book #header .details span:first-child{margin-left:0!important} -body.book #header .details br{display:block} -body.book #header .details br+span:before{content:none!important} -body.book #toc{border:0!important;text-align:left!important;padding:0!important;margin:0!important} -body.book #toc,body.book #preamble,body.book h1.sect0,body.book .sect1>h2{page-break-before:always} -.listingblock code[data-lang]:before{display:block} -#footer{background:none!important;padding:0 .9375em} -#footer-text{color:rgba(0,0,0,.6)!important;font-size:.9em} -.hide-on-print{display:none!important} -.print-only{display:block!important} -.hide-for-print{display:none!important} -.show-for-print{display:inherit!important}} diff --git a/docs/stylesheets/gh-pages.css b/docs/stylesheets/gh-pages.css deleted file mode 100644 index 121cac3885f..00000000000 --- a/docs/stylesheets/gh-pages.css +++ /dev/null @@ -1,214 +0,0 @@ -@import url(https://fonts.googleapis.com/css?family=Montserrat|Open+Sans); -@import "asciidoctor.css"; /* Default asciidoc style framework - important */ - -/* Custom block: details */ - -.sidebarblock.details > .content { - border-left: .25rem solid rgba(0, 0, 0, 0.1); -} - -.sidebarblock.details > .content { - padding-left: .5rem -} - -.sidebarblock.details { - background-color: transparent; - border: none; - padding-bottom: 0; - padding-top: 0; -} - -/* Overrides for asciidoctor.css */ - -a { - color: #0074c7; -} - -h1, -#content h1 > a.link, -h2, -h2 > a.link, -h3, -h3 > a.link, -#toctitle, -#toctitle > a.link, -.sidebarblock > .content > .title, -.sidebarblock > .content > .title > a.link, -h4, -h4 > a.link, -h5, -h5 > a.link, -h6, -h6 > a.link { - color: #e46c0a; -} - -.subheader, -.admonitionblock td.content > .title, -.audioblock > .title, -.exampleblock > .title, -.imageblock > .title, -.listingblock > .title, -.literalblock > .title, -.stemblock > .title, -.openblock > .title, -.paragraph >.title, -.quoteblock > .title, -table.tableblock > .title, -.verseblock > .title, -.videoblock > .title, -.dlist > .title, -.olist > .title, -.ulist > .title, -.qlist > .title, -.hdlist > .title { - color: rgb(197, 90, 17); -} - -@media screen { - #footer { - background-color: #f6f6f6; - border-top: 1px #d2d2d2 solid; - border-bottom: 1px #d2d2d2 solid; - font-family: "Open Sans", "DejaVu Sans", sans-serif; - } - - #footer-text { - color: #595959; - line-height: 1; - } -} - -/* Utilities */ - -.container { - width: 100%; - max-width: 62.5rem; - margin-left: auto; - margin-right: auto; -} - -/* Colors */ - -.bg-light { - background-color: #f8f9fa; -} - -.bg-lighter { - background-color: #fbfbfb; -} - - -/* Navbar */ - -.navbar { - display: flex; - flex-wrap: nowrap; - justify-content: center; - font-family: "Open Sans", "DejaVu Sans", sans-serif; - font-size: 1rem; - padding: 0px 1rem; -} - -.navbar-lg { - font-size: 1.3rem; -} - -.navbar-light { - border-bottom: 1px #d2d2d2 solid; -} - -.navbar a { - text-decoration: none; -} - -.navbar-light a { - color: #595959; -} - -.navbar-light a:hover, -.navbar-light a:focus { - color: #000000; -} - -.navbar a.active, -.navbar a.active:hover, -.navbar a.active:focus { - font-weight: bold; -} - -.navbar-light a.active, -.navbar-light a.active:hover, -.navbar-light a.active:focus { - color: #000000; -} - -.navbar-light .nav-link { - border-bottom: 2px transparent solid; -} - -.navbar-light .nav-link.active { - border-bottom: 2px #e46c0a solid; -} - -.navbar-lg .nav-link.active { - border-bottom: 0; -} - -.navbar > .container { - display: flex; - flex-wrap: wrap; - justify-content: center; -} - -.navbar-brand { - display: inline-block; - margin-right: 1rem; - padding: 0.8125rem 0rem; - padding-left: 0.9375rem; - font-size: 1.25rem; -} - -.navbar-brand img { - height: 1.4rem; - margin: 0rem 0.4rem; - padding: 0; - vertical-align: middle; -} - -.navbar-lg .navbar-brand { - font-size: 1.7rem; -} - -.navbar-lg .navbar-brand img { - height: 2.3rem; -} - -.navbar-nav { - display: flex; - flex-wrap: wrap; - flex-grow: 1; - align-items: center; - margin: 0px; - padding: 0px; - list-style: none; - line-height: inherit; -} - -.nav-link { - display: block; - margin: 0px; - border: 0px; - padding: 1rem 1rem; -} - -/* Do not display site header on print mediums */ -@media print { - #seedu-header { - display: none; - } - - #site-header { - display: none; - } -} diff --git a/docs/team/johndoe.adoc b/docs/team/johndoe.adoc deleted file mode 100644 index f39e76e49b2..00000000000 --- a/docs/team/johndoe.adoc +++ /dev/null @@ -1,72 +0,0 @@ -= John Doe - Project Portfolio -:site-section: AboutUs -:imagesDir: ../images -:stylesDir: ../stylesheets - -== PROJECT: AddressBook - Level 3 - ---- - -== Overview - -AddressBook - Level 3 is a desktop address book application used for teaching Software Engineering principles. The user interacts with it using a CLI, and it has a GUI created with JavaFX. It is written in Java, and has about 10 kLoC. - -== Summary of contributions - -* *Major enhancement*: added *the ability to undo/redo previous commands* -** What it does: allows the user to undo all previous commands one at a time. Preceding undo commands can be reversed by using the redo command. -** Justification: This feature improves the product significantly because a user can make mistakes in commands and the app should provide a convenient way to rectify them. -** Highlights: This enhancement affects existing commands and commands to be added in future. It required an in-depth analysis of design alternatives. The implementation too was challenging as it required changes to existing commands. -** Credits: _{mention here if you reused any code/ideas from elsewhere or if a third-party library is heavily used in the feature so that a reader can make a more accurate judgement of how much effort went into the feature}_ - -* *Minor enhancement*: added a history command that allows the user to navigate to previous commands using up/down keys. - -* *Code contributed*: [https://github.com[Functional code]] [https://github.com[Test code]] _{give links to collated code files}_ - -* *Other contributions*: - -** Project management: -*** Managed releases `v1.3` - `v1.5rc` (3 releases) on GitHub -** Enhancements to existing features: -*** Updated the GUI color scheme (Pull requests https://github.com[#33], https://github.com[#34]) -*** Wrote additional tests for existing features to increase coverage from 88% to 92% (Pull requests https://github.com[#36], https://github.com[#38]) -** Documentation: -*** Did cosmetic tweaks to existing contents of the User Guide: https://github.com[#14] -** Community: -*** PRs reviewed (with non-trivial review comments): https://github.com[#12], https://github.com[#32], https://github.com[#19], https://github.com[#42] -*** Contributed to forum discussions (examples: https://github.com[1], https://github.com[2], https://github.com[3], https://github.com[4]) -*** Reported bugs and suggestions for other teams in the class (examples: https://github.com[1], https://github.com[2], https://github.com[3]) -*** Some parts of the history feature I added was adopted by several other class mates (https://github.com[1], https://github.com[2]) -** Tools: -*** Integrated a third party library (Natty) to the project (https://github.com[#42]) -*** Integrated a new Github plugin (CircleCI) to the team repo - -_{you can add/remove categories in the list above}_ - -== Contributions to the User Guide - - -|=== -|_Given below are sections I contributed to the User Guide. They showcase my ability to write documentation targeting end-users._ -|=== - -include::../UserGuide.adoc[tag=delete] - -include::../UserGuide.adoc[tag=dataencryption] - -== Contributions to the Developer Guide - -|=== -|_Given below are sections I contributed to the Developer Guide. They showcase my ability to write technical documentation and the technical depth of my contributions to the project._ -|=== - -include::../DeveloperGuide.adoc[tag=undoredo] - -include::../DeveloperGuide.adoc[tag=dataencryption] - - -== PROJECT: PowerPointLabs - ---- - -_{Optionally, you may include other projects in your portfolio.}_ diff --git a/docs/team/johndoe.md b/docs/team/johndoe.md new file mode 100644 index 00000000000..1f1e9e6f6db --- /dev/null +++ b/docs/team/johndoe.md @@ -0,0 +1,46 @@ +--- +layout: page +title: John Doe's Project Portfolio Page +--- + +## Project: AddressBook Level 3 + +AddressBook - Level 3 is a desktop address book application used for teaching Software Engineering principles. The user interacts with it using a CLI, and it has a GUI created with JavaFX. It is written in Java, and has about 10 kLoC. + +Given below are my contributions to the project. + +* **New Feature**: Added the ability to undo/redo previous commands. + * What it does: allows the user to undo all previous commands one at a time. Preceding undo commands can be reversed by using the redo command. + * Justification: This feature improves the product significantly because a user can make mistakes in commands and the app should provide a convenient way to rectify them. + * Highlights: This enhancement affects existing commands and commands to be added in future. It required an in-depth analysis of design alternatives. The implementation too was challenging as it required changes to existing commands. + * Credits: *{mention here if you reused any code/ideas from elsewhere or if a third-party library is heavily used in the feature so that a reader can make a more accurate judgement of how much effort went into the feature}* + +* **New Feature**: Added a history command that allows the user to navigate to previous commands using up/down keys. + +* **Code contributed**: [RepoSense link]() + +* **Project management**: + * Managed releases `v1.3` - `v1.5rc` (3 releases) on GitHub + +* **Enhancements to existing features**: + * Updated the GUI color scheme (Pull requests [\#33](), [\#34]()) + * Wrote additional tests for existing features to increase coverage from 88% to 92% (Pull requests [\#36](), [\#38]()) + +* **Documentation**: + * User Guide: + * Added documentation for the features `delete` and `find` [\#72]() + * Did cosmetic tweaks to existing documentation of features `clear`, `exit`: [\#74]() + * Developer Guide: + * Added implementation details of the `delete` feature. + +* **Community**: + * PRs reviewed (with non-trivial review comments): [\#12](), [\#32](), [\#19](), [\#42]() + * Contributed to forum discussions (examples: [1](), [2](), [3](), [4]()) + * Reported bugs and suggestions for other teams in the class (examples: [1](), [2](), [3]()) + * Some parts of the history feature I added was adopted by several other class mates ([1](), [2]()) + +* **Tools**: + * Integrated a third party library (Natty) to the project ([\#42]()) + * Integrated a new Github plugin (CircleCI) to the team repo + +* _{you can add/remove categories in the list above}_ diff --git a/docs/templates/LICENSE b/docs/templates/LICENSE deleted file mode 100644 index 2073b44dee6..00000000000 --- a/docs/templates/LICENSE +++ /dev/null @@ -1,24 +0,0 @@ -This directory contains code from the Asciidoctor Project. -(https://asciidoctor.org/) - -MIT License - -Copyright (C) 2012-2018 Dan Allen, Ryan Waldron and the Asciidoctor Project - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. diff --git a/docs/templates/_footer.html.slim b/docs/templates/_footer.html.slim deleted file mode 100644 index 938ed7ddc61..00000000000 --- a/docs/templates/_footer.html.slim +++ /dev/null @@ -1,12 +0,0 @@ -/ NOTE: You must restart the gradle daemon after modifying any template file for the changes to take effect. -#footer - .container - #footer-text - - if attr? :revnumber - |#{attr 'version-label'} #{attr :revnumber} - - if attr? :revnumber && (attr? 'last-update-label') - br - - if attr? 'last-update-label' - |#{attr 'last-update-label'} #{attr :docdatetime} - - unless (docinfo_content = (docinfo :footer)).empty? - =docinfo_content diff --git a/docs/templates/_footnotes.html.slim b/docs/templates/_footnotes.html.slim deleted file mode 100644 index 0cacda3e529..00000000000 --- a/docs/templates/_footnotes.html.slim +++ /dev/null @@ -1,7 +0,0 @@ -/ NOTE: You must restart the gradle daemon after modifying any template file for the changes to take effect. -#footnotes - hr - - footnotes.each do |fn| - .footnote id=(footnote_id fn.index) - a href="##{footnoteref_id fn.index}" =fn.index - |. #{fn.text} diff --git a/docs/templates/_header.html.slim b/docs/templates/_header.html.slim deleted file mode 100644 index 3c2d5aed43c..00000000000 --- a/docs/templates/_header.html.slim +++ /dev/null @@ -1,76 +0,0 @@ -/ NOTE: You must restart the gradle daemon after modifying any template file for the changes to take effect. -- if !(attr? 'no-site-header') && (attr? 'site-seedu') - #seedu-header - nav.navbar.navbar-lg.navbar-light.bg-lighter - .container - a.navbar-brand href='https://se-edu.github.io/' - img src=(site_url 'images/SeEduLogo.png') alt='SE-EDU' - ul.navbar-nav - li.nav-item - a.nav-link href='https://se-edu.github.io/addressbook-level1' AB-1 - li.nav-item - a.nav-link href='https://se-edu.github.io/addressbook-level2' AB-2 - li.nav-item - a.nav-link.active href=(site_url 'index.html') AB-3 - li.nav-item - a.nav-link href='https://se-edu.github.io/addressbook-level4' AB-4 - li.nav-item - a.nav-link href='https://se-edu.github.io/collate' Collate - li.nav-item - a.nav-link href='https://se-edu.github.io/se-book' Book - li.nav-item - a.nav-link href='https://se-edu.github.io/learningresources' Resources - -- if !(attr? 'no-site-header') - #site-header - nav.navbar.navbar-light.bg-light - .container - - if attr? 'site-name' - a.navbar-brand href=(site_url 'index.html') =(attr 'site-name') - ul.navbar-nav - li.nav-item - =nav_link('UserGuide', 'UserGuide.html', 'User Guide') - li.nav-item - =nav_link('DeveloperGuide', 'DeveloperGuide.html', 'Developer Guide') - - if attr? 'site-seedu' - li.nav-item - =nav_link('LearningOutcomes', 'LearningOutcomes.html', 'LOs') - li.nav-item - =nav_link('AboutUs', 'AboutUs.html', 'About Us') - li.nav-item - =nav_link('ContactUs', 'ContactUs.html', 'Contact Us') - - if attr? 'site-githuburl' - li.navitem - a.nav-link href=(attr 'site-githuburl') - span.fa.fa-github.fa-lg aria-hidden='true' - |  View on GitHub - -/ AsciiDoc leaves an empty header div even if there's no doctitle -#header - - if has_header? - - unless notitle - h1 =header.title - - if [:author, :revnumber, :revdate, :revremark].any? {|a| attr? a } - .details - - if attr? :author - span.author#author =(attr :author) - br - - if attr? :email - span.email#email =sub_macros(attr :email) - br - - if (authorcount = (attr :authorcount).to_i) > 1 - - (2..authorcount).each do |idx| - span.author id="author#{idx}" =(attr "author_#{idx}") - br - - if attr? "email_#{idx}" - span.email id="email#{idx}" =sub_macros(attr "email_#{idx}") - - if attr? :revnumber - span#revnumber #{((attr 'version-label') || '').downcase} #{attr :revnumber}#{',' if attr? :revdate} - ' - - if attr? :revdate - span#revdate =attr :revdate - - if attr? :revremark - br - span#revremark =(attr :revremark) - - if (attr? :toc) && (attr? 'toc-placement', 'auto') - include _toc.html diff --git a/docs/templates/_toc.html.slim b/docs/templates/_toc.html.slim deleted file mode 100644 index f0ad719fe0f..00000000000 --- a/docs/templates/_toc.html.slim +++ /dev/null @@ -1,5 +0,0 @@ -/ NOTE: You must restart the gradle daemon after modifying any template file for the changes to take effect. -#toc class=(attr 'toc-class', 'toc') - #toctitle =(attr 'toc-title') - / Renders block_outline.html. - = converter.convert document, 'outline' diff --git a/docs/templates/document.html.slim b/docs/templates/document.html.slim deleted file mode 100644 index 3e1961d4afa..00000000000 --- a/docs/templates/document.html.slim +++ /dev/null @@ -1,29 +0,0 @@ -/ NOTE: You must restart the gradle daemon after modifying any template file for the changes to take effect. -doctype 5 -html lang=(attr :lang, 'en' unless attr? :nolang) - head - meta charset=(attr :encoding, 'UTF-8') - /[if IE] - meta http-equiv="X-UA-Compatible" content="IE=edge" - meta name='viewport' content='width=device-width, initial-scale=1.0' - meta name='generator' content="Asciidoctor #{attr 'asciidoctor-version'}" - = html_meta_if 'application-name', (attr 'app-name') - = html_meta_if 'author', (attr :authors) - = html_meta_if 'copyright', (attr :copyright) - = html_meta_if 'description', (attr :description) - = html_meta_if 'keywords', (attr :keywords) - title=((doctitle sanitize: true) || (attr 'untitled-label')) - = styles_and_scripts - - unless (docinfo_content = docinfo).empty? - =docinfo_content - body( - id=id - class=[(attr :doctype), ("#{attr 'toc-class'} toc-#{attr 'toc-position', 'left'}" if (attr? 'toc-class') && (attr? :toc) && (attr? 'toc-placement', 'auto'))] - style=style_value(max_width: (attr 'max-width'))) - - unless noheader - include _header.html - #content =content - - unless !footnotes? || (attr? :nofootnotes) - include _footnotes.html - - unless nofooter - include _footer.html diff --git a/docs/templates/helpers.rb b/docs/templates/helpers.rb deleted file mode 100644 index 7060efe223e..00000000000 --- a/docs/templates/helpers.rb +++ /dev/null @@ -1,300 +0,0 @@ -# NOTE: You must restart the gradle daemon after modifying any template file for the changes to take effect. -require 'asciidoctor' -require 'json' - -if Gem::Version.new(Asciidoctor::VERSION) <= Gem::Version.new('1.5.1') - fail 'asciidoctor: FAILED: HTML5/Slim backend needs Asciidoctor >=1.5.2!' -end - -unless defined? Slim::Include - fail 'asciidoctor: FAILED: HTML5/Slim backend needs Slim >= 2.1.0!' -end - -# Add custom functions to this module that you want to use in your Slim -# templates. Within the template you can invoke them as top-level functions -# just like in Haml. -module Slim::Helpers - - # URIs of external assets. - FONT_AWESOME_URI = '//cdnjs.cloudflare.com/ajax/libs/font-awesome/4.5.0/css/font-awesome.min.css' - HIGHLIGHTJS_BASE_URI = '//cdnjs.cloudflare.com/ajax/libs/highlight.js/7.4' - MATHJAX_JS_URI = '//cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_HTMLorMML' - PRETTIFY_BASE_URI = '//cdnjs.cloudflare.com/ajax/libs/prettify/r298' - - # Defaults - DEFAULT_HIGHLIGHTJS_THEME = 'github' - DEFAULT_PRETTIFY_THEME = 'prettify' - DEFAULT_SECTNUMLEVELS = 3 - DEFAULT_TOCLEVELS = 2 - - # The MathJax configuration. - MATHJAX_CONFIG = { - tex2jax: { - inlineMath: [::Asciidoctor::INLINE_MATH_DELIMITERS[:latexmath]], - displayMath: [::Asciidoctor::BLOCK_MATH_DELIMITERS[:latexmath]], - ignoreClass: 'nostem|nolatexmath' - }, - asciimath2jax: { - delimiters: [::Asciidoctor::BLOCK_MATH_DELIMITERS[:asciimath]], - ignoreClass: 'nostem|noasciimath' - } - }.to_json - - VOID_ELEMENTS = %w(area base br col command embed hr img input keygen link meta param source track wbr) - - - ## - # Creates an HTML tag with the given name and optionally attributes. Can take - # a block that will run between the opening and closing tags. - # - # @param name [#to_s] the name of the tag. - # @param attributes [Hash] - # @param content [#to_s] the content; +nil+ to call the block. - # @yield The block of Slim/HTML code within the tag (optional). - # @return [String] a rendered HTML element. - # - def html_tag(name, attributes = {}, content = nil) - attrs = attributes.reject { |_, v| - v.nil? || (v.respond_to?(:empty?) && v.empty?) - }.map do |k, v| - v = v.compact.join(' ') if v.is_a? Array - v = nil if v == true - v = %("#{v}") if v - [k, v] * '=' - end - attrs_str = attrs.empty? ? '' : attrs.join(' ').prepend(' ') - - if VOID_ELEMENTS.include? name.to_s - %(<#{name}#{attrs_str}>) - else - content ||= yield if block_given? - %(<#{name}#{attrs_str}>#{content}) - end - end - - ## - # Formats the given hash as CSS declarations for an inline style. - # - # @example - # style_value(text_align: 'right', float: 'left') - # => "text-align: right; float: left;" - # - # style_value(text_align: nil, float: 'left') - # => "float: left;" - # - # style_value(width: [90, '%'], height: '50px') - # => "width: 90%; height: 50px;" - # - # style_value(width: ['120px', 'px']) - # => "width: 90px;" - # - # style_value(width: [nil, 'px']) - # => nil - # - # @param declarations [Hash] - # @return [String, nil] - # - def style_value(declarations) - decls = [] - - declarations.each do |prop, value| - next if value.nil? - - if value.is_a? Array - value, unit = value - next if value.nil? - value = value.to_s + unit unless value.end_with? unit - end - prop = prop.to_s.gsub('_', '-') - decls << %(#{prop}: #{value}) - end - - decls.empty? ? nil : decls.join('; ') + ';' - end - - def urlize(*segments) - path = segments * '/' - if path.start_with? '//' - @_uri_scheme ||= document.attr 'asset-uri-scheme', 'https' - path = %(#{@_uri_scheme}:#{path}) unless @_uri_scheme.empty? - end - normalize_web_path path - end - - - ## - # @param index [Integer] the footnote's index. - # @return [String] footnote id to be used in a link. - def footnote_id(index = (attr :index)) - %(_footnote_#{index}) - end - - ## - # @param index (see #footnote_id) - # @return [String] footnoteref id to be used in a link. - def footnoteref_id(index = (attr :index)) - %(_footnoteref_#{index}) - end - - def icons? - document.attr? :icons - end - - def font_icons? - document.attr? :icons, 'font' - end - - def nowrap? - 'nowrap' if !document.attr?(:prewrap) || option?('nowrap') - end - - #-------------------------------------------------------- - # _header - # - - ## - # Constructs a relative path to the target page. - # - # @param href [String] Path to the target page, relative to the site root. - # @return [String] Path to the target page, relative to the current document. - def site_url(href) - path_resolver = (@path_resolver ||= PathResolver.new) - base_dir = path_resolver.posixify(@document.base_dir) - site_root = path_resolver.posixify(@document.attr('site-root', base_dir)) - unless path_resolver.is_root? site_root - raise ::ArgumentError, %(site-root must be an absolute path: #{site_root}) - end - base_dir_to_root = nil - if (base_dir != site_root) && (base_dir.start_with? site_root) - comp, root = path_resolver.partition_path(base_dir.slice(site_root.length + 1, base_dir.length)) - base_dir_to_root = '../' * comp.length - end - path_resolver.web_path(href, base_dir_to_root) - end - - ## - # Constructs a HTML tag representing a link in the navigation bar. - # - # @param section [String] Name of the site section represented by the link. - # This is used to highlight the navigation item if the current document - # sets its site-section attribute to this String, indicating that the - # reader is browsing this section of the site. - # @param href [String] Path to the target page, relative to the site root. - # @param content [String] Link content. This is usually the human-readable name - # of the link target. - # @return [String] The rendered tag. - def nav_link(section, href, content) - attributes = { - :class => ['nav-link'], - :href => site_url(href), - } - attributes[:class].push('active') if (attr 'site-section') == section - html_tag('a', attributes, content) - end - - #-------------------------------------------------------- - # document - # - - ## - # Returns HTML meta tag if the given +content+ is not +nil+. - # - # @param name [#to_s] the name for the metadata. - # @param content [#to_s, nil] the value of the metadata, or +nil+. - # @return [String, nil] the meta tag, or +nil+ if the +content+ is +nil+. - # - def html_meta_if(name, content) - %() if content - end - - # Returns formatted style/link and script tags for header. - def styles_and_scripts - scripts = [] - styles = [] - tags = [] - - stylesheet = attr :stylesheet - stylesdir = attr :stylesdir, '' - default_style = ::Asciidoctor::DEFAULT_STYLESHEET_KEYS.include? stylesheet - linkcss = (attr? :linkcss) || safe >= ::Asciidoctor::SafeMode::SECURE - ss = ::Asciidoctor::Stylesheets.instance - - if linkcss - path = default_style ? ::Asciidoctor::DEFAULT_STYLESHEET_NAME : stylesheet - styles << { href: [stylesdir, path] } - elsif default_style - styles << { text: ss.primary_stylesheet_data } - else - styles << { text: read_asset(normalize_system_path(stylesheet, stylesdir), true) } - end - - if attr? :icons, 'font' - if attr? 'iconfont-remote' - styles << { href: (attr 'iconfont-cdn', FONT_AWESOME_URI) } - else - styles << { href: [stylesdir, %(#{attr 'iconfont-name', 'font-awesome'}.css)] } - end - end - - if attr? 'stem' - scripts << { src: MATHJAX_JS_URI } - scripts << { type: 'text/x-mathjax-config', text: %(MathJax.Hub.Config(#{MATHJAX_CONFIG});) } - end - - case attr 'source-highlighter' - when 'coderay' - if (attr 'coderay-css', 'class') == 'class' - if linkcss - styles << { href: [stylesdir, ss.coderay_stylesheet_name] } - else - styles << { text: ss.coderay_stylesheet_data } - end - end - - when 'pygments' - if (attr 'pygments-css', 'class') == 'class' - if linkcss - styles << { href: [stylesdir, ss.pygments_stylesheet_name(attr 'pygments-style')] } - else - styles << { text: ss.pygments_stylesheet_data(attr 'pygments-style') } - end - end - - when 'highlightjs' - hjs_base = attr :highlightjsdir, HIGHLIGHTJS_BASE_URI - hjs_theme = attr 'highlightjs-theme', DEFAULT_HIGHLIGHTJS_THEME - - scripts << { src: [hjs_base, 'highlight.min.js'] } - scripts << { src: [hjs_base, 'lang/common.min.js'] } - scripts << { text: 'hljs.initHighlightingOnLoad()' } - styles << { href: [hjs_base, %(styles/#{hjs_theme}.min.css)] } - - when 'prettify' - prettify_base = attr :prettifydir, PRETTIFY_BASE_URI - prettify_theme = attr 'prettify-theme', DEFAULT_PRETTIFY_THEME - - scripts << { src: [prettify_base, 'prettify.min.js'] } - scripts << { text: 'document.addEventListener("DOMContentLoaded", prettyPrint)' } - styles << { href: [prettify_base, %(#{prettify_theme}.min.css)] } - end - - styles.each do |item| - if item.key?(:text) - tags << html_tag(:style, {}, item[:text]) - else - tags << html_tag(:link, rel: 'stylesheet', href: urlize(*item[:href])) - end - end - - scripts.each do |item| - if item.key? :text - tags << html_tag(:script, {type: item[:type]}, item[:text]) - else - tags << html_tag(:script, type: item[:type], src: urlize(*item[:src])) - end - end - - tags.join "\n" - end - -end diff --git a/docs/tutorials/RemovingFields.adoc b/docs/tutorials/RemovingFields.adoc deleted file mode 100644 index 5a50b6965a6..00000000000 --- a/docs/tutorials/RemovingFields.adoc +++ /dev/null @@ -1,117 +0,0 @@ -= Tutorial - Removing a field from an entity -:site-section: DeveloperGuide -:imagesDir: ../images/remove -:stylesDir: ../stylesheets -:xrefstyle: full -ifdef::env-github[] -:tip-caption: :bulb: -:note-caption: :information_source: -:warning-caption: :warning: -endif::[] - -[quote, Antoine de Saint-Exupery] -Perfection is achieved, not when there is nothing more to add, but when there is nothing left to take away. - -== Introduction -When working on Address Book, you will most likely find that some features and fields that are no longer necessary. -In scenarios like this, you can consider refactoring the existing `Person` model to suit your use case. - -In this tutorial, we'll do exactly just that and remove the `address` field from `Person`. - -== Safely deleting `Address` - -Fortunately, the IntelliJ IDEA provides a robust refactoring tool that can identify _most_ usages. -Let's try to use it as much as we can. - -=== Assisted refactoring -The `address` field in `Person` is actually an instance of the `seedu.address.model.person.Address` class. -Since removing the `Address` class will break the application, we start by identifying ``Address``'s usages. -This allows us to see code that depends on `Address` to function properly and edit them on a case-by-case basis. -Right-click the `Address` class and select `Refactor` > `Safe Delete` through the menu. - -.Usages detected -image::UnsafeDelete.png[width=787px. height=238px] - -Choose to `View Usages` and you should be presented with a list of `Safe Delete Conflicts`. -These conflicts describe locations in which the `Address` class is used. - -.List of conflicts -image::SafeDeleteConflicts.png[width=955, height=640px] - -Remove usages of `Address` by performing ``Safe Delete``s on each entry. -You will need to exercise discretion when removing usages of `Address`. -Functions like `ParserUtil#parseAddress()` can be safely removed but its usages must be removed as well. -Other usages like in `EditPersonDescriptor` may require more careful inspection. - -Let's try removing references to `Address` in `EditPersonDescriptor`. - -. Safe delete the field `address` in `EditPersonDescriptor` -. Select `Yes` when prompted to remove getters and setters -. Select `View Usages` again image:UnsafeDeleteOnField.png[width=1145px, height=583px] -. Remove the usages of `address` and select `Do refactor` when you are done. -+ -TIP: Removing usages may result in errors. -Exercise discretion and fix them. -For example, removing the `address` field from the `Person` class will require you to modify its constructor. - -. Repeat the steps for the remaining usages of `Address` - -After you are done, verify that the application still works by compiling and running it again. - -=== Manual refactoring - -Unfortunately, there are usages of `Address` that IntelliJ IDEA cannot identify. -You can find them by searching for instances of the word `address` in your code (`Edit` > `Find` > `Find in path`). - -Places of interest to look out for would be resources used by the application. -`main/resources` contains images and `fxml` files used by the application and `test/resources` contains test data. -For example, there is a `$address` in each `PersonCard` that has not been removed nor identified. - -image::$address.png[width=1090px, height=890px] - -A quick look at the `PersonCard` class and its `fxml` file quickly reveals why it slipped past the automated refactoring. - -.PersonCard.java -[source, java] ----- -... -@FXML -private Label address; -... ----- - -.PersonCard.fxml -[source, xml] ----- -... -

+ +1. Repeat the steps for the remaining usages of `Address` + +After you are done, verify that the application still works by compiling and running it again. + +### Manual refactoring + +Unfortunately, there are usages of `Address` that IntelliJ IDEA cannot identify. You can find them by searching for instances of the word `address` in your code (`Edit` \> `Find` \> `Find in path`). + +Places of interest to look out for would be resources used by the application. `main/resources` contains images and `fxml` files used by the application and `test/resources` contains test data. For example, there is a `$address` in each `PersonCard` that has not been removed nor identified. + +![$address](../images/remove/$address.png) + +A quick look at the `PersonCard` class and its `fxml` file quickly reveals why it slipped past the automated refactoring. + +**`PersonCard.java`** + +``` java +... +@FXML +private Label address; +... +``` + +**`PersonCard.fxml`** + +``` xml +... +