diff --git a/.travis.yml b/.travis.yml
index 676eaa7e656d..98af2e16ffb1 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -5,7 +5,7 @@ matrix:
script: >-
./config/travis/run-checks.sh &&
- ./gradlew clean checkstyleMain checkstyleTest headless allTests coverage coveralls asciidoctor copyDummySearchPage
+ ./gradlew clean checkstyleMain checkstyleTest headless allTests coverage coveralls asciidoctor
deploy:
skip_cleanup: true
diff --git a/build.gradle b/build.gradle
index 13ae04691dad..4f2949b6e774 100644
--- a/build.gradle
+++ b/build.gradle
@@ -231,11 +231,6 @@ task deployOfflineDocs(type: Copy) {
}
}
-task copyDummySearchPage(type: Copy) {
- from 'docs/DummySearchPage.html'
- into "${buildDir}/docs/html5"
-}
-
deployOfflineDocs.dependsOn asciidoctor
processResources.dependsOn deployOfflineDocs
diff --git a/docs/DummySearchPage.html b/docs/DummySearchPage.html
deleted file mode 100644
index 1607d4c57291..000000000000
--- a/docs/DummySearchPage.html
+++ /dev/null
@@ -1,32 +0,0 @@
-
-
-
-
- Dummy Search Page
-
-
-
- Hi : This is a placeholder page for se-edu/addressbook-level4.
- You may update the code to load a page from a real service (e.g., Google search).
- This dummy page is used here because, given the high number of forks of this repo, loading a page from a real third-party service by default can result in that service taking counter-measures (e.g., redirecting to captcha pages) due to the high number of rapid requests received from a single IP.
- When you have made the change, please remove:
-
- - This file (
docs/DummySearchPage.html
).
- - Task
copyDummySearchPage
in both build.gradle
and .travis.yml
.
-
-
-
diff --git a/src/main/java/seedu/address/ui/BrowserPanel.java b/src/main/java/seedu/address/ui/BrowserPanel.java
index 13e6b3c86434..99c2b09f40d6 100644
--- a/src/main/java/seedu/address/ui/BrowserPanel.java
+++ b/src/main/java/seedu/address/ui/BrowserPanel.java
@@ -21,8 +21,7 @@
public class BrowserPanel extends UiPart {
public static final String DEFAULT_PAGE = "default.html";
- public static final String SEARCH_PAGE_URL =
- "https://se-edu.github.io/addressbook-level4/DummySearchPage.html?name=";
+ public static final String SEARCH_PAGE_URL = "https://se-edu.github.io/dummy-search-page/?name=";
private static final String FXML = "BrowserPanel.fxml";