HomePage RecentChanges Status About

Advanced

This wiki uses Oddmuse. This page tries to list some of tricks that might be of interest for people maintaining roleplaying campaign notes or journals. Send me mail if you have any questions.

Redirections

Assume your charakter has a long name like “Rhysalis Eina” but everybody calls her Rhys. Create a page called “Rhysalis Eina” and add all the information you need. Then create another page called “Rhys” containing nothing but #REDIRECT [[Rhysalis Eina]] – now people can link to Rhys using [[Rhys]] and anybody following the link will be redirected to the real page.

Change the colors

Don’t like the colors? No problem.

Here’s how to get started:

  1. make sure you edited at least one page and answered the question to show that you’re a human
  2. click on Administration on your own wiki
  3. click on Install CSS
  4. click on one of the CSS files, such as the one ending in “cali.css” or “green.css”
  5. This will copy some stuff onto your CSS page; feel free to modify it at will

Changing the “theme” of your wiki involves just that: Editing your CSS page.

Further reading: Learning CSS, CSS Validator, CSS Specification.

In order to return to the default theme, edit the CSS page and delete everything on it. Save the empty page and you should be back to the dark khaki background.

Journals

If you create pages by clicking on the New or Calendar links of your wiki, you can collect the latest of these pages by using this tag:

<journal>

If you’re using these pages to plan future sessions, you might want to show only future events:

<journal future>

If you have both pages for planned future sessions and actual session summaries, you might want to show only past events:

<journal past>

You can find more information on the Oddmuse wiki.

Linking To Other Campaign Wikis

You can use the Campaign Wiki as a prefix to link to pages on other wikis. And if you use “Main” as the prefix, you’ll link to the admin pages.

Two examples:

License

We’d like to support free roleplaying as in Free Culture and therefore encourage you to grant your readers the rights to use, study, copy, modify, and redistribute your work. You can place a license note on the page called “FooterNote” – click on Administration on your own wiki and you’ll find a link.

Here are links to some of the licenses you might want to refer to:

Menu

You can tweak the links appearing at the top and bottom of your pages (the “goto bar”) you can place a few links on the page called “GotoBar” – click on Administration on your own wiki and you’ll find a link. Every local link on the GotoBar page will be turned into an entry of your goto bar. The first two links are special: The first one is your “homepage” and the second one is your “recent changes” page.

If you do this, the default New and Calendar links will disappear. If you want to keep them, add the following links to the GotoBar page: [Self:action=new New] [Self:action=calendar Calendar].

Google Calendar / External Redirection

If you want a Google Calendar instead, it gets trickier because the Menu may not contain external links. That’s why we need an indirection.

  1. Change the Menu as described above and add your own link [[Calendar]]
  2. Then go to Administration (at the bottom of the page) and click on the questionmark behind LocalNames. This is where you can provide all external redirects.
  3. Add [URL Calendar] to the LocalNames page, eg. [http://www.google.com/calendar/embed?src=3d08kk38m6jkusmg5ks7jtqris%40group.calendar.google.com&ctz=Europe/Zurich&pvttk=e8d39d0e557c704a6442e853a85b9f61 Calendar] and save.

This will add a link to the Calendar page to your menu, and when you click it, and no local page called Calendar exists, the wiki will look up external redirections on the LocalNames page and follow that, redirecting you to the Google Calendar URL.

If you do this, the default New and Calendar links will disappear. I’m assuming that’s ok. :)

Including Other Pages

You can assemble other pages into new pages. Thus, if you write about your character Gar on multiple pages called “Researching Flight”, “The Snake Swamps”, and “The Tower of Furtwacht”, you can assemble them on a single page as follows:

== Research

<include "Researching Flight">

== Travels

<include "The Snake Swamps">

== Home Sweet Home

<include "The Tower of Furtwacht">

If you have multiple campaign wikis, you can include pages from other sites. You might have a user page for yourself on NameOfYourWiki. Here’s how you’d include it elsewhere:

<include "http://campaignwiki.org/wiki/NameOfYourWiki/raw/Alex">

Note the “raw” part in the URL!