The old i-NRG web site was hosted on skynet using MoinMoin wiki. While we do not have an automatic tool to migrate old MoinMoin pages to new WordPress pages, we do have this list of steps.

  1. Get the old MoinMoin wikistorage data from Kerry. (This step should be replaced with accessing a revision-control repository.)
  2. Depending on the wiki you want to access, go to one of the directories listed below:
    • $ cd wikistorage/community/data/pages
    • $ cd wikistorage/inrgwiki/data/pages
    • $ cd wikistorage/scorpionwiki/data/pages
    • $ cd wikistorage/vladiwiki/data/pages
  3. Each of these directories contains the pages of the indicated wiki. You can view the text version of any of the wiki’s pages with these Unix commands. The commands print the latest revision of the selected page to the screen. (Those are back quotes around cat current. Look above the Tab key on your keyboard.)
    1. $ cd PageName
    2. $ cat revisions/`cat current`
  4. If you want to see the selected page’s text in the vi editor, use these commands instead:
    1. $ cd PageName
    2. $ vi revisions/`cat current`
  5. The printed text may contain wiki formatting codes. For example, using a sequence of two or three single quotes specifies ''italic'' and '''bold'''Here is a quick reference for other kinds of formatting codes.
  6. In the text, you may see links to other MoinMoin pages. They look like this: [[PageName]]. Each linked page (PageName in this example) will be in its own directory. Be aware that CamelCase names automatically are treated as links to pages of the wiki, even if the square brackets are omitted.
  7. Links to pages of other web sites are obvious URLs: http://www.google.com. Square brackets are optional.
  8. In the text, you may see links to attachments. Such links look like this: [[attachment:filename|hypertext]]. The attached files can be found in the attachments subdirectory:
    1. $ cd PageName/attachments
    2. $ ls
  9. Here is a quick reference for other kinds of MoinMoin links.
  10. Here is a quick reference on general MoinMoin page editing.