@@ -3,7 +3,7 @@ Introduction into MoinMoin Configuration
33========================================
44Kinds of configuration files
55============================
6- To change how moinmoin behaves and looks, you may customize it by editing
6+ To change how MoinMoin behaves and looks, you may customize it by editing
77its configuration files:
88
99* Wiki Engine Configuration
@@ -21,7 +21,7 @@ its configuration files:
2121
2222* Logging Configuration
2323
24- - optional; if you don't configure this, it will use the builtin defaults
24+ - optional; if you don't configure this, it will use the built-in defaults
2525 - this is a separate file, often called logging.conf
2626 - it has an .ini-like file format
2727
@@ -70,11 +70,11 @@ The directories and files shown are referenced in this section of documentation
7070 wiki/ # the wiki instance; created by running "./m new-wiki" or "moin create-instance" commands
7171 data/ # wiki data and metadata
7272 index/ # wiki indexes
73- wiki_local/ # a convenient location to store custom CSS, Javascript , templates, logos, etc.
73+ wiki_local/ # a convenient location to store custom CSS, JavaScript , templates, logos, etc.
7474 wikiconfig.py # main configuration file, modify this to add or change features
7575 intermap.txt # interwiki map: copied by quickinstall.py, updated by "./m interwiki"
7676
77- After installing moin from pypi or unpacking using a package manager, the directory structure will
77+ After installing Moin from PyPI or unpacking using a package manager, the directory structure will
7878look like this::
7979
8080 myvenv/ # virtualenv root
@@ -93,8 +93,8 @@ and execute `moin run`.::
9393 data/ # wiki data and metadata
9494 index/ # wiki indexes
9595 preview/ # text item backups are created when user clicks edit Preview button
96- sql/ # sqlite database used for edit locking
97- wiki_local/ # store custom CSS, Javascript , templates, logos, etc. here
96+ sql/ # SQLite database used for edit locking
97+ wiki_local/ # store custom CSS, JavaScript , templates, logos, etc. here
9898 wikiconfig.py # main configuration file, modify this to add or change features
9999 intermap.txt # list of external wikis used in wikilinks: [[MeatBall:InterWiki]]
100100
@@ -270,7 +270,7 @@ Adding scripts
270270~~~~~~~~~~~~~~
271271You can add scripts like this::
272272
273- {# Additional Javascript #}
273+ {# Additional JavaScript #}
274274 {% macro scripts() -%}
275275 <script type="text/javascript" src="{{ url_for('serve.files', name='wiki_local', filename='MyScript.js') }}"></script>
276276 {% endmacro %}
@@ -401,7 +401,7 @@ That way they are easily usable on all operating systems, whether it has a packa
401401system or not.
402402
403403In many cases, those external static files are maintained by someone else (like jQuery
404- javascript library or larger js libraries) and we definitely do not want to merge
404+ JavaScript library or larger JS libraries) and we definitely do not want to merge
405405them into our project.
406406
407407For MoinMoin we require the following XStatic Packages in pyproject.toml:
@@ -426,7 +426,7 @@ For MoinMoin we require the following XStatic Packages in pyproject.toml:
426426 used by basic theme to adjust textarea on modify view.
427427
428428* `svgedit_moin <https://pypi.org/project/XStatic-svg-edit-moin >`_
429- is loaded at template modify_svg-edit. It is a fast, web-based, Javascript -driven
429+ is loaded at template modify_svg-edit. It is a fast, web-based, JavaScript -driven
430430 SVG editor.
431431
432432* `jquery_tablesorter <https://pypi.org/project/XStatic-JQuery.TableSorter/2.14.5.1 >`_
@@ -723,7 +723,7 @@ Password strength
723723As you might know, many users are bad at choosing reasonable passwords and some
724724are tempted to use easily crackable passwords.
725725
726- To help users choose reasonable passwords, moin has a simple builtin
726+ To help users choose reasonable passwords, Moin has a simple built-in
727727password checker that is enabled by default and does some sanity checks,
728728so users don't choose easily crackable passwords.
729729
@@ -1305,7 +1305,7 @@ Features:
13051305* uses slqalchemy (without the ORM) for database abstraction
13061306* supports multiple types of databases, for example:
13071307
1308- - sqlite (default, comes built- into Python)
1308+ - SQLite (default, comes built into Python)
13091309 - postgresql
13101310 - mysql
13111311 - and others, see sqlalchemy docs.
@@ -1326,12 +1326,12 @@ Please see the sqlalchemy docs about the DBURI part.
13261326Grant 'myuser' (his password: 'mypassword') full access to these databases.
13271327
13281328
1329- sqlite store
1329+ SQLite store
13301330------------
13311331Features:
13321332
1333- * directly talks to sqlite , without using sqlalchemy
1334- * stores data into an sqlite database, which is a single file
1333+ * directly talks to SQLite , without using SQLAlchemy
1334+ * stores data into a SQLite database, which is a single file
13351335* can either use 1 database per store or 1 table per store and you need to
13361336 give different table names then
13371337* can optionally compress/decompress the data using zlib: default compression
@@ -1343,11 +1343,11 @@ Features:
13431343 stores:sqlite:/srv/mywiki/data/mywiki_%(nsname)s.db::%(kind)s
13441344 stores:sqlite:/srv/mywiki/data/mywiki_%(nsname)s.db::%(kind)s::1
13451345
1346- The uri part after "sqlite:" is like::
1346+ The URI part after "sqlite:" is like::
13471347
13481348 PATH::TABLENAME::COMPRESSION
13491349
1350- It uses "::" as separator to support windows pathes which may have ":" after
1350+ It uses "::" as a separator to support Windows paths, which may have ":" after
13511351the drive letter.
13521352
13531353
@@ -1471,15 +1471,15 @@ to convert a moin 1.9 wiki to moin 2.0, then an item `foo` would be renamed to `
14711471Mail configuration
14721472==================
14731473
1474- Sending E-Mail
1474+ Sending Email
14751475--------------
1476- Moin can optionally send E-Mail . Possible uses:
1476+ Moin can optionally send email . Possible uses:
14771477
14781478* send out item change notifications
14791479* enable users to reset forgotten passwords
14801480* inform admins about runtime exceptions
14811481
1482- You need to configure some settings before sending E-Mail can be supported::
1482+ You need to configure some settings before sending email can be supported::
14831483
14841484 # the "from:" address [Unicode]
14851485 mail_from = "wiki <[email protected] >" @@ -1500,7 +1500,7 @@ You need to configure some settings before sending E-Mail can be supported::
15001500
15011501 describe more moin configuration
15021502
1503- Admin Traceback E-Mails
1503+ Admin Traceback Emails
15041504-----------------------
15051505If you want to enable admins to receive Python tracebacks, you need to configure
15061506the following::
@@ -1514,13 +1514,13 @@ the following::
15141514
15151515Please also check the logging configuration example in `contrib/logging/email `.
15161516
1517- User E-Mail Address Verification
1517+ User Email Address Verification
15181518--------------------------------
15191519
1520- At account creation time, Moin can require new users to verify their E-Mail
1520+ At account creation time, Moin can require new users to verify their email
15211521address by clicking a link that is sent to them.
15221522
1523- Make sure that Moin is able to send E-Mails (see previous section) and add the
1523+ Make sure that Moin is able to send emails (see previous section) and add the
15241524following line to your configuration file to enable this feature::
15251525
15261526 user_email_verification = True
0 commit comments