]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Add configuration option to toggle the indenting of the output HTML. Defaults to...
authorCraig Andrews <candrews@integralblue.com>
Sat, 5 Dec 2009 06:03:04 +0000 (01:03 -0500)
committerCraig Andrews <candrews@integralblue.com>
Sat, 5 Dec 2009 06:03:04 +0000 (01:03 -0500)
actions/twitapisearchatom.php
config.php.sample
lib/action.php
lib/default.php
lib/error.php
lib/htmloutputter.php
lib/rssaction.php
lib/xmloutputter.php
plugins/Facebook/facebookaction.php
plugins/Facebook/facebookutil.php

index 526ca2ae8b315b503cb79f9a7303bf914158f98a..1cb8d7efe6d507ced64fa7597e3683eefac4daee 100644 (file)
@@ -71,7 +71,7 @@ class TwitapisearchatomAction extends ApiAction
      * @see Action::__construct
      */
 
-    function __construct($output='php://output', $indent=true)
+    function __construct($output='php://output', $indent=null)
     {
         parent::__construct($output, $indent);
     }
index 9fccb84f3b76f3816130759e74dac69b15d11c7f..473eb74e2c6e7ddb050e4dbbd88f03cd1438e224 100644 (file)
@@ -236,6 +236,11 @@ $config['sphinx']['port'] = 3312;
 // Use a different hostname for SSL-encrypted pages
 // $config['site']['sslserver'] = 'secure.example.org';
 
+// Indent HTML and XML
+// Enable (default) for easier to read markup for developers,
+// disable to save some bandwidth.
+// $config['site']['indent'] = true;
+
 // If you have a lot of status networks on the same server, you can
 // store the site data in a database and switch as follows
 // Status_network::setupDB('localhost', 'statusnet', 'statuspass', 'statusnet');
index 8ad3917550ae7e09eeb112dfc8d9a24c8c557fdd..87d8a43993811069a4facf9f9baf810f2dabc2df 100644 (file)
@@ -68,7 +68,7 @@ class Action extends HTMLOutputter // lawsuit
      * @see XMLOutputter::__construct
      * @see HTMLOutputter::__construct
      */
-    function __construct($output='php://output', $indent=true)
+    function __construct($output='php://output', $indent=null)
     {
         parent::__construct($output, $indent);
     }
index d4ef045ea501c66a678ead061b343b4c5aafba58..db90aeca3e9077c5f31ee921951a555bd39de17a 100644 (file)
@@ -53,6 +53,7 @@ $default =
               'shorturllength' => 30,
               'dupelimit' => 60, # default for same person saying the same thing
               'textlimit' => 140,
+              'indent' => true,
               ),
         'db' =>
         array('database' => 'YOU HAVE TO SET THIS IN config.php',
index 3162cfe656f30c701a429f1cb6aaec6ded14e8a3..87a4d913b41b1287f7af821926c5a8dea82a8439 100644 (file)
@@ -50,7 +50,7 @@ class ErrorAction extends Action
     var $message = null;
     var $default = null;
 
-    function __construct($message, $code, $output='php://output', $indent=true)
+    function __construct($message, $code, $output='php://output', $indent=null)
     {
         parent::__construct($output, $indent);
 
index fd448ced5e4e9e311a61093ac4365495fb7d7769..2091c6e2ca4d60fd4020f2ca91cfbcb09558c909 100644 (file)
@@ -67,7 +67,7 @@ class HTMLOutputter extends XMLOutputter
      * @param boolean $indent Whether to indent output, default true
      */
 
-    function __construct($output='php://output', $indent=true)
+    function __construct($output='php://output', $indent=null)
     {
         parent::__construct($output, $indent);
     }
index d591c99ed8e86684b98c0fb9400808ed01f82ef0..62e3f21b61dc1f074547666cb3edbba681b1990d 100644 (file)
@@ -52,7 +52,7 @@ class Rss10Action extends Action
      * @see Action::__construct
      */
 
-    function __construct($output='php://output', $indent=true)
+    function __construct($output='php://output', $indent=null)
     {
         parent::__construct($output, $indent);
     }
index 5f06e491df2c2182fef496be074d419efe5c987c..15b18e7d90738f8ac3a348dd1b41931396d6c339 100644 (file)
@@ -67,10 +67,13 @@ class XMLOutputter
      * @param boolean $indent Whether to indent output, default true
      */
 
-    function __construct($output='php://output', $indent=true)
+    function __construct($output='php://output', $indent=null)
     {
         $this->xw = new XMLWriter();
         $this->xw->openURI($output);
+        if(is_null($indent)) {
+            $indent = common_config('site', 'indent');
+        }
         $this->xw->setIndent($indent);
     }
 
index c852bbf5e6e0a1540d423fe032d0ac0a8cf774a1..b090e9bd9a1e021061cb4b1604301d4d24d941da 100644 (file)
@@ -44,7 +44,7 @@ class FacebookAction extends Action
     var $app_uri  = null;
     var $app_name = null;
 
-    function __construct($output='php://output', $indent=true, $facebook=null, $flink=null)
+    function __construct($output='php://output', $indent=null, $facebook=null, $flink=null)
     {
         parent::__construct($output, $indent);
 
index 6f50c173ad875d4deb028f957e58f27bb3686248..2abcbb14e24c98a6d5390ce7b9a6d35a0004b8ea 100644 (file)
@@ -168,7 +168,7 @@ function facebookBroadcastNotice($notice)
 
 function updateProfileBox($facebook, $flink, $notice) {
     $fbaction = new FacebookAction($output = 'php://output',
-                                   $indent = true, $facebook, $flink);
+                                   $indent = null, $facebook, $flink);
     $fbaction->updateProfileBox($notice);
 }