Skip to content

Commit

Permalink
Always use https for help files (JabRef#1615)
Browse files Browse the repository at this point in the history
  • Loading branch information
stefan-kolb authored Jul 23, 2016
1 parent e333b8f commit 0684f55
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ Try to double click the `jar` file or execute the following command:

## Documentation

JabRef comes with an [online help](http://help.jabref.org/), accessed by pressing `F1` or clicking on a question mark icon.
JabRef comes with an [online help](https://help.jabref.org/), accessed by pressing `F1` or clicking on a question mark icon.
The help is are probably not exhaustive enough to satisfy everyone yet, but it should help sort out the most important issues about using the program.
If you choose languages other than English, some or all help pages may appear in your chosen languages.

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/net/sf/jabref/gui/help/HelpAction.java
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ public void setHelpFile(HelpFile urlPart) {

@Override
public void actionPerformed(ActionEvent e) {
String url = "http://help.jabref.org/" + Globals.prefs.get(JabRefPreferences.LANGUAGE) + "/" + helpPage.getPageName();
String url = "https://help.jabref.org/" + Globals.prefs.get(JabRefPreferences.LANGUAGE) + "/" + helpPage.getPageName();
JabRefDesktop.openBrowserShowPopup(url);
}
}
2 changes: 1 addition & 1 deletion src/test/java/net/sf/jabref/logic/help/HelpFileTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
import static junit.framework.TestCase.assertEquals;

public class HelpFileTest {
private final String jabrefHelp = "http://help.jabref.org/en/";
private final String jabrefHelp = "https://help.jabref.org/en/";
@Test
public void referToValidPage() throws IOException {
for (HelpFile help : HelpFile.values()) {
Expand Down

0 comments on commit 0684f55

Please sign in to comment.