My Wiki talk:Administrators

From My Wiki
Revision as of 19:18, 8 December 2009 by imported>Tlosk's Bot
Jump to navigation Jump to search

Wiki Customizations

Documentation of tweaks and customizations made to ACC Wiki that differ from a default installation of the Mediawiki Software with special emphasis on changes that are either not documented or poorly documented elsewhere and would be difficult to reproduce without significant research or experimentation.

Extensions

  • Autoincrement - A variable hook that adds an autoincrementing variable, {{AUTOINCREMENT}}.
  • CategoryTree - Displays a collapsable tree for navigating categories/subcategories/articles. See How To Use Category Trees.
  • Cite - Basic foot note functionality. See How To Make Footnotes.
  • ParserFunctions - A set of logical and arithmetic expressions.
  • ReplaceText - Site wide text find and replace, in many cases changes cannot be undone so great care must be exercised. Restricted to Bot accounts. Contact a bot owner to request a job run. The extension has been modified to force the bot flag be respected, details are here.
  • Variables - Limited use of variables within templates.
  • YouTube extension - Allows embedded YouTube videos (along with other formats). Usage details can be found here.

Message and Special Pages

For a complete list (and defaults for modified pages) see Special:AllMessages. The list is very long, click the "Show only modified" button to filter the messages and display only those that have been modified and differ from the defaults.

Backups

Personal backups of specific pages or groups of pages can be made by going to Special:Export, in the large text box you can enter an article/page title on each line. In general it is best to leave the "Include only the current revision" box checked, especially if you are exporting more than one page. Every single edit that is made saves a complete version of the page, so a page with many edits can be very large to export. And since the page would be reverted to the last backup, most of the history would already be preserved. Importing a page requires Sysop status, so you may need provide the copy to an admin and have them upload it for you should the need arise.

Page dumps are made about once a week and are downloadable at the bottom of Special:Statistics.

Image Licenses

When a user uploads an image a number of licensing options are available via a dropdown box. The options available are controlled via the system message page MediaWiki:Licenses.

The text inserted for each option is a license specific template, these can be found in Category:Image Copyright Tags.

Appearance

The image that is displayed in the upper left and links to the homepage can be set as an url for $wgLogo in the LocalSettings.php file. For example:

$wgLogo = "http://asheron.info/~asheron/images/Site_Logo_Padula.png";

You can also replace the file wiki.png with the image you wish to use (same name) located in /skins/common/images. However this file is replaced each time the mediawiki software is updated and will need to be replaced with the desired file again each time.

Sidebar

The sidebar (links on the left) can be edited at Mediawiki:Sidebar. Some options, like the links in the toolbox, are context sensitive and will change depending on the nature of each particular page.

Drop Down Navigation Menus

This mechanism takes advantage of the Mediawiki:Sitenotice message page to display a drop down menu navigation bar on all pages. The individual menu lists are on template pages and are limited to 3 deep:

The bar is placed on the right side to avoid causing the menus to pop when going to click on the commonly used page tabs (and is offset using margin to allow the drop down menu of the right-most item to not bleed off the page).

Also, because of the way sitenotice works, changes made to the menus won't appear until you log out and log back in.

Example of code placed on the sitenotice page:

<ul id="sitenotice_nav" style="list-style-type: none; float:right; list-style-image:
 none;-moz-border-radius-topright: 1em;-moz-border-radius-topleft: 1em; 
-moz-border-radius-bottomright: 1em; -moz-border-radius-bottomleft: 1em; 
background:#f0f0f0;margin:7px 60px -2px -2px;padding:0;">
<li>Quests{{Drop Down:Quests}}</li>
<li>Patches{{Drop Down:Patches}}</li>
<li>Items{{Drop Down:Items}}</li>
<li>Locations{{Drop Down:Locations}}</li>
<li>Lore{{Drop Down:Lore}}</li>
<li>Help{{Drop Down:Help}}</li>
</ul>

The following code is placed on the Mediawiki:Common.css page:

/* START OF DROP DOWN MENUS */
div#siteNotice {
	width:100%; 	/* makes the div full width */
	float:left; /*makes the div enclose the list */
	font-size:.8em;	/* SET FONT-SIZE HERE */
  margin:1px 0 1em 0;
  padding:0;
}

div#siteNotice ul {
	margin-left:0px; /* reset */
}

