<?php
# This file was automatically generated by the MediaWiki 1.26alpha
# installer. If you make manual changes, please keep track in case you
# need to recreate them later.
#
# See includes/DefaultSettings.php for all configurable settings
# and their default values, but don't forget to make changes in _this_
# file, not there.
#
# Further documentation for configuration settings may be found at:
# https://www.mediawiki.org/wiki/Manual:Configuration_settings

# Protect against web entry
if ( !defined( 'MEDIAWIKI' ) ) {
	exit;
}

## Uncomment this to disable output compression
# $wgDisableOutputCompression = true;

$wgSitename = "Basef";

## The URL base path to the directory containing the wiki;
## defaults for all runtime URL paths are based off of this.
## For more information on customizing the URLs
## (like /w/index.php/Page_title to /wiki/Page_title) please see:
## https://www.mediawiki.org/wiki/Manual:Short_URL
$wgScriptPath = "";
$wgScriptExtension = ".php";

## The protocol and server name to use in fully-qualified URLs
$wgServer = "http://localhost:10080";

## The relative URL path to the skins directory
$wgStylePath = "$wgScriptPath/skins";

## The relative URL path to the logo.  Make sure you change this from the default,
## or else you'll overwrite your logo when you upgrade!
$wgLogo = "$wgScriptPath/resources/assets/logo.png";

## UPO means: this is also a user preference option

$wgEnableEmail = true;
$wgEnableUserEmail = false; # UPO

$wgEmergencyContact = "fernandoservico@gmail.com";
$wgPasswordSender = "fernandoservico@gmail.com";

$wgEnotifUserTalk = false; # UPO
$wgEnotifWatchlist = false; # UPO
$wgEmailAuthentication = false;

## Database settings
$wgDBtype = "mysql";
$wgDBserver = "localhost";
$wgDBname = "basefwiki";
$wgDBuser = "basefwiki";
$wgDBpassword = "basefwiki";

# MySQL specific settings
$wgDBprefix = "bfw_";

# MySQL table options to use during installation or update
$wgDBTableOptions = "ENGINE=InnoDB, DEFAULT CHARSET=utf8";

# Experimental charset support for MySQL 5.0.
$wgDBmysql5 = false;

## Shared memory settings
$wgMainCacheType = CACHE_NONE;
$wgMemCachedServers = array();

## To enable image uploads, make sure the 'images' directory
## is writable, then set this to true:
$wgEnableUploads = true;
#$wgUseImageMagick = true;
#$wgImageMagickConvertCommand = "/usr/bin/convert";

# InstantCommons allows wiki to use images from http://commons.wikimedia.org
$wgUseInstantCommons = false;

## If you use ImageMagick (or any other shell command) on a
## Linux server, this will need to be set to the name of an
## available UTF-8 locale
$wgShellLocale = "en_US.utf8";

## If you want to use image uploads under safe mode,
## create the directories images/archive, images/thumb and
## images/temp, and make them all writable. Then uncomment
## this, if it's not already uncommented:
#$wgHashedUploadDirectory = false;

## Set $wgCacheDirectory to a writable directory on the web server
## to make your wiki go slightly faster. The directory should not
## be publically accessible from the web.
#$wgCacheDirectory = "$IP/cache";

# Site language code, should be one of the list in ./languages/Names.php
$wgLanguageCode = "pt-br";

$wgSecretKey = "23f3171cd25ae5ede79448f91b3deae49d4885560d62fba717e4008f46c1987f";

# Site upgrade key. Must be set to a string (default provided) to turn on the
# web installer while LocalSettings.php is in place
$wgUpgradeKey = "57d65c0a1011d304";

## For attaching licensing metadata to pages, and displaying an
## appropriate copyright notice / icon. GNU Free Documentation
## License and Creative Commons licenses are supported so far.
$wgRightsPage = ""; # Set to the title of a wiki page that describes your license/copyright
$wgRightsUrl = "";
$wgRightsText = "";
$wgRightsIcon = "";

# Path to the GNU diff3 utility. Used for conflict resolution.
$wgDiff3 = "/usr/bin/diff3";

# The following permissions were set based on your choice in the installer
$wgGroupPermissions['*']['createaccount'] = false;
$wgGroupPermissions['*']['edit'] = false;

## Default skin: you can change the default skin. Use the internal symbolic
## names, ie 'vector', 'monobook':
$wgDefaultSkin = "vector";

# End of automatically generated settings.
# Add more configuration options below.

require_once "$IP/extensions/SyntaxHighlight_GeSHi/SyntaxHighlight_GeSHi.php";
require_once "$IP/skins/Vector/Vector.php";
require_once "$IP/extensions/UniversalLanguageSelector/UniversalLanguageSelector.php";
require_once "$IP/extensions/BreadCrumbs/BreadCrumbs.php";
require_once "$IP/extensions/VisualEditor/VisualEditor.php";

