[Moin-devel] CVS: dist/wiki/data/text HelpOnConfiguration_2fSecurityPolicy,NONE,1.1 HelpOnEditing_2fSubPages,NONE,1.1 HelpOnInstalling_2fInternetInformationServer,NONE,1.1 HelpContents,1.3,1.4 HelpForBeginners,1.1,1.2 HelpOnConfiguration,1.4,1.5 HelpOnEditing,1.1,1.2 HelpOnLinking,1.1,1.2 HelpOnPageCreation,1.2,1.3 HelpOnSpellCheck,1.1,1.2

J?rgen Hermann jhermann at users.sourceforge.net
Wed Feb 13 12:55:04 EST 2002


Update of /cvsroot/moin/dist/wiki/data/text
In directory usw-pr-cvs1:/tmp/cvs-serv24899

Modified Files:
	HelpContents HelpForBeginners HelpOnConfiguration 
	HelpOnEditing HelpOnLinking HelpOnPageCreation 
	HelpOnSpellCheck 
Added Files:
	HelpOnConfiguration_2fSecurityPolicy HelpOnEditing_2fSubPages 
	HelpOnInstalling_2fInternetInformationServer 
Log Message:
Update from public wiki 2002-02-13


--- NEW FILE: HelpOnConfiguration_2fSecurityPolicy ---
SecurityPolicy is a config option that allows wiki admins to dynamically enable or disable certain key actions in a MoinMoin wiki, most notably editing and deleting content.


== Samples ==
=== Disable editing over HTTPS ===

