]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - lib/default.php
Type testing instead of just empty() in OStatusPlugin
[quix0rs-gnu-social.git] / lib / default.php
index 3a28ec12c721dd5f7b7d963afe73229dadfe9065..d2270fa6a562532505def19018a896b1c2a0b172 100644 (file)
@@ -213,47 +213,50 @@ $default =
               'sslserver' => null,
               'sslpath' => null,
               'ssl' => null,
-              'supported' => array('image/png',
-                                   'image/jpeg',
-                                   'image/gif',
-                                   'image/svg+xml',
-                                   'audio/mpeg',
-                                   'audio/x-speex',
-                                   'application/ogg',
-                                   'application/pdf',
-                                   'application/vnd.oasis.opendocument.text',
-                                   'application/vnd.oasis.opendocument.text-template',
-                                   'application/vnd.oasis.opendocument.graphics',
-                                   'application/vnd.oasis.opendocument.graphics-template',
-                                   'application/vnd.oasis.opendocument.presentation',
-                                   'application/vnd.oasis.opendocument.presentation-template',
-                                   'application/vnd.oasis.opendocument.spreadsheet',
-                                   'application/vnd.oasis.opendocument.spreadsheet-template',
-                                   'application/vnd.oasis.opendocument.chart',
-                                   'application/vnd.oasis.opendocument.chart-template',
-                                   'application/vnd.oasis.opendocument.image',
-                                   'application/vnd.oasis.opendocument.image-template',
-                                   'application/vnd.oasis.opendocument.formula',
-                                   'application/vnd.oasis.opendocument.formula-template',
-                                   'application/vnd.oasis.opendocument.text-master',
-                                   'application/vnd.oasis.opendocument.text-web',
-                                   'application/x-zip',
-                                   'application/zip',
-                                   'text/plain',
-                                   'video/mpeg',
-                                   'video/mp4',
-                                   'video/quicktime',
-                                   'video/webm'),
+              'supported' => array(
+                                'application/vnd.oasis.opendocument.chart'                  => 'odc',
+                                'application/vnd.oasis.opendocument.formula'                => 'odf',
+                                'application/vnd.oasis.opendocument.graphics'               => 'odg',
+                                'application/vnd.oasis.opendocument.graphics-template'      => 'otg',
+                                'application/vnd.oasis.opendocument.image'                  => 'odi',
+                                'application/vnd.oasis.opendocument.presentation'           => 'odp',
+                                'application/vnd.oasis.opendocument.presentation-template'  => 'otp',
+                                'application/vnd.oasis.opendocument.spreadsheet'            => 'ods',
+                                'application/vnd.oasis.opendocument.spreadsheet-template'   => 'ots',
+                                'application/vnd.oasis.opendocument.text'                   => 'odt',
+                                'application/vnd.oasis.opendocument.text-master'            => 'odm',
+                                'application/vnd.oasis.opendocument.text-template'          => 'ott',
+                                'application/vnd.oasis.opendocument.text-web'               => 'oth',
+                                'application/pdf'   => 'pdf',
+                                'application/zip'   => 'zip',
+                                'image/png'         => 'png',
+                                'image/jpeg'        => 'jpg',
+                                'image/gif'         => 'gif',
+                                'image/svg+xml'     => 'svg',
+                                'image/vnd.microsoft.icon'  => 'ico',
+                                'audio/ogg'         => 'ogg',
+                                'audio/mpeg'        => 'mpg',
+                                'audio/x-speex'     => 'spx',
+                                'application/ogg'   => 'ogx',
+                                'text/plain'        => 'txt',
+                                'video/mpeg'        => 'mpeg',
+                                'video/mp4'         => 'mp4',
+                                'video/ogg'         => 'ogv',
+                                'video/quicktime'   => 'mov',
+                                'video/webm'        => 'webm',
+                                ),
               'file_quota' => 5000000,
               'user_quota' => 50000000,
               'monthly_quota' => 15000000,
               'uploads' => true,
-              'filecommand' => '/usr/bin/file',
               'show_thumbs' => true, // show thumbnails in notice lists for uploaded images, and photos and videos linked remotely that provide oEmbed info
-              'thumb_width' => 100,
-              'thumb_height' => 75,
               'process_links' => true, // check linked resources for embeddable photos and videos; this will hit referenced external web sites when processing new messages.
               ),
+        'thumbnail' =>
+        array('crop' => false,      // overridden to true if thumb height === null
+              'maxsize' => 500,     // thumbs bigger than this will not be generated
+              'width' => 500,
+              'height' => 250),
         'application' =>
         array('desclimit' => null),
         'group' =>
@@ -298,6 +301,7 @@ $default =
                             'Activity' => array(),
                             'Bookmark' => array(),
                             'ClientSideShorten' => array(),
+                            'EmailAuthentication' => array(),
                             'Event' => array(),
                             'OpenID' => array(),
                             'Poll' => array(),