div#siteNotice li {
	float:left;	/* causes the list to align horizontally instead of stack */
	position:relative; /* positioning context for the absolutely positioned drop-down */
	list-style-type:none;	/* removes the bullet off each list item */
	list-style-image: none;
	background-color:#f0f0f0; /*sets the background of the menu items */
	border-right:1px solid #aaaaaa; /* creates dividing lines between the li elements */
  border-top:1px solid #aaaaaa;
  border-bottom:1px solid #aaaaaa;
  margin: -4px 0 -5px 0; /*Brings the menu items up */     
  padding:0 6px; /*creates space each side of menu item's text */
}
div#siteNotice li:first-child {
        -moz-border-radius-topleft: .5em;
        padding-bottom:0px; /*to fix from rounded edge */
        border-left:1px solid #aaaaaa; /*the first vertical line on the menu */
}
div#siteNotice li:last-child {
        -moz-border-radius-topright: .5em;
        padding-bottom:0px; /*to fix from rounded edge */	
}
div#siteNotice li:hover { 
	background-color:#FFF; /*sets the background of the menu items */
}
div#siteNotice a {
	display:block; /*makes list items in drop down highlight and wrapped lines indent correctly */
	color:#0000ff;	/* sets the font color */
}
/* the horizontal menu ends here */

/* the drop-down starts here */
div#siteNotice ul li ul {
	margin:0; /* prevents the TEMP value inheriting from the horiz menu  */
	position:absolute; /* positions the drop-down ul in relation to its relatively positioned li parent */
	width:10em; /*sets the width of the menu - in combo with the li's 100% width, makes the menu stack*/
	left:-1px; /*aligns the drop exactly under the menu */
}
div#siteNotice ul li ul li {
	margin: -1px 0 0 0; /* prevents the margin value inheriting from the horiz menu + bring menu items up  */
	width:100%; /* makes the list items fill the list container (ul) */
	border-left:1px solid #069; /*  three sides of each drop-down item */
	list-style-type:none;	/* removes the bullet off each list item */
	list-style-image:none;	/* removes the bullet off each list item */
	padding:0 0 1px;
}
div#siteNotice ul li ul li:first-child {
  -moz-border-radius-topleft: 0;	/* needed to hide curve */
}
div#siteNotice ul li ul li:last-child {
 -moz-border-radius-bottomright: 1em;
 -moz-border-radius-bottomleft: 1em;
 -moz-border-radius-topright: 0;
 padding-right:1px; /*to move over right side rounded edge */
}

/* make the drop-down display as the menu is rolled over */
div#siteNotice ul li ul {display:none;} /* conceals the drop-down when menu not hovered */
div#siteNotice ul li:hover ul {display:block; } /* shows the drop-down when the menu is hovered */

/* pop-out starts here */
body div#siteNotice ul li ul li ul  {
	visibility:hidden; /* same effect as display:none in this situation */
	top:-1px;
	left:10em;
}
div#siteNotice ul li ul li:hover ul {visibility:visible; } /* same effect as display:block in this situation */
div#siteNotice ul li ul li:hover ul li {padding-right:1px; -moz-border-radius-topright: 0;}
div#siteNotice ul li ul li:hover ul li:last-child {-moz-border-radius-topright: 0;}

/* second level popouts */
div#siteNotice ul li ul li:hover ul li ul {visibility:hidden;}
div#siteNotice ul li ul li ul li:hover ul {visibility:visible; margin-top:1px} /* same effect as display:block in this situation */
div#siteNotice ul li ul li ul li:hover ul li:last-child {-moz-border-radius-topright: 0;} 

/* third level popouts */
div#siteNotice ul li ul li ul li:hover ul li ul {visibility:hidden;}
div#siteNotice ul li ul li ul li ul li:hover ul {visibility:visible; margin-top:1px} /* same effect as display:block in this situation */
div#siteNotice ul li ul li ul li ul li:hover ul li:last-child {-moz-border-radius-topright: 0;} 

/* fix for IE (all flavors) so the menu has a vertical line on the left */
* html div#siteNotice ul {
	float:left; /* makes the ul wrap the li's */
	border-left:1px solid #069; /* adds the rightmost menu vertical line to the ul */
	}
	
/* Opera fix */
html>body div#siteNotice ul li ul li ul {
  left:10em;
  }

/* an Opera-only to fix a redraw problem by invisibly extending the ul */
/* the first-level drop stays open for 100px below the bottom but at least it works */
/* this can be reduced to as little as 22px if you don't have pop-outs */
/* the pop-out menu stays open for 22px below the bottom but at least it works */
	@media all and (min-width: 0px){
   body div#siteNotice ul li ul {padding-bottom:200px;}
   body div#siteNotice ul li ul li ul {padding-bottom:22px;}
   body div#siteNotice ul li ul li ul li ul li:hover {visibility:visible;} /* same effect as display:block in this situation */
   }

@import("/wiki/skins/common/dropdown/ie51_menu_hack.css"); 
/* END OF DROP DOWN MENUS */