aboutsummaryrefslogtreecommitdiffstats
path: root/main/src/cgeo/geocaching/cgCache.java
diff options
context:
space:
mode:
authorBananeweizen <bananeweizen@gmx.de>2011-09-20 21:51:07 +0200
committerBananeweizen <bananeweizen@gmx.de>2011-09-20 21:51:07 +0200
commitb3da6401d9b51c9526c821b0e0907c63f4fddc67 (patch)
treeb216bc06fdb53a789470973649487115e55ff7b2 /main/src/cgeo/geocaching/cgCache.java
parent383e20e40cb6c22d9fc124386abf3d9f83972a66 (diff)
downloadcgeo-b3da6401d9b51c9526c821b0e0907c63f4fddc67.zip
cgeo-b3da6401d9b51c9526c821b0e0907c63f4fddc67.tar.gz
cgeo-b3da6401d9b51c9526c821b0e0907c63f4fddc67.tar.bz2
initial support of OpenCaching.DE/.PL/.US
* search for geocode can fetch online from those sites (but no other search method!) when testing, search for codes like OU0001, OP0001, OC0001. * show CC license for those caches * disable user actions, disable caches around for non GC caches open issues: * other search methods not yet implemented (but available in API) * CC license and mentioning of the OpenCaching network in about dialog
Diffstat (limited to 'main/src/cgeo/geocaching/cgCache.java')
-rw-r--r--main/src/cgeo/geocaching/cgCache.java8
1 files changed, 8 insertions, 0 deletions
diff --git a/main/src/cgeo/geocaching/cgCache.java b/main/src/cgeo/geocaching/cgCache.java
index 68aaf49..a9b41dc 100644
--- a/main/src/cgeo/geocaching/cgCache.java
+++ b/main/src/cgeo/geocaching/cgCache.java
@@ -458,4 +458,12 @@ public class cgCache implements ICache {
return name;
}
+ public boolean supportsUserActions() {
+ return getConnector().supportsUserActions();
+ }
+
+ public boolean supportsCachesAround() {
+ return getConnector().supportsCachesAround();
+ }
+
}