]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
add api/laconica for backwards compatibility
authorEvan Prodromou <evan@status.net>
Thu, 27 Aug 2009 16:34:32 +0000 (09:34 -0700)
committerEvan Prodromou <evan@status.net>
Thu, 27 Aug 2009 16:34:32 +0000 (09:34 -0700)
lib/router.php

index b25b1705f565cdc3dd7c0a0b62305d347771ab86..00e728f5571078b512c01b3da684d6b043ed36d6 100644 (file)
@@ -401,16 +401,22 @@ class Router
                     array('action' => 'api',
                           'apiaction' => 'statusnet'));
 
-        $m->connect('api/statusnet/:method',
+        // For older methods, we provide "laconica" base action
+
+        $m->connect('api/laconica/:method',
                     array('action' => 'api',
                           'apiaction' => 'statusnet'));
 
+        // Groups and tags are newer than 0.8.1 so no backward-compatibility
+        // necessary
+
         // Groups
         //'list' has to be handled differently, as php will not allow a method to be named 'list'
         $m->connect('api/statusnet/groups/list/:argument',
                     array('action' => 'api',
                           'method' => 'list_groups',
                           'apiaction' => 'groups'));
+
         foreach (array('xml', 'json', 'rss', 'atom') as $e) {
             $m->connect('api/statusnet/groups/list.' . $e,
                     array('action' => 'api',