]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - lib/default.php
Improved animated image thumbnail freedom of choice
[quix0rs-gnu-social.git] / lib / default.php
index f00104936339dc8459673453bb20daf52de2e12a..396e409e6de5917123918412fdd6601937a6edf8 100644 (file)
@@ -113,9 +113,9 @@ $default =
         'license' =>
         array('type' => 'cc', # can be 'cc', 'allrightsreserved', 'private'
               'owner' => null, # can be name of content owner e.g. for enterprise
-              'url' => 'http://creativecommons.org/licenses/by/3.0/',
+              'url' => 'https://creativecommons.org/licenses/by/3.0/',
               'title' => 'Creative Commons Attribution 3.0',
-              'image' => 'http://i.creativecommons.org/l/by/3.0/80x15.png'),
+              'image' => $_path . '/theme/licenses/cc_by_3.0_80x15.png'),
         'mail' =>
         array('backend' => 'mail',
               'params' => null,
@@ -144,7 +144,7 @@ $default =
               'path' => $_path . '/background/',
               'ssl' => null),
         'public' =>
-        array('localonly' => true,
+        array('localonly' => false,
               'blacklist' => array(),
               'autosource' => array()),
         'theme' =>
@@ -255,9 +255,10 @@ $default =
               ),
         'thumbnail' =>
         array('crop' => false,      // overridden to true if thumb height === null
-              'maxsize' => 600,     // thumbs with an edge larger than this will not be generated
+              'maxsize' => 1000,     // thumbs with an edge larger than this will not be generated
               'width' => 450,
-              'height' => 600),
+              'height' => 600,
+              'animated' => false), // null="UseFileAsThumbnail", false="can use still frame". true requires ImageMagickPlugin
         'application' =>
         array('desclimit' => null),
         'group' =>
@@ -294,14 +295,17 @@ $default =
         array('core' => array(
                             'AuthCrypt' => array(),
                             'Cronish' => array(),
+                            'Favorite' => array(),
                             'LRDD' => array(),
                             'StrictTransportSecurity' => array(),
                         ),
               'default' => array(
                             'Activity' => array(),
+                            'AntiBrute' => array(),
                             'Bookmark' => array(),
                             'ClientSideShorten' => array(),
                             'Directory' => array(),
+                            'DirectMessage' => array(),
                             'EmailAuthentication' => array(),
                             'Event' => array(),
                             'Oembed' => array(),
@@ -342,7 +346,8 @@ $default =
               'maxurllength' => 100,
               'maxnoticelength' => -1),
         'http' => // HTTP client settings when contacting other sites
-        array('ssl_cafile' => false, // To enable SSL cert validation, point to a CA bundle (eg '/usr/lib/ssl/certs/ca-certificates.crt')
+        array('ssl_cafile' => false, // To enable SSL cert validation, point to a CA bundle (eg '/usr/lib/ssl/certs/ca-certificates.crt') (this activates "ssl_verify_peer")
+              'ssl_verify_host' => true,    // HTTPRequest2 makes sure this is set to CURLOPT_SSL_VERIFYHOST==2 if using curl
               'curl' => false, // Use CURL backend for HTTP fetches if available. (If not, PHP's socket streams will be used.)
               'proxy_host' => null,
               'proxy_port' => null,