]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
StatusNet to GNU social renaming in minor places
authorMikael Nordfeldth <mmn@hethane.se>
Fri, 27 Feb 2015 11:55:08 +0000 (12:55 +0100)
committerMikael Nordfeldth <mmn@hethane.se>
Fri, 27 Feb 2015 11:55:25 +0000 (12:55 +0100)
lib/apiaction.php
lib/apiauthaction.php
lib/atom10feed.php
lib/rssaction.php

index 09061e364769342b230fbb47d0ecb2d56a536273..062e6d07746fcf2cfa34b72cfac95f372b8d5575 100755 (executable)
@@ -159,7 +159,7 @@ class ApiAction extends Action
         $this->limit    = $this->count + 1;
 
         if ($this->arg('since')) {
-            header('X-StatusNet-Warning: since parameter is disabled; use since_id');
+            header('X-GNUsocial-Warning: since parameter is disabled; use since_id');
         }
 
         $this->source = $this->trimmed('source');
index 2eca6b646762257a94d78b87e72fdc3f0df12d3b..2f2e50a4d747b852f1fcbfb18eed1e384cd9b69b 100644 (file)
@@ -39,7 +39,7 @@
 
 /*! @page authentication Authentication
 
-    StatusNet supports HTTP Basic Authentication and OAuth for API calls.
+    GNU social supports HTTP Basic Authentication and OAuth for API calls.
 
     @warning Currently, users who have created accounts without setting a
     password via OpenID, Facebook Connect, etc., cannot use the API until
index 77e05b8ca56f5d4ee4d461fb1bc15c0b46c265d5..2bba6d0a91474bf5ac7271c3cc35aa83b2574e2c 100644 (file)
@@ -167,10 +167,10 @@ class Atom10Feed extends XMLStringer
 
         $this->element(
             'generator', array(
-                'uri'     => 'http://status.net',
+                'uri'     => 'https://gnu.io/social',
                 'version' => GNUSOCIAL_VERSION
             ),
-            'StatusNet'
+            'GNU social'
         );
 
         $this->element('id', null, $this->id);
index 684ecd6d8c1f1370e088e83e3f60d03bbc377882..c3e1283fed0d2c90a472cbfa8239793da52f56ea 100644 (file)
@@ -89,7 +89,7 @@ class Rss10Action extends Action
             if (!isset($_SERVER['PHP_AUTH_USER'])) {
 
                 // This header makes basic auth go
-                header('WWW-Authenticate: Basic realm="StatusNet RSS"');
+                header('WWW-Authenticate: Basic realm="GNU social RSS"');
 
                 // If the user hits cancel -- bam!
                 $this->show_basic_auth_error();