You are currently browsing the category archive for the 'Wikis' category.
I’ve been working on a customized implementation of MediaWiki to use for library policies and procedures in technical services. It will be part of our public website, so it needed to fit into its design, incorporate WYSIWYG editing, and only be editable by staff with user accounts. It isn’t live yet, so here are a few screenshots from the test site.
Sample public page
Sample page when logged in
Edit screen
I’ve been working on customizing an installation of Mediawiki for library policies. We wanted to restrict editing and upload capabilities to only a certain group of users. Here is the code I added to the LocalSettings.php file to achieve what we needed.
# Prevent new user registrations except by sysops
$wgGroupPermissions['*']['createaccount'] = false;
# Only sysop users can edit pages
$wgGroupPermissions['*']['edit'] = false;
$wgGroupPermissions['user']['edit'] = false;
$wgGroupPermissions['sysop']['edit'] = true;
# Only sysop users can upload files
$wgGroupPermissions['*']['upload'] = false;
$wgGroupPermissions['user']['upload'] = false;
$wgGroupPermissions['sysop']['upload'] = true;
# Only sysop users can reupload (replace) files
$wgGroupPermissions['*']['reupload'] = false;
$wgGroupPermissions['user']['reupload'] = false;
$wgGroupPermissions['sysop']['reupload'] = true;
Here are a few webpages I found useful when researching how to configure the settings:
At last – my capstone project is complete! (well, almost) I presented my project to the iSchool last Tuesday and had an instruction session on the wiki for the UT Libraries a couple weeks ago. Here it is: wiki.lib.utexas.edu
What is the UT Reference Wiki? It's a collaborative resource for public service providers at the UT Libraries. That includes librarians, staff, GRAs, and interns across all branches. The wiki is going to be used as a repository for starting points for research, best resources for certain types of common questions, assignment related resources, general research tips and techniques, updates on new and existing resources in the collection, and more.
WebJunction recently set up a wiki. There’s not much there yet, but it will be interesting to see how it evolves.
I recently checked out the new WikiMatrix site. It’s a nifty tool that lets you select different wiki software and compare their features. Apparently it originated with the comparison table that was located on the DokuWiki site. The feature comparison interface is clean and easy to read, although it might be nice to see features that rate the ease of installation, maintenance, etc. The WikiMatrix site also includes a discussion forum for people to talk about wiki engines.



