Squirrel Tao » Wikis http://squirreltao.dreamfishery.com The tao of my squirrel paths on the web Wed, 26 May 2010 01:12:06 +0000 http://wordpress.org/?v=2.9 en hourly 1 Review of MediaWiki 1.1 Beginner’s Guide http://squirreltao.dreamfishery.com/2010/05/25/review-of-mediawiki-1-1-beginners-guide/ http://squirreltao.dreamfishery.com/2010/05/25/review-of-mediawiki-1-1-beginners-guide/#comments Wed, 26 May 2010 01:12:06 +0000 Jennifer Elrod http://squirreltao.dreamfishery.com/?p=415 MediaWiki 1.1 Beginner’s Guide by Packt Publishing is a concise and practical guide that steps the reader through all the basics of setting up and running a MediaWiki site. It is a hands-on, learn-by-example book. It will take the reader through installation, creating user accounts, creating content, formatting content, adding media, organizing content, security, managing editing conflicts, customization, back-up, and extensions. Integration with WordPress, Joomla! and Moodle are also covered. While the subject of customizing MediaWiki’s skin takes a whole book of its own to cover properly (see MediaWiki Skins Design, also from Packt Publishing), it is briefly covered in one chapter of this book. If you will be spending any time administering a wiki of your own, it is worthwhile to get this book rather than relying on the free MediaWiki documentation that is available on the web.


Browse all the entries under Reviews, Wikis.

]]>
http://squirreltao.dreamfishery.com/2010/05/25/review-of-mediawiki-1-1-beginners-guide/feed/ 0
Updated Rounded Blue MediaWiki Skin, Opened Its Development to Community http://squirreltao.dreamfishery.com/2010/04/10/updated-rounded-blue-mediawiki-skin-opened-its-development-to-community/ http://squirreltao.dreamfishery.com/2010/04/10/updated-rounded-blue-mediawiki-skin-opened-its-development-to-community/#comments Sun, 11 Apr 2010 01:30:13 +0000 Jennifer Elrod http://squirreltao.dreamfishery.com/?p=389 I’ve made a long overdue update to the Rounded Blue MediaWiki skin! The layout is now truly liquid; it will no longer break from long pages or from a table of contents. Instead of using large images for the main rounded content box, the skin now tiles very small images. So the page load rate will also be faster. There is a new download location for the skin. I am now using Google Code to host the future development of this skin. The updated skin can be downloaded from this link: http://code.google.com/p/roundedblue-mediawiki-skin/downloads/list. Please feel free to participate in the new Google Code project site, even if it is only to add issues to the issues tracker or pages to the wiki.

UPDATE 4/13/10: In the latest version of MediaWiki, the portlets were being duplicated in the left column, and the footer was being crammed into the left column. I have updated the skin to fix the layout.

UPDATE 4/18/10: In I.E. 8, extra white space was being inserted in the sidebar portlets. Thanks to Dan Zahlis for the CSS fix for this. The fix was to set the width of the navigation and toolbar portlets to 100% in a CSS file just for I.E. 8. The latest download of Rounded Blue contains this fix. Of course if you are using a language or custom sidebar portlet, you will need to edit the IE80Fixes.css file to add a CSS block for it.

PLEASE NOTE 4/18/10: From now on, when I make changes to Rounded Blue, I will not be adding any more updates to my blog. I will be using the Google Code project site to keep track of issues and fixes.

If You Need a Language Sidebar

For some reason, an empty language sidebar kept being generated, no matter what I did, so I had to remove the rounded box styling for the language sidebar. For users who need the language sidebar, find the following code in roundedblue.php:

if ( !isset( $sidebar['SEARCH'] ) ) $sidebar['SEARCH'] = true;
if ( !isset( $sidebar['TOOLBOX'] ) ) $sidebar['TOOLBOX'] = true;
foreach ($sidebar as $boxName => $cont) {
if ( $boxName == 'SEARCH' ) {
$this->searchBox();
} elseif ( $boxName == 'TOOLBOX' ) {
echo $begintags;
$this->toolbox();
echo $endtags;
} elseif ( isset( $sidebar['LANGUAGES'] ) && $boxName == 'LANGUAGES' ) {
$this->languageBox();
} elseif ( !empty($boxName) ) {
echo $begintags;
$this->customBox( $boxName, $cont );
echo $endtags;
}
}

Change it to:

if ( !isset( $sidebar['SEARCH'] ) ) $sidebar['SEARCH'] = true;
if ( !isset( $sidebar['TOOLBOX'] ) ) $sidebar['TOOLBOX'] = true;
if ( !isset( $sidebar['LANGUAGES'] ) ) $sidebar['LANGUAGES'] = true;
foreach ($sidebar as $boxName => $cont) {
if ( $boxName == 'SEARCH' ) {
$this->searchBox();
} elseif ( $boxName == 'TOOLBOX' ) {
echo $begintags;
$this->toolbox();
echo $endtags;
} elseif ( $boxName == 'LANGUAGES' ){
echo $begintags;
$this->languageBox();
echo $endtags;
} elseif ( !empty($boxName) ) {
echo $begintags;
$this->customBox( $boxName, $cont );
echo $endtags;
}
}

Editing the Image Files

