<?xml version="1.0" encoding="utf-8"?><!DOCTYPE article  PUBLIC '-//OASIS//DTD DocBook XML V4.4//EN'  'http://www.docbook.org/xml/4.4/docbookx.dtd'><article><articleinfo><title>AyudaSobreConfiguración</title></articleinfo><para><inlinemediaobject><imageobject><imagedata depth="16" fileref="http://research.math.uvt.ro/wiki//static/moniker/img/idea.png" width="16"/></imageobject><textobject><phrase>(!)</phrase></textobject></inlinemediaobject> Last time someone helped with translation of this page was 2006-03-28. There may be differences to <ulink url="http://research.math.uvt.ro/wiki/AyudaSobreConfiguraci%C3%B3n/wiki/HelpOnConfiguration#">HelpOnConfiguration</ulink>. </para><para><ulink url="http://research.math.uvt.ro/wiki/AyudaSobreConfiguraci%C3%B3n/wiki/AyudaDeContenidos#">AyudaDeContenidos</ulink> &gt; <ulink url="http://research.math.uvt.ro/wiki/AyudaSobreConfiguraci%C3%B3n/wiki/AyudaSobreAdministraci%C3%B3n#">AyudaSobreAdministración</ulink> &gt; AyudaSobreConfiguración </para><para><emphasis role="strong">Subtemas</emphasis> </para><itemizedlist><listitem><para><ulink url="http://research.math.uvt.ro/wiki/AyudaSobreConfiguraci%C3%B3n/wiki/AyudaSobreConfiguraci%C3%B3n/HojasDeEstiloCss#">/HojasDeEstiloCss</ulink> </para></listitem><listitem><para><ulink url="http://research.math.uvt.ro/wiki/AyudaSobreConfiguraci%C3%B3n/wiki/AyudaSobreConfiguraci%C3%B3n/SoporteDeCorreoElectronico#">/SoporteDeCorreoElectronico</ulink> </para></listitem><listitem><para><ulink url="http://research.math.uvt.ro/wiki/AyudaSobreConfiguraci%C3%B3n/wiki/AyudaSobreListasDeControlDeAcceso#">AyudaSobreListasDeControlDeAcceso</ulink> (permisos/control de usuarios) </para></listitem><listitem><para><ulink url="http://research.math.uvt.ro/wiki/AyudaSobreConfiguraci%C3%B3n/wiki/AyudaSobreConfiguraci%C3%B3n/Pol%C3%ADticasDeSeguridad#">/PolíticasDeSeguridad</ulink> </para></listitem><listitem><para><ulink url="http://research.math.uvt.ro/wiki/AyudaSobreConfiguraci%C3%B3n/wiki/AyudaSobreConfiguraci%C3%B3n/ArchivosAdjuntos#">/ArchivosAdjuntos</ulink> </para></listitem><listitem><para><ulink url="http://research.math.uvt.ro/wiki/AyudaSobreConfiguraci%C3%B3n/wiki/AyudaSobreConfiguraci%C3%B3n/Vud%C3%BAConApache#">/VudúConApache</ulink> </para></listitem><listitem><para><ulink url="http://research.math.uvt.ro/wiki/AyudaSobreConfiguraci%C3%B3n/wiki/AyudaSobreConfiguraci%C3%B3n/Protecci%C3%B3nContraIntensidad#">/ProtecciónContraIntensidad</ulink> </para></listitem></itemizedlist><para><emphasis role="strong">Contenidos</emphasis> <!--The macro TableOfContents doesn't work with the DocBook formatter.--> </para><section><title>Configuring a single wiki</title><para>If you run a single wiki, you should not copy the file <code>farmconfig.py</code> into your configuration directory (remove it and the <code>.pyc</code> file, if it is there). Without farmconfig, moin uses the default <code>wikiconfig.py</code> </para><para><code>wikiconfig.py</code> normally is located besides your <code>moin.cgi</code> driver script. If you need to make a custom install, it can be located anywhere, but you must add the path to the directory where it is located to your Python system path in your server script. See the &quot;System Path Configuration&quot; section in your server script. </para><section><title>Wiki configuration file structure</title><para>General notes on wiki/farmconfig.py structure: </para><screen><![CDATA[# -*- coding: iso-8859-1 -*-
]]><![CDATA[
from MoinMoin.multiconfig import DefaultConfig
]]><![CDATA[
class Config(DefaultConfig):
]]><![CDATA[
    sitename = u'MyWiki'   # u means that it will be converted to Unicode
    interwikiname = 'MyWiki'
    data_dir = '/where/ever/mywiki/data/'
    underlay_dir = '/where/ever/mywiki/underlay/'
    
    # More settings follow...]]></screen><itemizedlist><listitem><para>First, you must define the coding of the config file. The default setting is suited for Latin (&quot;western&quot;) languages only, for international setup, read next section. If you don't define the coding, you can't use non-ascii characters. </para></listitem><listitem><para>Next we import moin's internal default configuration. The default configuration includes values for all options, so we don't have to define all values, just what we want to customize. </para></listitem><listitem><para>Then we define a new configuration class called &quot;Config&quot; and inherit all settings from the default configuration we imported. Note that the class name must be &quot;Config&quot;. </para></listitem><listitem><para>Next lines are the configuration options for the Config class. Note that each line must be indented by 4 spaces, tabs are not allowed. Moin will not run if you use wrong indentation. </para></listitem><listitem><para>A common configuration item is <code>sitename</code> - in most cases you don't want your wiki to have the default &quot;Untitled Wiki&quot; name. You can define any name you like in any language, but before you do that, read next section on unicode options. </para></listitem><listitem><para>If you followed the install instructions, the wiki will run without any other change, but you might want to change some values, like <code>data_dir</code>, <code>data_underlay_dir</code> <code>acl_rights_before</code> and more. For most cases, setting all the values in the supplied <code>wikiconfig.py</code> file is enough. </para></listitem><listitem><para>Anything we do not define simply stays at moin's internal defaults which we inherited from Default<emphasis role="strong"/>Config. </para></listitem></itemizedlist></section></section><section><title>Unicode options</title><itemizedlist><listitem override="none"><para><inlinemediaobject><imageobject><imagedata depth="16" fileref="http://research.math.uvt.ro/wiki//static/moniker/img/attention.png" width="16"/></imageobject><textobject><phrase>&lt;!&gt;</phrase></textobject></inlinemediaobject> <emphasis role="strong">Important: to use unicode values, you must setup a correct coding line in the first line of your configuration file. Check that your editor is configured correctly.</emphasis> </para></listitem></itemizedlist><para>Certain options <emphasis role="strong">must</emphasis> use unicode values. For example, the site name could contain German umlauts or French accents or be in Chinese or Hebrew. Because of this, you must use unicode strings for those items. Unicode strings are defined by prefixing the letter <code>u</code> to the string. Here are some examples: </para><screen><![CDATA[    # Site name, used by default for wiki name-logo [Unicode]
    sitename = u"Jürgen's Wiki"
    # another example:
    sitename = u'ÔÕÕÙçÙ éÜ ÙÕèÒß']]></screen><para>Read the comments in the configuration file - they tell you which options must use Unicode values. </para><para>Notes: </para><itemizedlist><listitem><para>You can't mix different encodings in the same file. If your coding line says <code>iso-8859-1</code>, all your characters, the whole file content, must be in that encoding. </para></listitem><listitem><para>If you use utf-8 encoding (or plain ascii), you don't have to use unicode strings, moin will decode your string correctly for you. New in 1.3.2. </para></listitem></itemizedlist></section><section><title>International Setup</title><para>The default configuration file shipped with moin uses <code>iso-8859-1</code> coding. This is fine for Latin languages like English or German, but not usable for non-latin languages. If you want to have non-latin characters in your configuration items, use utf-8 coding for the config file. </para><para>Set the first line of all configuration files to this line: </para><screen><![CDATA[# -*- coding: utf-8 -*-]]></screen><itemizedlist><listitem override="none"><para><inlinemediaobject><imageobject><imagedata depth="16" fileref="http://research.math.uvt.ro/wiki//static/moniker/img/alert.png" width="16"/></imageobject><textobject><phrase>/!\</phrase></textobject></inlinemediaobject> You need a text editor being capable of (and also really using) utf-8 encoding for editing the config files. </para></listitem></itemizedlist><para>Values using unicode strings (international users might want to change them): </para><itemizedlist><listitem><para>sitename </para></listitem><listitem><para>logo_string </para></listitem><listitem><para>page_front_page </para></listitem><listitem><para>navi_bar </para></listitem><listitem><para>page_category_regex </para></listitem><listitem><para>page_dict_regex </para></listitem><listitem><para>page_group_regex </para></listitem><listitem><para>page_template_regex </para></listitem><listitem><para>page_license_page - New in 1.3.2 </para></listitem><listitem><para>page_local_spelling_words - New in 1.3.2 </para></listitem><listitem><para>acl_rights_default - New in 1.3.2 </para></listitem><listitem><para>acl_rights_before - New in 1.3.2 </para></listitem><listitem><para>acl_rights_after - New in 1.3.2 </para></listitem><listitem><para>mail_from - New in 1.5.0 </para></listitem></itemizedlist><para>For ready made configuration in your language, see MoinMoin:ConfigMarket. Read also the section about unicode options. </para></section><section><title>Configuración de varias instancias de wikis</title><para>El motor de wiki moinmoin es capaz de soportar varios wikis con una única instalación, un conjunto de archivos de configuración y un sólo proceso servidor. Especialmente para ambientes persistenes como twisted, debido a que el servidor twisted se ejecutará permanentemente en una dirección IP y un puerto TCP específicos. Para tener dominios virtuales de múltiples dominios (wikis) en la misma IP y puerto, necesitamos que el motor wiki cargue permanentemente varias configuraciones al mismo tiempo y escoja la adecuada cuando se recibe una solicitad específica para un URL. </para><para>Para escojer la configuración adecuada, moin usa la variable de configuración <code>wikis</code> presente en el archivo <code>farmconfig.py</code> - que contiene una lista de pares <code>(nombredelwiki, url-regex)</code>. Por favor usa solamente identificadores válidos para <code>nombredelwiki</code> (para ser exacto: <code>identificador ::= (letra|&quot;_&quot;) (letra | dígito | &quot;_&quot;)*</code> - basta con una palabra sencilla si no entiendes la regla gramatical). Cuando moin procesa una solicitud para un URL, moin busca en la lista y trata de encontrar una coincidencia con la expresión regular de URL(url-regex) frente al URL acutal. Si no coincide, continua con el par siguiente. Si coincide, moin carga un archivo de configuración llamado <code>&lt;nombredelwiki&gt;.py</code> (usualmente en el mismo directorio) que contiene la configuración para tal wiki. </para><para><code>farmconfig.py</code> en el archivo de distribución contiene algunos ejemplos para una granja con varios wikis. Solamente debes adaptarla para que se ajuste a tus necesidades si deseas ejecutar varios wikis. </para><para><inlinemediaobject><imageobject><imagedata depth="16" fileref="http://research.math.uvt.ro/wiki//static/moniker/img/alert.png" width="16"/></imageobject><textobject><phrase>/!\</phrase></textobject></inlinemediaobject> Para facilitar la escritura de estas páginas, llamaremos al archivo de configuración <code>&lt;nombredelwiki&gt;.py</code> simplemente <code>wikiconfig.py</code>, por supuesto que puedes emplear el nombre de archivo que desees. </para><para>Asuminos que has adaptado la variable de configuración <code>wikis</code> en <code>farmconfig.py</code> (ver arriba), así que ofrecemos solamente algunas pistas de como puedes ahorrar trabajo. Lee también las pistas para configuración de una configuración para un wiki único porque explica la herencia de configuración. </para><para>Usamos la configuración basada en la clase para poder configurar las opciones comunes para todos tus wikis en un solo lugar: en la configuración de la clase base (para un ejemplo, ver <code>farmconfig.py</code>): </para><para><emphasis role="strong">farmconfig.py</emphasis>: </para><screen><![CDATA[# -*- coding: iso-8859-1 -*-
# farmconfig.py:
from MoinMoin.multiconfig import DefaultConfig
class FarmConfig(DefaultConfig):
    url_prefix = '/wiki'
    show_hosts = 1
    underlay_dir = '/where/ever/common/underlay'
    # ...]]></screen><itemizedlist><listitem override="none"><para>Explicación: </para><itemizedlist><listitem><para>primero importamos el archivo de configuración predeterminado, de la misma manera que cuando configuramos un wiki único </para></listitem><listitem><para>ahora definimos una nueva clase granja configuración (Farm<emphasis role="strong"/>Config) - y heredamos de la configuración predeterminada(Default<emphasis role="strong"/>Config) </para></listitem><listitem><para>a continuación especificamos todo aquello que nuestros wikis tienen en común, sin modificar las opcines que queremos sean diferentes entre ellos </para></listitem><listitem><para>Esta clase Farm<emphasis role="strong"/>Config será usada por los archivos de configuración en lugar de usar la clase de configuración Default<emphasis role="strong"/>Config por defecto, mira abajo: </para></listitem></itemizedlist></listitem></itemizedlist><para>Las configuraciones de cada uno de tus wikis solamente difieren en aquello que deseas se único para cada uno de ellos (como el logo, o el directorio de datos o las configuraciones ACL). Todo el resto que obtienen por herencia de la clase de configuración base, ver <code>moinmaster.py</code> para un ejemplo. </para><para><emphasis role="strong">moinmaster.py</emphasis>: </para><screen><![CDATA[# -*- coding: iso-8859-1 -*-
# moinmaster.py:
from farmconfig import FarmConfig
class Config(FarmConfig):
    show_hosts = 0
    sitename = u'MoinMaster'
    interwikiname = 'MoinMaster'
    data_dir = '/org/de.wikiwikiweb.moinmaster/data/'
    # ...]]></screen><itemizedlist><listitem override="none"><para>Explicación: </para><itemizedlist><listitem><para>mira la configuración para un wiki único, la única diferencia es que heredamos de Farm<emphasis role="strong"/>Config (que heredó de  Default<emphasis role="strong"/>Config) en lugar de hacerlo directamente de Default<emphasis role="strong"/>Config </para></listitem><listitem><para>ahora específicamos que show_hosts valga 0 - deseamos que sea así en nuestra granja, pero no para esta en particular </para></listitem><listitem><para>también especificamos sitename, interwikiname y data_dir (los que deseamos cambiar) </para></listitem></itemizedlist></listitem></itemizedlist></section><section><title>Overview of configuration options</title><para>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 <code>wikiconfig.py</code> that comes with the distribution. </para><para><inlinemediaobject><imageobject><imagedata depth="16" fileref="http://research.math.uvt.ro/wiki//static/moniker/img/alert.png" width="16"/></imageobject><textobject><phrase>/!\</phrase></textobject></inlinemediaobject> Starting with moin 1.3.1, some options must use unicode strings. Read the section about unicode options. </para><informaltable><tgroup cols="3"><colspec colname="col_0"/><colspec colname="col_1"/><colspec colname="col_2"/><tbody><row rowsep="1"><entry colsep="1" rowsep="1"><para> <emphasis role="strong">Variable name</emphasis> </para></entry><entry colsep="1" rowsep="1"><para> <emphasis role="strong">Default</emphasis> </para></entry><entry colsep="1" rowsep="1"><para> <emphasis role="strong">Description</emphasis> </para></entry></row><row rowsep="1"><entry colsep="1" rowsep="1"><para> Security<emphasis role="strong"/>Policy </para></entry><entry colsep="1" rowsep="1"><para> None </para></entry><entry colsep="1" rowsep="1"><para> Class object hook for implementing security restrictions </para></entry></row><row rowsep="1"><entry colsep="1" rowsep="1"><para> acl_... </para></entry><entry colsep="1" rowsep="1"><para> ... </para></entry><entry colsep="1" rowsep="1"><para> wiki-wide access control list definition (see <ulink url="http://research.math.uvt.ro/wiki/AyudaSobreConfiguraci%C3%B3n/wiki/HelpOnAccessControlLists#">HelpOnAccessControlLists</ulink>) </para></entry></row><row rowsep="1"><entry colsep="1" rowsep="1"><para> allow_xslt </para></entry><entry colsep="1" rowsep="1"><para> 0</para></entry><entry colsep="1" rowsep="1"><para> True to enable XSLT processing via 4Suite (note that this enables anyone with enough know-how to insert <emphasis role="strong">arbitrary HTML</emphasis> into your wiki, which is why it defaults to 0) </para></entry></row><row rowsep="1"><entry colsep="1" rowsep="1"><para> actions_excluded </para></entry><entry colsep="1" rowsep="1"><para> [] </para></entry><entry colsep="1" rowsep="1"><para> Exclude unwanted actions (list of strings) </para></entry></row><row rowsep="1"><entry colsep="1" rowsep="1"><para> attachments </para></entry><entry colsep="1" rowsep="1"><para> None </para></entry><entry colsep="1" rowsep="1"><para> If <code>None</code>, send attachments via CGI; else this has to be a dictionary with the path to attachment storage (key <emphasis>dir</emphasis>) and the equivalent URL prefix to that same dir (key <emphasis>url</emphasis>)</para></entry></row><row rowsep="1"><entry colsep="1" rowsep="1"><para> auth </para></entry><entry colsep="1" rowsep="1"><para> [moin_cookie] </para></entry><entry colsep="1" rowsep="1"><para> list of auth functions, to be called in this order (see <ulink url="http://research.math.uvt.ro/wiki/AyudaSobreConfiguraci%C3%B3n/wiki/HelpOnAuthentication#">HelpOnAuthentication</ulink>) </para></entry></row><row rowsep="1"><entry colsep="1" rowsep="1"><para> bang_meta </para></entry><entry colsep="1" rowsep="1"><para> 1 </para></entry><entry colsep="1" rowsep="1"><para> enable <code>!NoWikiName</code> markup </para></entry></row><row rowsep="1"><entry colsep="1" rowsep="1"><para> caching_formats </para></entry><entry colsep="1" rowsep="1"><para> ['text_html'] </para></entry><entry colsep="1" rowsep="1"><para> output formats that are cached; set to [] to turn off caching (useful for development) </para></entry></row><row rowsep="1"><entry colsep="1" rowsep="1"><para> changed_time_fmt </para></entry><entry colsep="1" rowsep="1"><para> '%H:%M' </para></entry><entry colsep="1" rowsep="1"><para> Time format used on <ulink url="http://research.math.uvt.ro/wiki/AyudaSobreConfiguraci%C3%B3n/wiki/RecentChanges#">RecentChanges</ulink> for page edits within the last 24 hours </para></entry></row><row rowsep="1"><entry colsep="1" rowsep="1"><para> chart_options </para></entry><entry colsep="1" rowsep="1"><para> None </para></entry><entry colsep="1" rowsep="1"><para> If you have gdchart, use something like chart_options = {'width': 720, 'height': 540} </para></entry></row><row rowsep="1"><entry colsep="1" rowsep="1"><para> cookie_domain </para></entry><entry colsep="1" rowsep="1"><para> None </para></entry><entry colsep="1" rowsep="1"><para> farmconfig: use this domain for the <ulink url="http://research.math.uvt.ro/wiki/AyudaSobreConfiguraci%C3%B3n/wiki/MoinMoin#">MoinMoin</ulink> cookie </para></entry></row><row rowsep="1"><entry colsep="1" rowsep="1"><para> cookie_path </para></entry><entry colsep="1" rowsep="1"><para> None </para></entry><entry colsep="1" rowsep="1"><para> farmconfig: use this path for the <ulink url="http://research.math.uvt.ro/wiki/AyudaSobreConfiguraci%C3%B3n/wiki/MoinMoin#">MoinMoin</ulink> cookie </para></entry></row><row rowsep="1"><entry colsep="1" rowsep="1"><para> cookie_lifetime </para></entry><entry colsep="1" rowsep="1"><para> 12 </para></entry><entry colsep="1" rowsep="1"><para> 12 hours from now until the <ulink url="http://research.math.uvt.ro/wiki/AyudaSobreConfiguraci%C3%B3n/wiki/MoinMoin#">MoinMoin</ulink> cookie expires and you get logged out </para></entry></row><row rowsep="1"><entry colsep="1" rowsep="1"><para> data_dir </para></entry><entry colsep="1" rowsep="1"><para> './data/' </para></entry><entry colsep="1" rowsep="1"><para> Path to the data directory containing your (locally made) wiki pages. </para></entry></row><row rowsep="1"><entry colsep="1" rowsep="1"><para> data_underlay_dir </para></entry><entry colsep="1" rowsep="1"><para> './underlay/' </para></entry><entry colsep="1" rowsep="1"><para> Path to the underlay directory containing distribution system and help pages. </para></entry></row><row rowsep="1"><entry colsep="1" rowsep="1"><para> date_fmt </para></entry><entry colsep="1" rowsep="1"><para> '%Y-%m-%d' </para></entry><entry colsep="1" rowsep="1"><para> System date format, used mostly in <ulink url="http://research.math.uvt.ro/wiki/AyudaSobreConfiguraci%C3%B3n/wiki/RecentChanges#">RecentChanges</ulink> </para></entry></row><row rowsep="1"><entry colsep="1" rowsep="1"><para> datetime_fmt </para></entry><entry colsep="1" rowsep="1"><para> '%Y-%m-%d %H:%M:%S' </para></entry><entry colsep="1" rowsep="1"><para> Default format for dates and times (when the user has no preferences or chose the &quot;default&quot; date format) </para></entry></row><row rowsep="1"><entry colsep="1" rowsep="1"><para> default_markup </para></entry><entry colsep="1" rowsep="1"><para> 'wiki' </para></entry><entry colsep="1" rowsep="1"><para> Default page parser / format (name of module in <code>MoinMoin.parser</code>)  </para></entry></row><row rowsep="1"><entry colsep="1" rowsep="1"><para> docbook_html_dir </para></entry><entry colsep="1" rowsep="1"><para> '...' </para></entry><entry colsep="1" rowsep="1"><para> Path to the docbook html directory (optional, used by the docbook parser). The default value is correct for Debian Sarge. </para></entry></row><row rowsep="1"><entry colsep="1" rowsep="1"><para> editor_default </para></entry><entry colsep="1" rowsep="1"><para> 'text' </para></entry><entry colsep="1" rowsep="1"><para> Editor to use by default, 'text' or 'gui' </para></entry></row><row rowsep="1"><entry colsep="1" rowsep="1"><para> editor_ui </para></entry><entry colsep="1" rowsep="1"><para> 'freechoice' </para></entry><entry colsep="1" rowsep="1"><para> Editor choice shown on the user interface, 'freechoice' or 'theonepreferred' </para></entry></row><row rowsep="1"><entry colsep="1" rowsep="1"><para> editor_force </para></entry><entry colsep="1" rowsep="1"><para> False </para></entry><entry colsep="1" rowsep="1"><para> Force using the default editor </para></entry></row><row rowsep="1"><entry colsep="1" rowsep="1"><para> edit_locking </para></entry><entry colsep="1" rowsep="1"><para> 'warn 10' </para></entry><entry colsep="1" rowsep="1"><para> Editor locking policy: <code>None</code>, <code>'warn &lt;timeout in minutes&gt;'</code>, or <code>'lock &lt;timeout in minutes&gt;'</code> </para></entry></row><row rowsep="1"><entry colsep="1" rowsep="1"><para> edit_rows </para></entry><entry colsep="1" rowsep="1"><para> 20 </para></entry><entry colsep="1" rowsep="1"><para> Default height of the edit box </para></entry></row><row rowsep="1"><entry colsep="1" rowsep="1"><para> hacks </para></entry><entry colsep="1" rowsep="1"><para> {} </para></entry><entry colsep="1" rowsep="1"><para> for use by moin development </para></entry></row><row rowsep="1"><entry colsep="1" rowsep="1"><para> hosts_deny </para></entry><entry colsep="1" rowsep="1"><para> <code>[]</code> </para></entry><entry colsep="1" rowsep="1"><para> List of denied IPs; if an IP ends with a dot, it denies a whole subnet (class A, B or C) </para></entry></row><row rowsep="1"><entry colsep="1" rowsep="1"><para> html_head </para></entry><entry colsep="1" rowsep="1"><para> &quot;&quot; </para></entry><entry colsep="1" rowsep="1"><para> Additional &lt;HEAD&gt; tags for all pages (see <ulink url="http://research.math.uvt.ro/wiki/AyudaSobreConfiguraci%C3%B3n/wiki/HelpOnSkins#">HelpOnSkins</ulink>) </para></entry></row><row rowsep="1"><entry colsep="1" rowsep="1"><para> html_head_posts </para></entry><entry colsep="1" rowsep="1"><para> robots: noindex,nofollow </para></entry><entry colsep="1" rowsep="1"><para> Additional &lt;HEAD&gt; tags for POST requests </para></entry></row><row rowsep="1"><entry colsep="1" rowsep="1"><para> html_head_index </para></entry><entry colsep="1" rowsep="1"><para> robots: index,follow </para></entry><entry colsep="1" rowsep="1"><para> Additional &lt;HEAD&gt; tags for some few index pages </para></entry></row><row rowsep="1"><entry colsep="1" rowsep="1"><para> html_head_normal </para></entry><entry colsep="1" rowsep="1"><para> robots: index,nofollow </para></entry><entry colsep="1" rowsep="1"><para> Additional &lt;HEAD&gt; tags for most normal pages </para></entry></row><row rowsep="1"><entry colsep="1" rowsep="1"><para> html_head_queries </para></entry><entry colsep="1" rowsep="1"><para> robots: noindex,nofollow </para></entry><entry colsep="1" rowsep="1"><para> Additional &lt;HEAD&gt; tags for requests with query strings, like actions </para></entry></row><row rowsep="1"><entry colsep="1" rowsep="1"><para> html_pagetitle </para></entry><entry colsep="1" rowsep="1"><para> None </para></entry><entry colsep="1" rowsep="1"><para> Allows you to set a specific HTML page title (if not set, it defaults to the value of <code>sitename</code>) </para></entry></row><row rowsep="1"><entry colsep="1" rowsep="1"><para> interwiki_preferred </para></entry><entry colsep="1" rowsep="1"><para> <code>[]</code> </para></entry><entry colsep="1" rowsep="1"><para> In dialogues, show those wikis at the top of the list. </para></entry></row><row rowsep="1"><entry colsep="1" rowsep="1"><para> interwikiname </para></entry><entry colsep="1" rowsep="1"><para> None </para></entry><entry colsep="1" rowsep="1"><para> <ulink url="http://research.math.uvt.ro/wiki/AyudaSobreConfiguraci%C3%B3n/wiki/InterWiki#">InterWiki</ulink> name (prefix, moniker) of the site, or None </para></entry></row><row rowsep="1"><entry colsep="1" rowsep="1"><para> language_default </para></entry><entry colsep="1" rowsep="1"><para> 'en' </para></entry><entry colsep="1" rowsep="1"><para> Default language for user interface and page content, see <ulink url="http://research.math.uvt.ro/wiki/AyudaSobreConfiguraci%C3%B3n/wiki/HelpOnLanguages#">HelpOnLanguages</ulink>!</para></entry></row><row rowsep="1"><entry colsep="1" rowsep="1"><para> language_ignore_browser </para></entry><entry colsep="1" rowsep="1"><para> False </para></entry><entry colsep="1" rowsep="1"><para> Ignore user's browser language settings, see <ulink url="http://research.math.uvt.ro/wiki/AyudaSobreConfiguraci%C3%B3n/wiki/HelpOnLanguages#">HelpOnLanguages</ulink>!</para></entry></row><row rowsep="1"><entry colsep="1" rowsep="1"><para> logo_string </para></entry><entry colsep="1" rowsep="1"><para> sitename </para></entry><entry colsep="1" rowsep="1"><para> The wiki logo top of page, HTML is allowed (<code>&lt;img&gt;</code> is possible as well) [Unicode] </para></entry></row><row rowsep="1"><entry colsep="1" rowsep="1"><para> lupy_search </para></entry><entry colsep="1" rowsep="1"><para> False </para></entry><entry colsep="1" rowsep="1"><para> use the lupy indexing search engine </para></entry></row><row rowsep="1"><entry colsep="1" rowsep="1"><para> mail_from </para></entry><entry colsep="1" rowsep="1"><para> None </para></entry><entry colsep="1" rowsep="1"><para> <code>From:</code> header used in sent mails, e.g. mail_from = u'Jürgen Wiki &lt;<ulink url="mailto:noreply@example.com">noreply@example.com</ulink>&gt;'. See <ulink url="http://research.math.uvt.ro/wiki/AyudaSobreConfiguraci%C3%B3n/wiki/AyudaSobreConfiguraci%C3%B3n/EmailSupport#">/EmailSupport</ulink>.</para></entry></row><row rowsep="1"><entry colsep="1" rowsep="1"><para> mail_login </para></entry><entry colsep="1" rowsep="1"><para> None </para></entry><entry colsep="1" rowsep="1"><para> &quot;user pwd&quot; if you need to use SMTP AUTH </para></entry></row><row rowsep="1"><entry colsep="1" rowsep="1"><para> mail_smarthost </para></entry><entry colsep="1" rowsep="1"><para> None </para></entry><entry colsep="1" rowsep="1"><para> IPv4 address or hostname of an SMTP-enabled server (with optional <code>:port</code> appendix, defaults to 25). Note that email features (notification, mailing of login data) works only if this variable is set. </para></entry></row><row rowsep="1"><entry colsep="1" rowsep="1"><para> mail_sendmail </para></entry><entry colsep="1" rowsep="1"><para> None </para></entry><entry colsep="1" rowsep="1"><para> If set to e.g. '/usr/sbin/sendmail -t -i', use this sendmail command to send mail. Default is to send mail by an internal function using SMTP. </para></entry></row><row rowsep="1"><entry colsep="1" rowsep="1"><para> navi_bar </para></entry><entry colsep="1" rowsep="1"><para> [u'%(page_front_page)s', u'Recent<emphasis role="strong"/>Changes', u'Find<emphasis role="strong"/>Page', u'Help<emphasis role="strong"/>Contents',] </para></entry><entry colsep="1" rowsep="1"><para> Most important page names. Users can add more names in their quick links in <ulink url="http://research.math.uvt.ro/wiki/AyudaSobreConfiguraci%C3%B3n/wiki/UserPreferences#">UserPreferences</ulink>. To link to URL, use <code>u&quot;[url link title]&quot;</code>, to use a shortened name for long page name, use <code>u&quot;[LongLongPageName title]&quot;</code>. To use page names with spaces, use <code>u&quot;[page_name_with_spaces any title]&quot;</code> [list of Unicode strings] </para></entry></row><row rowsep="1"><entry colsep="1" rowsep="1"><para> nonexist_qm </para></entry><entry colsep="1" rowsep="1"><para> 0 </para></entry><entry colsep="1" rowsep="1"><para> Default for displaying <ulink url="http://research.math.uvt.ro/wiki/AyudaSobreConfiguraci%C3%B3n/wiki/WantedPages#">WantedPages</ulink> with a question mark, like in the original wiki (changeable by the user) </para></entry></row><row rowsep="1"><entry colsep="1" rowsep="1"><para> page_category_regex </para></entry><entry colsep="1" rowsep="1"><para> ur'(?P&lt;all&gt;Category(?P&lt;key&gt;\S+))' </para></entry><entry colsep="1" rowsep="1"><para> Pagenames containing a match for this regex are regarded as Wiki categories [Unicode] </para></entry></row><row rowsep="1"><entry colsep="1" rowsep="1"><para> page_credits </para></entry><entry colsep="1" rowsep="1"><para> [...] </para></entry><entry colsep="1" rowsep="1"><para> list with html fragments with logos or strings for crediting.  </para></entry></row><row rowsep="1"><entry colsep="1" rowsep="1"><para> page_dict_regex </para></entry><entry colsep="1" rowsep="1"><para> u'[a-z0-9]Dict$' </para></entry><entry colsep="1" rowsep="1"><para> Pagenames containing a match for this regex are regarded as containing variable dictionary definitions [Unicode] </para></entry></row><row rowsep="1"><entry colsep="1" rowsep="1"><para> page_footer1 </para></entry><entry colsep="1" rowsep="1"><para> &quot;&quot; </para></entry><entry colsep="1" rowsep="1"><para> Custom HTML markup sent <emphasis>before</emphasis> the system footer (see <ulink url="http://research.math.uvt.ro/wiki/AyudaSobreConfiguraci%C3%B3n/wiki/HelpOnSkins#">HelpOnSkins</ulink>) </para></entry></row><row rowsep="1"><entry colsep="1" rowsep="1"><para> page_footer2 </para></entry><entry colsep="1" rowsep="1"><para> &quot;&quot; </para></entry><entry colsep="1" rowsep="1"><para> Custom HTML markup sent <emphasis>after</emphasis> the system footer (see <ulink url="http://research.math.uvt.ro/wiki/AyudaSobreConfiguraci%C3%B3n/wiki/HelpOnSkins#">HelpOnSkins</ulink>) </para></entry></row><row rowsep="1"><entry colsep="1" rowsep="1"><para> page_front_page </para></entry><entry colsep="1" rowsep="1"><para> u'<ulink url="http://research.math.uvt.ro/wiki/AyudaSobreConfiguraci%C3%B3n/wiki/HelpOnLanguages#">HelpOnLanguages</ulink>' </para></entry><entry colsep="1" rowsep="1"><para> Name of the front page. We don't expect you to keep the default. Just read <ulink url="http://research.math.uvt.ro/wiki/AyudaSobreConfiguraci%C3%B3n/wiki/HelpOnLanguages#">HelpOnLanguages</ulink> in case you're wondering... [Unicode] </para></entry></row><row rowsep="1"><entry colsep="1" rowsep="1"><para> page_group_regex </para></entry><entry colsep="1" rowsep="1"><para> u'[a-z0-9]Group$' </para></entry><entry colsep="1" rowsep="1"><para> Pagenames containing a match for this regex are regarded as containing group definitions [Unicode] </para></entry></row><row rowsep="1"><entry colsep="1" rowsep="1"><para> page_header1 </para></entry><entry colsep="1" rowsep="1"><para> &quot;&quot; </para></entry><entry colsep="1" rowsep="1"><para> Custom HTML markup sent <emphasis>before</emphasis> the system header / title area (see <ulink url="http://research.math.uvt.ro/wiki/AyudaSobreConfiguraci%C3%B3n/wiki/HelpOnSkins#">HelpOnSkins</ulink>) </para></entry></row><row rowsep="1"><entry colsep="1" rowsep="1"><para> page_header2 </para></entry><entry colsep="1" rowsep="1"><para> &quot;&quot; </para></entry><entry colsep="1" rowsep="1"><para> Custom HTML markup sent <emphasis>after</emphasis> the system header / title area (see <ulink url="http://research.math.uvt.ro/wiki/AyudaSobreConfiguraci%C3%B3n/wiki/HelpOnSkins#">HelpOnSkins</ulink>) </para></entry></row><row rowsep="1"><entry colsep="1" rowsep="1"><para> page_iconbar </para></entry><entry colsep="1" rowsep="1"><para> [&quot;view&quot;, ...] </para></entry><entry colsep="1" rowsep="1"><para> list of icons to show in iconbar, valid values are only those in page_icons_table. Available only in classic theme. </para></entry></row><row rowsep="1"><entry colsep="1" rowsep="1"><para> page_icons_table </para></entry><entry colsep="1" rowsep="1"><para> dict </para></entry><entry colsep="1" rowsep="1"><para> dict of {'iconname': (url, title, icon-img-key), ...}. Available only in classic theme. </para></entry></row><row rowsep="1"><entry colsep="1" rowsep="1"><para> page_license_enabled </para></entry><entry colsep="1" rowsep="1"><para> 0 </para></entry><entry colsep="1" rowsep="1"><para> Show a license hint in page editor. </para></entry></row><row rowsep="1"><entry colsep="1" rowsep="1"><para> page_license_page </para></entry><entry colsep="1" rowsep="1"><para> u'<ulink url="http://research.math.uvt.ro/wiki/AyudaSobreConfiguraci%C3%B3n/wiki/WikiLicense#">WikiLicense</ulink>' </para></entry><entry colsep="1" rowsep="1"><para> Page linked from the license hint. [Unicode] </para></entry></row><row rowsep="1"><entry colsep="1" rowsep="1"><para> page_local_spelling_words </para></entry><entry colsep="1" rowsep="1"><para> u'<ulink url="http://research.math.uvt.ro/wiki/AyudaSobreConfiguraci%C3%B3n/wiki/LocalSpellingWords#">LocalSpellingWords</ulink>' </para></entry><entry colsep="1" rowsep="1"><para> Name of the page containing user-provided spellchecker words [Unicode] </para></entry></row><row rowsep="1"><entry colsep="1" rowsep="1"><para> page_template_regex </para></entry><entry colsep="1" rowsep="1"><para> u'[a-z0-9]Template$' </para></entry><entry colsep="1" rowsep="1"><para> Pagenames containing a match for this regex are regarded as templates for new pages [Unicode] </para></entry></row><row rowsep="1"><entry colsep="1" rowsep="1"><para> refresh </para></entry><entry colsep="1" rowsep="1"><para> None </para></entry><entry colsep="1" rowsep="1"><para> refresh = (minimum_delay_s, targets_allowed) enables use of <code>#refresh 5 PageName</code> processing instruction, targets_allowed must be either <code>'internal'</code> or <code>'external'</code> </para></entry></row><row rowsep="1"><entry colsep="1" rowsep="1"><para> shared_intermap </para></entry><entry colsep="1" rowsep="1"><para> None </para></entry><entry colsep="1" rowsep="1"><para> Path to a file containing global <ulink url="http://research.math.uvt.ro/wiki/AyudaSobreConfiguraci%C3%B3n/wiki/InterWiki#">InterWiki</ulink> definitions (or a list of such filenames) </para></entry></row><row rowsep="1"><entry colsep="1" rowsep="1"><para> show_hosts </para></entry><entry colsep="1" rowsep="1"><para> 1 </para></entry><entry colsep="1" rowsep="1"><para> Disable this option to hide host names and IPs </para></entry></row><row rowsep="1"><entry colsep="1" rowsep="1"><para> show_interwiki </para></entry><entry colsep="1" rowsep="1"><para> 0 </para></entry><entry colsep="1" rowsep="1"><para> Enable this option to let the theme display your interwiki name </para></entry></row><row rowsep="1"><entry colsep="1" rowsep="1"><para> show_login </para></entry><entry colsep="1" rowsep="1"><para> 1 </para></entry><entry colsep="1" rowsep="1"><para> Disable this option to get login/logout action removed </para></entry></row><row rowsep="1"><entry colsep="1" rowsep="1"><para> show_names </para></entry><entry colsep="1" rowsep="1"><para> 1 </para></entry><entry colsep="1" rowsep="1"><para> Disable this option to hide names from the info view and <ulink url="http://research.math.uvt.ro/wiki/AyudaSobreConfiguraci%C3%B3n/wiki/RecentChanges#">RecentChanges</ulink> (this was previously done by show_hosts) </para></entry></row><row rowsep="1"><entry colsep="1" rowsep="1"><para> show_section_numbers </para></entry><entry colsep="1" rowsep="1"><para> 0 </para></entry><entry colsep="1" rowsep="1"><para> True to show section numbers in headings by default </para></entry></row><row rowsep="1"><entry colsep="1" rowsep="1"><para> show_timings </para></entry><entry colsep="1" rowsep="1"><para> 0 </para></entry><entry colsep="1" rowsep="1"><para> Shows some timing values at bottom of page - used for development </para></entry></row><row rowsep="1"><entry colsep="1" rowsep="1"><para> show_version </para></entry><entry colsep="1" rowsep="1"><para> 0 </para></entry><entry colsep="1" rowsep="1"><para> Show <ulink url="http://research.math.uvt.ro/wiki/AyudaSobreConfiguraci%C3%B3n/wiki/MoinMoin#">MoinMoin</ulink>'s version at the bottom of each page </para></entry></row><row rowsep="1"><entry colsep="1" rowsep="1"><para> sitename </para></entry><entry colsep="1" rowsep="1"><para> u'Untitled Wiki' </para></entry><entry colsep="1" rowsep="1"><para> Short description of your wiki site, displayed below the logo on each page, and used in RSS documents as the channel title [Unicode] </para></entry></row><row rowsep="1"><entry colsep="1" rowsep="1"><para> stylesheets </para></entry><entry colsep="1" rowsep="1"><para> [] </para></entry><entry colsep="1" rowsep="1"><para> List of tuples (media, csshref) to insert after theme css, before user css </para></entry></row><row rowsep="1"><entry colsep="1" rowsep="1"><para> superuser </para></entry><entry colsep="1" rowsep="1"><para> [] </para></entry><entry colsep="1" rowsep="1"><para> List of trusted user names with wiki system administration super powers (not to be confused with ACL admin rights!). Used for e.g. making full backups, software installation, language installation via <ulink url="http://research.math.uvt.ro/wiki/AyudaSobreConfiguraci%C3%B3n/wiki/SystemPagesSetup#">SystemPagesSetup</ulink> and more. See also <ulink url="http://research.math.uvt.ro/wiki/AyudaSobreConfiguraci%C3%B3n/wiki/HelpOnPackageInstaller#">HelpOnPackageInstaller</ulink>.</para></entry></row><row rowsep="1"><entry colsep="1" rowsep="1"><para> theme_default </para></entry><entry colsep="1" rowsep="1"><para> 'modern' </para></entry><entry colsep="1" rowsep="1"><para> the name of the theme that is used by default (see <ulink url="http://research.math.uvt.ro/wiki/AyudaSobreConfiguraci%C3%B3n/wiki/HelpOnThemes#">HelpOnThemes</ulink>) </para></entry></row><row rowsep="1"><entry colsep="1" rowsep="1"><para> theme_force </para></entry><entry colsep="1" rowsep="1"><para> False </para></entry><entry colsep="1" rowsep="1"><para> If True, do not allow to change the theme </para></entry></row><row rowsep="1"><entry colsep="1" rowsep="1"><para> trail_size </para></entry><entry colsep="1" rowsep="1"><para> 5 </para></entry><entry colsep="1" rowsep="1"><para> Number of pages in the trail of visited pages </para></entry></row><row rowsep="1"><entry colsep="1" rowsep="1"><para> tz_offset </para></entry><entry colsep="1" rowsep="1"><para> 0.0 </para></entry><entry colsep="1" rowsep="1"><para> default time zone offset in hours from UTC </para></entry></row><row rowsep="1"><entry colsep="1" rowsep="1"><para> ua_spiders </para></entry><entry colsep="1" rowsep="1"><para> ...|google|wget|... </para></entry><entry colsep="1" rowsep="1"><para> A regex of HTTP_USER_AGENTs that should be excluded from logging </para></entry></row><row rowsep="1"><entry colsep="1" rowsep="1"><para> url_mappings </para></entry><entry colsep="1" rowsep="1"><para> {} </para></entry><entry colsep="1" rowsep="1"><para> lookup table to remap URL prefixes (dict of <code>'prefix': 'replacement'</code>); especially useful in intranets, when whole trees of externally hosted documents move around </para></entry></row><row rowsep="1"><entry colsep="1" rowsep="1"><para> url_prefix </para></entry><entry colsep="1" rowsep="1"><para> '/wiki' </para></entry><entry colsep="1" rowsep="1"><para> used as the base URL for icons, css, etc. </para></entry></row><row rowsep="1"><entry colsep="1" rowsep="1"><para> unzip_attachments_count </para></entry><entry colsep="1" rowsep="1"><para> 51 </para></entry><entry colsep="1" rowsep="1"><para>the number of files which are extracted from the zip file</para></entry></row><row rowsep="1"><entry colsep="1" rowsep="1"><para> unzip_attachments_space </para></entry><entry colsep="1" rowsep="1"><para> 200MB </para></entry><entry colsep="1" rowsep="1"><para>this total amount of bytes can be used to unzip files.</para></entry></row><row rowsep="1"><entry colsep="1" rowsep="1"><para> unzip_single_file_size </para></entry><entry colsep="1" rowsep="1"><para> 2MB </para></entry><entry colsep="1" rowsep="1"><para>size of a single file in the archive which will be extracted</para></entry></row><row rowsep="1"><entry colsep="1" rowsep="1"><para> user_autocreate </para></entry><entry colsep="1" rowsep="1"><para> False </para></entry><entry colsep="1" rowsep="1"><para> If set to True user accounts are created automatically (see <ulink url="http://research.math.uvt.ro/wiki/AyudaSobreConfiguraci%C3%B3n/wiki/HelpOnAuthentication#">HelpOnAuthentication</ulink>). </para></entry></row><row rowsep="1"><entry colsep="1" rowsep="1"><para> user_checkbox_defaults </para></entry><entry colsep="1" rowsep="1"><para> dict </para></entry><entry colsep="1" rowsep="1"><para> Sets the default settings of the <ulink url="http://research.math.uvt.ro/wiki/AyudaSobreConfiguraci%C3%B3n/wiki/UserPreferences#">UserPreferences</ulink> checkboxes. See <code>multiconfig.py</code> for the default settings. Example: <code>user_checkbox_defaults = {'edit_on_doubleclick': 0}</code> </para></entry></row><row rowsep="1"><entry colsep="1" rowsep="1"><para> user_checkbox_disable </para></entry><entry colsep="1" rowsep="1"><para> <code>[]</code> </para></entry><entry colsep="1" rowsep="1"><para> a list of checkbox names to be disabled in the <ulink url="http://research.math.uvt.ro/wiki/AyudaSobreConfiguraci%C3%B3n/wiki/UserPreferences#">UserPreferences</ulink>. A disabled checkbox is displayed greyedout and uses the default value set in <code>user_checkbox_defaults</code>. </para></entry></row><row rowsep="1"><entry colsep="1" rowsep="1"><para> user_checkbox_fields </para></entry><entry colsep="1" rowsep="1"><para> <code>[...]</code> </para></entry><entry colsep="1" rowsep="1"><para> list of checkbox items, see <code>multiconfig.py</code> </para></entry></row><row rowsep="1"><entry colsep="1" rowsep="1"><para> user_checkbox_remove </para></entry><entry colsep="1" rowsep="1"><para> <code>[]</code> </para></entry><entry colsep="1" rowsep="1"><para> a list of checkbox names to be removed from the <ulink url="http://research.math.uvt.ro/wiki/AyudaSobreConfiguraci%C3%B3n/wiki/UserPreferences#">UserPreferences</ulink>. A removed checkbox uses the default value set in <code>user_checkbox_defaults</code>. </para></entry></row><row rowsep="1"><entry colsep="1" rowsep="1"><para> user_email_unique </para></entry><entry colsep="1" rowsep="1"><para> True </para></entry><entry colsep="1" rowsep="1"><para> check emails for uniqueness and don't accept duplicates. </para></entry></row><row rowsep="1"><entry colsep="1" rowsep="1"><para> user_form_defaults</para></entry><entry colsep="1" rowsep="1"><para> <code>[]</code> </para></entry><entry colsep="1" rowsep="1"><para> a list of form defaults for <ulink url="http://research.math.uvt.ro/wiki/AyudaSobreConfiguraci%C3%B3n/wiki/UserPreferences#">UserPreferences</ulink>. </para></entry></row><row rowsep="1"><entry colsep="1" rowsep="1"><para> user_form_disable </para></entry><entry colsep="1" rowsep="1"><para> <code>[]</code> </para></entry><entry colsep="1" rowsep="1"><para> a list of form field names to be disabled in the <ulink url="http://research.math.uvt.ro/wiki/AyudaSobreConfiguraci%C3%B3n/wiki/UserPreferences#">UserPreferences</ulink>. A disabled field is displayed greyedout and uses the default value set in <code>user_form_defaults</code>. </para></entry></row><row rowsep="1"><entry colsep="1" rowsep="1"><para> user_form_fields </para></entry><entry colsep="1" rowsep="1"><para> <code>[...]</code> </para></entry><entry colsep="1" rowsep="1"><para> list of userprefs form items, see <code>multiconfig.py</code> </para></entry></row><row rowsep="1"><entry colsep="1" rowsep="1"><para> user_form_remove </para></entry><entry colsep="1" rowsep="1"><para> <code>[]</code> </para></entry><entry colsep="1" rowsep="1"><para> a list of form field names to be removed from the <ulink url="http://research.math.uvt.ro/wiki/AyudaSobreConfiguraci%C3%B3n/wiki/UserPreferences#">UserPreferences</ulink>. A removed form field uses the default value set in <code>user_form_defaults</code>. </para></entry></row><row rowsep="1"><entry colsep="1" rowsep="1"><para> user_homewiki </para></entry><entry colsep="1" rowsep="1"><para> <code>Self</code> </para></entry><entry colsep="1" rowsep="1"><para> farmconfig: wiki where the user home pages are located (useful if you have <emphasis>many</emphasis> users). You could even link to nonwiki &quot;user pages&quot; if the wiki username is in the target URL. </para></entry></row><row rowsep="1"><entry colsep="1" rowsep="1"><para> xmlrpc_putpage_enabled </para></entry><entry colsep="1" rowsep="1"><para> <code>False</code> </para></entry><entry colsep="1" rowsep="1"><para> True to enable wikirpc's putPage call writing to the given pagename. When False, it always writes to <ulink url="http://research.math.uvt.ro/wiki/AyudaSobreConfiguraci%C3%B3n/wiki/PutPageTestPage#">PutPageTestPage</ulink> instead of the given pagename. </para></entry></row><row rowsep="1"><entry colsep="1" rowsep="1"><para> xmlrpc_putpage_trusted_only </para></entry><entry colsep="1" rowsep="1"><para> <code>True</code> </para></entry><entry colsep="1" rowsep="1"><para> Require users using putPage call to be in Trusted group (usually achieved by http auth). </para></entry></row></tbody></tgroup></informaltable><para>Some values can only be set from MoinMoin/config.py (part of the <ulink url="http://research.math.uvt.ro/wiki/AyudaSobreConfiguraci%C3%B3n/wiki/MoinMoin#">MoinMoin</ulink> code and thus GLOBALLY changing behaviour of all your wikis), but not from the individual wiki's config - you should only touch them if you know what you are doing: </para><informaltable><tgroup cols="3"><colspec colname="col_0"/><colspec colname="col_1"/><colspec colname="col_2"/><tbody><row rowsep="1"><entry colsep="1" rowsep="1"><para> charset </para></entry><entry colsep="1" rowsep="1"><para> 'utf-8' </para></entry><entry colsep="1" rowsep="1"><para> the encoding / character set used by the wiki </para></entry></row><row rowsep="1"><entry colsep="1" rowsep="1"><para> lowerletters </para></entry><entry colsep="1" rowsep="1"><para> <emphasis>ucs-2 lowercase letters</emphasis> </para></entry><entry colsep="1" rowsep="1"><para> Lowercase letters, used to define what is a <ulink url="http://research.math.uvt.ro/wiki/AyudaSobreConfiguraci%C3%B3n/wiki/WikiName#">WikiName</ulink> </para></entry></row><row rowsep="1"><entry colsep="1" rowsep="1"><para> smileys </para></entry><entry colsep="1" rowsep="1"><para> {} </para></entry><entry colsep="1" rowsep="1"><para> user-defined smileys (a dict with the markup as the key and a tuple of width, height, border, image name as the value) </para></entry></row><row rowsep="1"><entry colsep="1" rowsep="1"><para> umask </para></entry><entry colsep="1" rowsep="1"><para> 0770 </para></entry><entry colsep="1" rowsep="1"><para> umask used on all open(), mkdir() and similar calls </para></entry></row><row rowsep="1"><entry colsep="1" rowsep="1"><para> upperletters </para></entry><entry colsep="1" rowsep="1"><para> <emphasis>ucs-2 uppercase letters</emphasis> </para></entry><entry colsep="1" rowsep="1"><para> uppercase letters, used to define what is a <ulink url="http://research.math.uvt.ro/wiki/AyudaSobreConfiguraci%C3%B3n/wiki/WikiName#">WikiName</ulink> </para></entry></row><row rowsep="1"><entry colsep="1" rowsep="1"><para> url_schemas </para></entry><entry colsep="1" rowsep="1"><para> <code>[]</code> </para></entry><entry colsep="1" rowsep="1"><para> additional URL schemas you want to have recognized (list of strings; e.g. <code>['ldap', 'imap']</code>) </para></entry></row></tbody></tgroup></informaltable></section><section><title>Special options</title><para><anchor id="character-set"/> </para><section><title>Character Set</title><para>Moin uses unicode internally, and <code>utf-8</code> for external output and input, like pages, html output and translation files. The external character set is defined in <code>config.charset</code> to <code>utf-8</code>. This setting is fine for all languages, as any character can be encoded in utf-8. You should not change this value, although technically it is possible. </para><itemizedlist><listitem override="none"><para><inlinemediaobject><imageobject><imagedata depth="16" fileref="http://research.math.uvt.ro/wiki//static/moniker/img/attention.png" width="16"/></imageobject><textobject><phrase>&lt;!&gt;</phrase></textobject></inlinemediaobject> <emphasis role="strong">Do not change <code>config.charset</code>. It is not tested and we can't support this.</emphasis> </para></listitem></itemizedlist></section></section></article>