This is used at [http://www.webde-ag.de/ WEB.DE AG] to make the main intra-net wiki available in read-only form via HTTPS. It's an extra security measure, in addition to password protection, against content changes from the outside. The same scheme can be used to have two different URLs pointing at the same wiki, and have only one of those URLs[[FootNote(An URL that is password-protected, by means of Apache server rules.)]] being able to edit the wiki. The net effect is that you have a read-only wiki editable only by certain people.

Add this to your `moin_config.py`:
{{{
# permissions
import MoinMoin.security
 
class SecurityPolicy(MoinMoin.security.Permissions):
    def __init__(self, user):
        MoinMoin.security.Permissions.__init__(self, user)
 
        # no edits via https
        from MoinMoin import webapi
        self.edit = not webapi.isSSL()
        self.delete = self.edit
}}}

--- NEW FILE: HelpOnEditing_2fSubPages ---
HelpContents > HelpOnEditing

== Creating Subpages ==

Subpages are groups of pages that share a common prefix, which itself is another page. While this is also possible with "classic" wiki, by using names like {{{SomeTopicSubTopic}}}, the use of {{{SomeTopic/SubTopic}}} allows better navigational support, and you can omit the common prefix when linking from the parent page to the child page.

Thus, by using "/" to concatenate several WikiName''''''s, you can create arbitrarily deep hierarchies (within limits, especially the length of filenames on your system). In reality, subpages are normal pages that contain a "/" in their name, and thus they are stored besides all other pages in the file system. Subpages are a configurable feature, but they're on by default and it's recommended that you keep it that way, since the help pages themselves use this feature.

=== Example ===
{{{
 * HelpOnEditing/SubPages
 * [wiki:HelpOnEditing/SubPages This very page]
 * [wiki:Self:HelpOnEditing/SubPages This very page]
 * /ThirdLevel
 * [wiki:/ThirdLevel A page below this one]
}}} 

=== Display ===
 * HelpOnEditing/SubPages
 * [wiki:HelpOnEditing/SubPages This very page]
 * [wiki:Self:HelpOnEditing/SubPages This very page]
 * /ThirdLevel
 * [wiki:/ThirdLevel A page below this one]

 /!\ Please do all of us a favour and don't create the /ThirdLevel pages!

--- NEW FILE: HelpOnInstalling_2fInternetInformationServer ---
... someone provide current instructions here ...

Some more info is on MoinMoin:MoinMoinWinCvs.

=== Older information ===

This is the INSTALL.IIS file from the 010 distribution:
{{{
#############################
# INSTALLATION ON WIN2K/IIS #
#############################

Steps to set up MoinMoin on Win2K/IIS (Should also work for NT4/IIS)

Installation Pre-Requirements:
  - Win2K Pro or Server (Should also work on NT4)
  - Internet Information Server or Personal Web Server
  - ActivePython (found at http://www.activestate.com)

Unpack the contents of the ZIP into your Python20 directory and rename the
MoinMoin-X.X directory to "MoinMoin" so that this file (INSTALL) is located 
at "\Python20\MoinMoin".

The next step is to edit the file "C:\MoinMoin\wiki-moinmoin\moin_config.py"
and adapt it to your particular setup. The only things we need to change to
get things working are the values of the two variables "data_dir" and
"url_prefix". For our situation, we need the following values:

    data_dir = './data'
    url_prefix = '/wiki-moinmoin'

Incidently, those are the defaults.

Create a Virtual Dir named "wiki-moinmoin" under the root of your web site 
and point it to the "C:\Python20\MoinMoin\wiki-moinmoin" directory.  The 
Virtual Dir needs "Read" and "Run Scripts" permission.

On the properties page of the Virtual Dir under Application Settings be
sure that Execute Permissions is set to either Scripts Only or Scripts
and Executables. Click the Configuration button and then Add to create
the following new Application Mapping (NOTE: The "%s %s" IS case
sensitive): 

    Executeable: C:\Python20\python.exe %s %s
    Extension: .cgi
    Verbs: All Verbs
    Script Engine: Checked
    Check that file exists: UnChecked

Click OK and close all property pages then restart the web site. Open a
browser and go to "http://localhost/wiki-moinmoin/test.cgi" and be sure
everything looks OK.

Then go to "http://localhost/wiki-moinmoin/moin.cgi" and you should get the
FrontPage. To further test your new Wiki, "EditText" the "FrontPage", save
it and click on "RecentChanges". Congrats! You have a working Wiki!

"Gregory Petersen" <gt_petersen at hotmail.com>, 2001-04-04
}}}

Index: HelpContents
===================================================================
RCS file: /cvsroot/moin/dist/wiki/data/text/HelpContents,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** HelpContents	16 Jan 2002 22:00:58 -0000	1.3
--- HelpContents	13 Feb 2002 20:43:59 -0000	1.4
***************
*** 1,12 ****
! == Help Contents ==
! 
! Here is a tour of the most important help pages:
!  * HelpForBeginners - if you are new to wikis
!  * HelpOnNavigation - explains the navigational elements on a page
!  * HelpOnPageCreation - how to create a new page, and how to use page templates
!  * HelpOnEditing - how to edit a page
!  * HelpOnAdministration - how to maintain a MoinMoin wiki
! 
! An automatically generated index of all help pages is on HelpIndex. See also MoinMoinFaq for answers to frequently asked questions.
! 
! ''[Please do not add redundant information on these pages (which has to be maintained at two places then), and follow the established structure of help pages. Also note that the master set of help pages is not public, that this very page you read and all other help pages may be overwritten when the wiki software is updated. So if you have major contributions that should not get lost, send an extra notification notice to the MoinMoin user mailing list.]''
--- 1,13 ----
! == Help Contents ==
! 
! Here is a tour of the most important help pages:
!  * HelpForBeginners - if you are new to wikis
!  * HelpOnNavigation - explains the navigational elements on a page
!  * HelpOnPageCreation - how to create a new page, and how to use page templates
!  * HelpOnEditing - how to edit a page
!  * HelpOnAdministration - how to maintain a MoinMoin wiki
!  * HelpOnInstalling - how to install a MoinMoin wiki
! 
! An automatically generated index of all help pages is on HelpIndex. See also MoinMoinFaq for answers to frequently asked questions.
! 
! ''[Please do not add redundant information on these pages (which has to be maintained at two places then), and follow the established structure of help pages.]''

Index: HelpForBeginners
===================================================================
RCS file: /cvsroot/moin/dist/wiki/data/text/HelpForBeginners,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** HelpForBeginners	30 Nov 2001 20:30:20 -0000	1.1
--- HelpForBeginners	13 Feb 2002 20:44:00 -0000	1.2
***************
*** 33,34 ****
--- 33,35 ----
  
  /!\ '''This is a configurable feature, so it might not work!'''
+ 

Index: HelpOnConfiguration
===================================================================
RCS file: /cvsroot/moin/dist/wiki/data/text/HelpOnConfiguration,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** HelpOnConfiguration	11 Jan 2002 20:37:38 -0000	1.4
--- HelpOnConfiguration	13 Feb 2002 20:44:00 -0000	1.5
***************
*** 1,62 ****
! HelpContents > HelpOnAdministration > HelpOnConfiguration
! 
! == Configuration of MoinMoin ==
! 
! MoinMoin is configured by changing the `moin_config.py` file, which normally sits besides your `moin.cgi` driver script. `moin_config.py` is imported by the MoinMoin main code early in a request cycle and is found because the current directory (i.e. that of `moin.cgi`) is part of the Python system path. Consequently, `moin_config.py` can sit anywhere in your `PYTHONPATH`.
! 
! The following table contains default values and a short description for all configuration variables. Most of these can be left at their defaults, those you need to change with every installation are listed in the sample `moin_config.py` that comes with the distribution.
! 
! ||<rowbgcolor="#FFFFE8"> '''Variable name''' || '''Default''' || '''Description''' ||
! || Log''''''Store || 'text:editlog' || ''Experimental, keep the default'' ||
! || Security''''''Policy || None || class object hook for implementing security restrictions ||
! || allow_extended_names || 1 || ''true'' to enable {{{["non-stamdard wikiname"]}}} markup ||
! || allowed_actions || [] || allow unsafe actions (list of strings) ||
! || attachments || None || If {{{None}}}, send attachments via CGI; else this has to be a dictionary with the path to attachment storage (key ''dir'') and the equivalent URL prefix to that same dir (key ''url'')||
! || backtick_meta || 0 || ''true'' to enable {{{`inline literal`}}} markup ||
! || bang_meta || 0 || ''true'' to enable {{{!NoWikiName}}} markup ||
! || changed_time_fmt || '  [%H:%M]' || Time format used on RecentChanges  for page edits within the last 24 hours ||
! || charset || 'iso-8859-1' || The encoding / character set your system uses ||
! || check_i18n || 0 || Set to 1 only in development systems, or on a translator's system ||
! || css_url || '/wiki-moinmoin/default.css' || URL for the default CSS definitions, make this a server-relative URL (start with a slash) ||
! || data_dir || './data/' || Path to the data directory, the default is OK if you place the data directory right besides your `moin.cgi` ||
! || date_fmt || '%Y-%m-%d' || System date format, used mostly in RecentChanges ||
! || datetime_fmt || '%Y-%m-%d %H:%M:%S' || Default format for dates and times (when the user has no preferences or chose the "default" date format) ||
! || edit_rows || 30 || Default height of the edit box ||
! || external_diff || 'diff' || Name of external diff utility (possibly a full path) ||
! || html_head || ''META-Tag with Content-Type'' || Additional <HEAD> tags for all pages ||
! || html_head_queries || ''META-Tag with "NOINDEX,NOFOLLOW" for robots'' || Additional <HEAD> tags for edit and action pages ||
! || httpd_docs || './wiki-moinmoin' || directory with public files, when using the stand-alone server ||
! || httpd_host || 'localhost' || hostname of the stand-alone server ||
! || httpd_port || 8080 || port of the stand-alone server ||
! || httpd_user || 'nobody' || user to run the the stand-alone server under (UNIX only) ||
! || interwikiname || None || InterWiki name (prefix, moniker) of the site, or None ||
! || logo_string || ''MoinMoin logo'' || URL path to the logo display in the upper-left corner of a page and used in RSS documents ||
! || lowerletters || ''Latin 1 alphabetic characters and digits'' || Lowercase letters, used to define what is a WikiName ||
! || mail_from || None || `From:` header used in sent mails ||
! || mail_smarthost || None || IP or domain name of an SMTP-enabled server; note that email features (notification, mailing of login data) works only if this variable is set ||
! || max_macro_size || 50 || Maximum size of some macro pages in KB, especially used to limits the size of RecentChanges; use `0` to disable that feature ||
! || navi_bar || ''large HTML fragment'' || Most important links in text form (/!\ this is a deprecated feature that will enventually disappear and be replaced by the bookmarks of OpenWiki:UserPreferences) ||
! || nonexist_qm || 0 || Default for displaying WantedPages with a question mark, like in the original wiki ||
! || page_edit_tips || 'HelpOnFormatting' || Name of the page with help on editing, displayed as a link in the editor view ||
! || page_footer1 || ''Python Powered logo'' || Custom HTML markup sent ''before'' the system footer ||
! || page_footer2 || "" || Custom HTML markup sent ''after'' the system footer ||
! || page_form_ending || 'Form' || Ending name part of pages containing form definitions ||
! || page_front_page || 'FrontPage' || Name of the front page ||
! || page_icons || ''large HTML fragment'' || The top-right icons on each page ||
! || page_local_spelling_words || 'LocalSpellingWords' || Name of the page containing user-provided spellchecker words ||
! || page_recent_changes || 'RecentChanges' || Name of the RecentChanges page ||
! || page_template_ending || 'Template' || Ending name part of pages containing templates for new pages ||
! || page_user_prefs || 'UserPreferences' || Name of the user preferences page ||
! || shared_intermap || None || path to a file containing global InterWiki definitions ||
! || shared_metadb || None || path to a file containing a global InterWiki pagelist ||
! || show_hosts || 1 || ''true'' to show hostname in RecentChanges ||
! || show_section_numbers || 1 || ''true'' to show section number headings by default ||
! || show_timings || 0 || used for development ||
! || show_version || 0 || show MoinMoin's version at the bottom of each page ||
! || sitename || 'An Unnamed MoinMoin Wiki' || Short description of your wiki site, displayed below the logo on each page, and used in RSS documents as the channel title ||
! || trail_size || 5 || Number of pages in the trail of visited pages ||
! || umask || 0777 || umask used on all open(), mkdir() and similar calls ||
! || upperletters || ''Latin 1 alphabetic characters'' || Uppercase letters, used to define what is a WikiName ||
! || url_mappings || {} || lookup table to remap URL prefixes (dict of {{{'prefix': 'replacement'}}}) ||
! || url_prefix || '/wiki-moinmoin' || Used as the base URL for all public documents served by the wiki, especially the image files for the icons ||
! || url_schemas || [] || additional URL schemas you want to have recognized (list of strings) ||
--- 1,65 ----
! HelpContents > HelpOnAdministration > HelpOnConfiguration
! 
! '''Subtopics'''
!  * /SecurityPolicy
! 
! == Configuration of MoinMoin ==
! 
! MoinMoin is configured by changing the `moin_config.py` file, which normally sits besides your `moin.cgi` driver script. `moin_config.py` is imported by the MoinMoin main code early in a request cycle and is found because the current directory (i.e. that of `moin.cgi`) is part of the Python system path. Consequently, `moin_config.py` can sit anywhere in your `PYTHONPATH`.
! 
! The following table contains default values and a short description for all configuration variables. Most of these can be left at their defaults, those you need to change with every installation are listed in the sample `moin_config.py` that comes with the distribution.
! 
! ||<rowbgcolor="#FFFFE8"> '''Variable name''' || '''Default''' || '''Description''' ||
! || Log''''''Store || 'text:editlog' || ''Experimental, keep the default'' ||
! || Security''''''Policy || None || class object hook for implementing security restrictions ||
! || allow_extended_names || 1 || ''true'' to enable {{{["non-standard wikiname"]}}} markup ||
! || allowed_actions || [] || allow unsafe actions (list of strings) ||
! || attachments || None || If {{{None}}}, send attachments via CGI; else this has to be a dictionary with the path to attachment storage (key ''dir'') and the equivalent URL prefix to that same dir (key ''url'')||
! || backtick_meta || 0 || ''true'' to enable {{{`inline literal`}}} markup ||
! || bang_meta || 0 || ''true'' to enable {{{!NoWikiName}}} markup ||
! || changed_time_fmt || '  [%H:%M]' || Time format used on RecentChanges  for page edits within the last 24 hours ||
! || charset || 'iso-8859-1' || The encoding / character set your system uses ||
! || check_i18n || 0 || Set to 1 only in development systems, or on a translator's system ||
! || css_url || '/wiki-moinmoin/default.css' || URL for the default CSS definitions, make this a server-relative URL (start with a slash) ||
! || data_dir || './data/' || Path to the data directory, the default is OK if you place the data directory right besides your `moin.cgi` ||
! || date_fmt || '%Y-%m-%d' || System date format, used mostly in RecentChanges ||
! || datetime_fmt || '%Y-%m-%d %H:%M:%S' || Default format for dates and times (when the user has no preferences or chose the "default" date format) ||
! || edit_rows || 30 || Default height of the edit box ||
! || html_head || ''META-Tag with Content-Type'' || Additional <HEAD> tags for all pages ||
! || html_head_queries || ''META-Tag with "NOINDEX,NOFOLLOW" for robots'' || Additional <HEAD> tags for edit and action pages ||
! || httpd_docs || './wiki-moinmoin' || directory with public files, when using the stand-alone server ||
! || httpd_host || 'localhost' || hostname of the stand-alone server ||
! || httpd_port || 8080 || port of the stand-alone server ||
! || httpd_user || 'nobody' || user to run the the stand-alone server under (UNIX only) ||
! || interwikiname || None || InterWiki name (prefix, moniker) of the site, or None ||
! || logo_string || ''MoinMoin logo'' || URL path to the logo display in the upper-left corner of a page and used in RSS documents ||
! || lowerletters || ''Latin 1 alphabetic characters and digits'' || Lowercase letters, used to define what is a WikiName ||
! || mail_from || None || `From:` header used in sent mails ||
! || mail_smarthost || None || IP or domain name of an SMTP-enabled server; note that email features (notification, mailing of login data) works only if this variable is set ||
! || max_macro_size || 50 || Maximum size of some macro pages in KB, especially used to limits the size of RecentChanges; use `0` to disable that feature ||
! || navi_bar || ''large HTML fragment'' || Most important links in text form (/!\ this is a deprecated feature that will enventually disappear and be replaced by the bookmarks of OpenWiki:UserPreferences) ||
! || nonexist_qm || 0 || Default for displaying WantedPages with a question mark, like in the original wiki ||
! || page_edit_tips || 'HelpOnFormatting' || Name of the page with help on editing, displayed as a link in the editor view ||
! || page_footer1 || ''Python Powered logo'' || Custom HTML markup sent ''before'' the system footer ||
! || page_footer2 || "" || Custom HTML markup sent ''after'' the system footer ||
! || page_form_ending || 'Form' || Ending name part of pages containing form definitions ||
! || page_front_page || 'FrontPage' || Name of the front page ||
! || page_icons || ''large HTML fragment'' || The top-right icons on each page ||
! || page_local_spelling_words || 'LocalSpellingWords' || Name of the page containing user-provided spellchecker words ||
! || page_recent_changes || 'RecentChanges' || Name of the RecentChanges page ||
! || page_template_ending || 'Template' || Ending name part of pages containing templates for new pages ||
! || page_user_prefs || 'UserPreferences' || Name of the user preferences page ||
! || shared_intermap || None || path to a file containing global InterWiki definitions ||
! || shared_metadb || None || path to a file containing a global InterWiki pagelist ||
! || show_hosts || 1 || ''true'' to show hostname in RecentChanges ||
! || show_section_numbers || 1 || ''true'' to show section numbers in headings by default ||
! || show_timings || 0 || used for development ||
! || show_version || 0 || show MoinMoin's version at the bottom of each page ||
! || sitename || 'An Unnamed MoinMoin Wiki' || Short description of your wiki site, displayed below the logo on each page, and used in RSS documents as the channel title ||
! || trail_size || 5 || Number of pages in the trail of visited pages ||
! || ua_spiders || htdig || A regex of HTTP_USER_AGENTs that should be excluded from logging ||
! || umask || 0777 || umask used on all open(), mkdir() and similar calls ||
! || upperletters || ''Latin 1 alphabetic characters'' || Uppercase letters, used to define what is a WikiName ||
! || url_mappings || {} || lookup table to remap URL prefixes (dict of {{{'prefix': 'replacement'}}}) ||
! || url_prefix || '/wiki-moinmoin' || Used as the base URL for all public documents served by the wiki, especially the image files for the icons ||
! || url_schemas || [] || additional URL schemas you want to have recognized (list of strings) ||

Index: HelpOnEditing
===================================================================
RCS file: /cvsroot/moin/dist/wiki/data/text/HelpOnEditing,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** HelpOnEditing	30 Nov 2001 20:30:20 -0000	1.1
--- HelpOnEditing	13 Feb 2002 20:44:00 -0000	1.2
***************
*** 13,16 ****
--- 13,17 ----
   * HelpOnProcessingInstructions - how to influence page formatting
   * HelpOnXmlPages - how to store pages with XML content and process them via XSLT
+  * /SubPages - how to group together related information
  
  To experiment with wiki markup, go to the WikiSandBox and then click on "Edit''''''Text" at the bottom of the page. Use your browser's "open a new window with this link" feature on the word "WikiSandBox", so you can keep the help pages open side-by-side to the editing window.

Index: HelpOnLinking
===================================================================
RCS file: /cvsroot/moin/dist/wiki/data/text/HelpOnLinking,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** HelpOnLinking	30 Nov 2001 20:30:20 -0000	1.1
--- HelpOnLinking	13 Feb 2002 20:44:00 -0000	1.2
***************
*** 12,18 ****
   * use the bracketed URL syntax.
  
! The supported URL schemes are: http, https, ftp, nntp, news, mailto, telnet and wiki.
  
! For more information on the possible markup, see HelpOnEditing.
  
  _______
--- 12,18 ----
   * use the bracketed URL syntax.
  
! The supported URL schemes are: http, https, ftp, nntp, news, file, mailto, telnet and wiki. The administrator of your wiki can extend the supported schemes by using the {{{config.url_schemas}}} variable (see HelpOnConfiguration).
  
! For more information on the possible markup, see HelpOnEditing. For details on how to link to subpages, see HelpOnEditing/SubPages.
  
  _______
***************
*** 28,31 ****
--- 28,32 ----
   * [http://moin.sourceforge.net/moinmoin.gif moinmoin.gif]
   * InterWiki
+   * Self:InterWiki
    * MeatBall:InterWiki
    * wiki:MeatBall/InterWiki
***************
*** 43,46 ****
--- 44,48 ----
   * [http://moin.sourceforge.net/moinmoin.gif moinmoin.gif]
   * InterWiki
+   * Self:InterWiki
    * MeatBall:InterWiki
    * wiki:MeatBall/InterWiki

Index: HelpOnPageCreation
===================================================================
RCS file: /cvsroot/moin/dist/wiki/data/text/HelpOnPageCreation,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** HelpOnPageCreation	21 Dec 2001 00:22:01 -0000	1.2
--- HelpOnPageCreation	13 Feb 2002 20:44:00 -0000	1.3
***************
*** 3,7 ****
  To create a page, add its WikiName to an existing page and save it. After that, you can click on it on the revised page, since it automatically becomes a hyperlink.
  
! You will then be presented with your new page, which you can edit in the normal way. After you ''first'' saved it, it will be automatically created. Pages cannot be deleted, so be sure to spell new WikiName''''''s correctly.
  
  == Creating a Template Page ==
--- 3,11 ----
  To create a page, add its WikiName to an existing page and save it. After that, you can click on it on the revised page, since it automatically becomes a hyperlink.
  
! You will then be presented with your new page, which you can edit in the normal way. After you ''first'' saved it, it will be automatically created. Pages normally[[FootNote(Deleting pages can be activated by the wiki administrator (which you'll normally do in intranet sites only).)]] cannot be deleted, so be sure to spell new WikiName''''''s correctly.
! 
! On details on how to create and link to subpages, see HelpOnEditing/SubPages. 
! 
! [[FootNote]]
  
  == Creating a Template Page ==

Index: HelpOnSpellCheck
===================================================================
RCS file: /cvsroot/moin/dist/wiki/data/text/HelpOnSpellCheck,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** HelpOnSpellCheck	30 Nov 2001 20:30:20 -0000	1.1
--- HelpOnSpellCheck	13 Feb 2002 20:44:00 -0000	1.2
***************
*** 21,23 ****
  -rw-r--r--   1 544      everyone  2913577 Jan 25  2000 german.txt
  -rw-r--r--   1 544      everyone    92631 Nov 30 15:24 top10000de.txt
! }}} 
--- 21,32 ----
  -rw-r--r--   1 544      everyone  2913577 Jan 25  2000 german.txt
  -rw-r--r--   1 544      everyone    92631 Nov 30 15:24 top10000de.txt
! }}}
! 
! === Words files ===
! If you need words files for US English or German, you can find them [http://moin.sf.net/files/ here].
! 
! === If it doesn´t work ===
! 
! If you change the contents of "MoinMoin/dict/" (because of adding new / removing old dictionaries) or if you create a new "MoinMoin/dict/" directory, then you have to delete the file "MoinMoin/wiki-moinmoin/data/dict.cache" (a new one will be created automagically).
! 
! If you don't, your new dictionaries won't be recognized (e.g. it will use only LocalSpellingWords).





More information about the Moin-devel mailing list