// Enable by default for everybody
$wgDefaultUserOptions [ 'visualeditor-enable' ] = 1 ;

// Don't allow users to disable it
$wgHiddenPrefs [ ] = 'visualeditor-enable' ;

$wgDefaultUserOptions['visualeditor-enable-experimental'] = 1;

$wgVisualEditorParsoidURL = 'http://localhost:8142';
$wgVisualEditorParsoidPrefix = 'localhost' ;

$wgFileExtensions = array(
    'png', 'gif', 'jpg', 'jpeg', 'jp2', 'webp', 'ppt', 'pdf', 'psd',
    'mp3', 'xls', 'xlsx', 'swf', 'doc','docx', 'odt', 'odc', 'odp',
    'odg', 'mpp', 'zip', 'tar', 'gz'
);



// Proxy to use for curl requests.
// false: use direct connection to Parsoid daemon ($wgHTTPProxy is not used
// either)
$wgVisualEditorParsoidHTTPProxy = false ;

// Interwiki prefix to pass to the Parsoid instance
// Parsoid will be called as $url/$prefix/$pagename
$wgVisualEditorParsoidPrefix = 'localhost' ;

// Forward users' Cookie: headers to Parsoid.  Required for private wikis (login required to read).
// If the wiki is not private (ie $wgGroupPermissions['*']['read'] is true) this configuration
// variable will be ignored.
//
// NOTE: This feature requires a non-locking session store.  The default session store will not work
// and will cause deadlocks when trying to use this feature, causing you to receive "MWHttpRequest"
// errors.  If you have a private wiki and are using the default session store in Apache, be sure to
// uncomment this line.
// $wgSessionsInObjectCache = true;
//
// WARNING: ONLY enable forwarding users' cookies on private wikis and ONLY IF you understand the
// SECURITY IMPLICATIONS of sending Cookie headers to Parsoid over HTTP.  For security reasons, it is
// strongly recommended that $wgVisualEditorParsoidURL be pointed to localhost if this setting is
// enabled.
$wgVisualEditorParsoidForwardCookies = false ;

// Timeout for HTTP requests to Parsoid in seconds
$wgVisualEditorParsoidTimeout = 100 ;

// Serialization cache timeout, in seconds
$wgVisualEditorSerializationCacheTimeout = 3600 ;

// Namespaces to enable VisualEditor in
$wgVisualEditorNamespaces = array_merge ( $wgContentNamespaces , array ( NS_USER ) ) ;

// Whether to enable the (experimental for now) TOC widget
$wgVisualEditorEnableTocWidget = false ;

// List of skins VisualEditor integration supports
$wgVisualEditorSupportedSkins = array ( 'vector' , 'apex' , 'monobook' , 'minerva' ) ;

// Whether to use change tagging for VisualEditor edits
$wgVisualEditorUseChangeTagging = true ;

// Whether to disable for logged-in users
// This allows you to enable the 'visualeditor-enable' preference by default
// but still disable VE for logged-out users (by setting this to false).
$wgVisualEditorDisableForAnons = false ;

// Whether to show the "welcome to the beta" dialog the first time a user uses VisualEditor
$wgVisualEditorShowBetaWelcome = false ;

// Where to put the VisualEditor edit tab
// 'before': put it right before the old edit tab
// 'after': put it right after the old edit tab
$wgVisualEditorTabPosition = 'before' ;

$wgVisualEditorTabMessages = array (
    // i18n message key to use for the VisualEditor edit tab
    // If null, the default edit tab caption will be used
    // The 'visualeditor-ca-ve-edit' message is available for this
    'edit' => null ,
    // i18n message key to use for the old edit tab
    // If null, the tab's caption will not be changed
    'editsource' => 'visualeditor-ca-editsource' ,
    // i18n message key to use for the VisualEditor create tab
    // If null, the default create tab caption will be used
    // The 'visualeditor-ca-ve-create' message is available for this
    'create' => null ,
    // i18n message key to use for the old create tab
    // If null, the tab's caption will not be changed
    'createsource' => 'visualeditor-ca-createsource' ,
    // i18n message key to use for the VisualEditor section edit link
    // If null, the default edit section link caption will be used
    'editsection' => null ,
    // i18n message key to use for the source section edit link
    // If null, the link's caption will not be changed
    'editsectionsource' => 'visualeditor-ca-editsource-section' ,

    // i18n message key for an optional appendix to add to each of these from JS
    // Use this if you have HTML messages to add
    // The 'visualeditor-beta-appendix' message is available for this purpose
    'editappendix' => null ,
    'editsourceappendix' => null ,
    'createappendix' => null ,
    'createsourceappendix' => null ,
    'editsectionappendix' => null ,
    'editsectionsourceappendix' => null ,
) ;