Page Menu
Home
Wolfplex
Search
Configure Global Search
Log In
Files
F408597
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
3 KB
Subscribers
None
View Options
diff --git a/README.md b/README.md
index 11019fb..17faaeb 100755
--- a/README.md
+++ b/README.md
@@ -1,19 +1,23 @@
# WikiWonders Foreground Skin
A MediaWiki skin that focuses on putting your content in the foreground.
It uses the Zurb Foundation (http://foundation.zurb.com) CSS framework.
## Installation
-Clone this repository to your `skins` directory and add the following line to your `LocalSettings.php` file.
+Clone this repository to your `skins` directory and create a symlink to the main skin file.
- require_once($IP.'/skins/wikiwonders-foreground/foreground.php');
+ ln -s Foreground/foreground.php Foreground.php
-Now find the `$wgDefaultSkin` variable and set it to `foreground`.
+Then add the following line to your `LocalSettings.php` file.
+
+ require_once($IP.'/skins/Foreground/foreground.php');
+
+Now find the `$wgDefaultSkin` variable and set it to `Foreground`.
## License
Copyright 2013 WikiWonders
-Released under the GPL
\ No newline at end of file
+Released under the GPL
diff --git a/foreground.php b/foreground.php
index b7ddb10..74acd03 100755
--- a/foreground.php
+++ b/foreground.php
@@ -1,46 +1,46 @@
<?php
/**
* foreground.com foundation wiki skin.
*
* @file
* @ingroup Skins
* @author WikiWonders <skins@wikiwonders.net>
* @license 2-clause BSD
*/
if( ! defined( 'MEDIAWIKI' ))
{
die('Wiki Wonders What Youre Doing');
}
$wgExtensionCredits['skin'][] = array(
'path' => __FILE__,
- 'name' => 'foreground',
- 'url' => '[http://wikiwonders.net]',
- 'author' => '[http://wikiwonders.net WikiWonders]',
- 'descriptionmsg' => 'The base WikiWonders skin with Zurbs Foundation atop it',
+ 'name' => 'Foreground',
+ 'url' => 'http://wikiwonders.net/wiki/Foreground',
+ 'author' => 'Garrick van Buren',
+ 'descriptionmsg' => 'A MediaWiki skin that focuses on putting your content in the foreground.',
);
-$wgValidSkinNames['foreground'] = 'foreground';
+$wgValidSkinNames['foreground'] = 'Foreground';
$wgAutoloadClasses['Skinforeground'] = __DIR__.'/foreground.skin.php';
$wgExtensionMessagesFiles['foreground'] = __DIR__.'/foreground.i18n.php';
$wgResourceModules['skins.foreground'] = array(
'styles' => array(
'foreground/assets/stylesheets/normalize.css' => array('media' => 'screen'),
'foreground/assets/stylesheets/foundation.css' => array('media' => 'screen'),
'foreground/assets/stylesheets/foreground.css' => array('media' => 'screen'),
'foreground/assets/stylesheets/foreground-print.css' => array('media' => 'print'),
'foreground/assets/stylesheets/jquery.autocomplete.css' => array('media' => 'screen'),
'foreground/assets/stylesheets/responsive-tables.css' => array('media' => 'screen')
),
'scripts' => array(
'foreground/assets/scripts/foundation/jquery.tooltips.js' => array('type' => 'javascript'),
'foreground/assets/scripts/foundation/modernizer.foundation.js' => array('type' => 'javascript'),
'foreground/assets/scripts/foundation/jquery.placeholder.min.js' => array('type' => 'javascript'),
'foreground/assets/scripts/foreground.js' => array('type' => 'javascript')
),
'remoteBasePath' => &$GLOBALS['wgStylePath'],
'localBasePath' => &$GLOBALS['wgStyleDirectory']
-);
\ No newline at end of file
+);
File Metadata
Details
Attached
Mime Type
text/x-diff
Expires
Mon, Jun 9, 10:54 PM (1 w, 2 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
46154
Default Alt Text
(3 KB)
Attached To
rKIBA kiba-one
Event Timeline
Log In to Comment