The following 151 words could not be found in the dictionary of 615 words (including 615 LocalSpellingWords) and are highlighted below:

above   acl   Additionally   admin   administrator   all   All   and   attachments   available   Basic   be   before   below   bound   by   can   changes   class   Config   Configuration   configuration   configured   course   css   Default   default   delete   Desktop   dict   dictionary   Dictionary   disable   edit   Edition   effect   etc   every   exe   file   files   fill   folders   followed   for   found   from   got   help   Help   htdocs   if   If   img   import   important   in   install   installation   installing   Installing   integrated   interface   into   just   Just   language   last   like   line   listed   lists   local   logo   main   multiconfig   must   My   mylogo   name   need   needed   normal   normally   Note   notebook   Of   of   On   on   options   Otherwise   package   page   pages   plugin   plugins   Plugins   png   port   prepared   python   read   restart   rights   sample   See   server   Server   set   shown   similarly   sitename   So   some   spellchecker   src   Standalone   string   subfolder   take   that   The   the   them   theme   themes   Themes   then   Then   they   This   to   type   upload   use   users   using   very   want   webserver   where   which   wikiconfig   wikiserverconfig   will   would   write   You   you   your  

    DesktopEdition/HowToConfigure

The DesktopEdition can be configured similarly to a normal MoinMoin installation. You must restart moin.exe/moin.py for changes to take effect.

Basic configuration

Just edit the file wikiconfig.py file. You can use the options listed on the page HelpOnConfiguration.

Here is a sample:

   1 from MoinMoin.multiconfig import DefaultConfig
   2 
   3 class Config(DefaultConfig):
   4     sitename = "My local notebook"
   5     logo_string = u'<img src= "/wiki/mylogo.png"> My local notebook-Wiki'
   6     acl_rights_default = u"All:read,write,delete"

Note that the last line is needed if you want to disable administrator access for all users. This is very important if you are using your wiki on the Internet.

Note that you need admin rights to install help pages in your language. So, install them before you use the acl_rights_default above.

Server configuration

Additionally, you can set some server options like the port etc. in the file wikiserverconfig.py. You need to create it and fill it like shown below. See HelpOnInstalling/StandaloneServer for the available options.

Here is a sample:

   1 from __main__ import DefaultConfig
   2 class Config(DefaultConfig):
   3     port = 80
   4     interface = "10.0.0.0" # changes the interface where the webserver is bound. use "" for every interface

Dictionary

You can create a dict directory in the MMDE directory and copy dictionary files into it. Then they will be found by the integrated spellchecker.

Plugins/Themes

Of course you can install plugins and themes like you do it normally. If it is a prepared MoinMoin package file, then you just need to upload it and click install on the page which lists all attachments. Otherwise you have to copy the plugin file into the directory wiki/data/plugin/ followed by the type of the plugin. E.g. for a theme you would copy the .py file into wiki/data/plugin/theme directory.

You will need to copy the css and img folders (if you are installing a theme) into a subfolder, which has got the name of your theme, of wiki/htdocs.

Recent