-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathArecaURLs.java
More file actions
48 lines (39 loc) · 1.77 KB
/
ArecaURLs.java
File metadata and controls
48 lines (39 loc) · 1.77 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
package com.application.areca;
/**
*
* <BR>
* @author Olivier PETRUCCI
* @author bugtamer
* <BR>
*
*/
/*
Copyright 2005-2015, Olivier PETRUCCI.
Copyright 2024, bugtamer.
This file is part of Areca.
Areca is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
Areca is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Areca; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
public interface ArecaURLs {
/** Only used to shorten Areca URLs. */
static String BASE_URL = "https://areca-backup.sourceforge.io";
/** Only used to shorten Areca URLs. */
static String QUERY_PARAMS = "?fromApplication=1¤tVersion=";
public String HELP_ROOT = BASE_URL + "/documentation.php" + QUERY_PARAMS;
public String TUTORIAL_ROOT = BASE_URL + "/tutorial.php" + QUERY_PARAMS;
public String DONATION_URL = "https://www.paypal.com/cgi-bin/webscr?item_name=Donation+to+Areca+Backup&cmd=_donations&business=olivier.petrucci%40gmail.com&lc=US";
public String ARECA_URL = BASE_URL;
public String REGEX_URL = BASE_URL + "/regex.php";
public String VERSION_URL = BASE_URL + "/version_xml.php";
public String BACKUP_COPY_URL = BASE_URL + "/config_backup.php";
public String PLUGINS_URL = BASE_URL + "/plugin_list.php";
}