The image files are sheet-c.gif, sheet-s.gif, sheet-h.gif and sheet-v.gif. All of these should be very easy to edit with the exception of sheet-s.gif, which is a circle. (It gets clipped by the CSS to generate each corner.) Just remember when editing gif files that if you want to change the colors, make the image mode RGB Color instead of Indexed Color while you are working on them. But then when you are done making your changes, change the image mode back to Indexed Color. To edit sheet-s.gif you will need to become adept at using the Elliptical Marquee Tool in PhotoShop (or its equivalent in whatever image editing program you use). With this tool, you can select the larger of the two nested circles and make it whatever color you want. Do this on another layer which you can then hide when you select the smaller nested circle. Otherwise the smaller nested circle will get covered up, and you will need to play around a lot to get it just the right size. But before selecting the smaller nested circle to change its color, select the inverse of the larger circle selection. Then make the background color whatever color you want. Then hide the layer you used to change the color of the larger nested circle. Then you will be able to see the smaller circle, select it and change its color.


Browse all the entries under Wikis.

]]>
http://squirreltao.dreamfishery.com/2010/04/10/updated-rounded-blue-mediawiki-skin-opened-its-development-to-community/feed/ 1
MediaWiki 1.1 Beginner's Guide http://squirreltao.dreamfishery.com/2010/04/07/mediawiki-1-1-beginners-guide/ http://squirreltao.dreamfishery.com/2010/04/07/mediawiki-1-1-beginners-guide/#comments Thu, 08 Apr 2010 02:39:48 +0000 Jennifer Elrod http://squirreltao.dreamfishery.com/?p=380 MediaWiki 1.1 Beginner's GuideA new guide to MediaWiki, MediaWiki 1.1 Beginner's Guide, has been published by Packt Publishing. It covers all the basics of installing, administering and organizing a MediaWiki site. Like the previous Packt Publishing MediaWiki book I reviewed, this one walks the reader through use cases with examples and exercises. I love that type of format for user guides. I will be reviewing the book here as soon as I have finished reading it. In the meanwhile, with the publisher’s permission I am sharing a sample chapter from the book. The chapter is called “Organizing Your Wiki’s Content“. Enjoy!


Browse all the entries under Books, Web Design, Wikis.

]]>
http://squirreltao.dreamfishery.com/2010/04/07/mediawiki-1-1-beginners-guide/feed/ 0
Review of MediaWiki Skins Design http://squirreltao.dreamfishery.com/2008/12/23/review-of-mediawiki-skins-design/ http://squirreltao.dreamfishery.com/2008/12/23/review-of-mediawiki-skins-design/#comments Wed, 24 Dec 2008 05:15:53 +0000 Jennifer Elrod http://squirreltao.dreamfishery.com/2008/12/23/review-of-mediawiki-skins-design/ I wish I had the book MediaWiki Skins Design when I first set out to design a MediaWiki skin for my philosophy subsite. It would have saved me so much time and trouble. Those were the days when I didn’t have a baby. I could stay up half the night going through hours of CSS trial and error just to tweak one or two little design elements. I could never do that now. As soon as I have time I intend to use some of the info in this book to clean up my skins. Nothing like this existed to my knowledge when I set out to make my skins. Documentation is often the weakest link in the open source community. This book fills an important gap that should democratize MediaWiki even more, making it more appealing to a wider swath of the web population.

The book follows my favorite format for a technical guide, taking the reader step by step through an example that resembles the kind of thing you’d want to do in real life. It breaks down everything thoroughly with plenty of pictures. Topics covered include not only CSS but also MediaWiki PHP functions that are integrated into a MediaWiki skin. As a bonus, there is information on adding on some of the latest widgets that Web 2.0 has to offer, from thickbox to twitter. To make your skin a real professional class act, you can even learn exactly how to use licensing and copyright options and exactly how to make your skin printer friendly. If you’re going to be spending any time messing with MediaWiki skin design, and you’re like me and don’t have time to spend hours spinning your wheels, do yourself a favor and get a copy of this book.


Browse all the entries under Books, Reviews, Wikis.

]]>
http://squirreltao.dreamfishery.com/2008/12/23/review-of-mediawiki-skins-design/feed/ 0
MediaWiki Skins Design: Social Networking and MediaWiki http://squirreltao.dreamfishery.com/2008/10/17/mediawiki-skins-design-social-networking-and-mediawiki/ http://squirreltao.dreamfishery.com/2008/10/17/mediawiki-skins-design-social-networking-and-mediawiki/#comments Sat, 18 Oct 2008 03:11:42 +0000 Jennifer Elrod http://squirreltao.dreamfishery.com/2008/10/17/mediawiki-skins-design-social-networking-and-mediawiki/ All those who have emailed me with questions about designing a MediaWiki skin, take note. Now there is a book for you. Packt Publishing has released a book called MediaWiki Skins Design. With the consent of the publisher, I’m releasing a sample chapter (Chapter 8, Social Networking and MediaWiki) of the book here on Squirrel Tao. Clicking the link will bring up a pdf version of the chapter. Topics include how to embed Twitter and YouTube content and how to enable social bookmarking on your wiki.


Browse all the entries under Web Design, Wikis.

]]>
http://squirreltao.dreamfishery.com/2008/10/17/mediawiki-skins-design-social-networking-and-mediawiki/feed/ 4