<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -3,7 +3,7 @@
   &lt;module&gt;
     &lt;title&gt;core&lt;/title&gt;
     &lt;properName&gt;phpWebSite Core&lt;/properName&gt;
-    &lt;version&gt;1.5.0&lt;/version&gt;
+    &lt;version&gt;1.9.0&lt;/version&gt;
     &lt;url&gt;http://phpwebsite.appstate.edu/downloads/modules/base/&lt;/url&gt;
   &lt;/module&gt;
   &lt;module&gt;</diff>
      <filename>boost/dependency.xml</filename>
    </modified>
    <modified>
      <diff>@@ -542,7 +542,6 @@ class WikiPage
 
     function history()
     {
-        PHPWS_Core::initModClass('help', 'Help.php');
         PHPWS_Core::initModClass('wiki', 'OldWikiPage.php');
         PHPWS_Core::initCoreClass('DBPager.php');
 
@@ -557,7 +556,7 @@ class WikiPage
         $tags['UPDATED']  = dgettext('wiki', 'Updated');
         $tags['EDITOR']   = dgettext('wiki', 'Editor');
         $tags['COMMENT']  = dgettext('wiki', 'Comment');
-        $tags['DIFF']     = PHPWS_Help::show_link('wiki', 'diff', dgettext('wiki', 'Compare To'));
+        $tags['DIFF']     = dgettext('wiki', 'Compare To');
         $tags['ACTIONS']  = dgettext('wiki', 'Actions');
 
         $pager = new DBPager('wiki_pages_version', 'OldWikiPage');</diff>
      <filename>class/WikiPage.php</filename>
    </modified>
    <modified>
      <diff>@@ -38,7 +38,7 @@ class WikiSettings {
             return;
         }
 
-        PHPWS_Core::initModClass('help', 'Help.php');
+        javascript('jquery');
         PHPWS_Core::initModClass('wiki', 'WikiPage.php');
         PHPWS_Core::initCoreClass('DBPager.php');
 
@@ -50,100 +50,155 @@ class WikiSettings {
         $tabs = 1;
         $form = new PHPWS_Form;
 
+        $msg = dgettext('wiki', 'Enabling this setting will show the default wiki page on the home page of the web site.');
         $form-&gt;addCheck('show_on_home');
         $form-&gt;setMatch('show_on_home', PHPWS_Settings::get('wiki', 'show_on_home'));
-        $form-&gt;addTplTag('SHOW_ON_HOME_LABEL',
-                         PHPWS_Help::show_link('wiki', 'show_on_home', dgettext('wiki', 'Show on home page')));
+        $form-&gt;addTplTag('SHOW_ON_HOME_LABEL', javascript('slider', array('link' =&gt; dgettext('wiki', 'Show on home page'),
+                                                          'id' =&gt; 'show_on_home_info',
+                                                          'message' =&gt; $msg)));
         $form-&gt;setTab('show_on_home', $tabs++);
 
+        $msg = dgettext('wiki', 'Enabling this setting will allow all visitors to view the wiki.
+                                 When disabled, only registered users can view the wiki.');
         $form-&gt;addCheck('allow_anon_view');
         $form-&gt;setMatch('allow_anon_view', PHPWS_Settings::get('wiki', 'allow_anon_view'));
-        $form-&gt;addTplTag('ALLOW_ANON_VIEW_LABEL',
-                         PHPWS_Help::show_link('wiki', 'allow_anon_view', dgettext('wiki', 'Allow Anonymous Viewing')));
+        $form-&gt;addTplTag('ALLOW_ANON_VIEW_LABEL', javascript('slider', array('link' =&gt; dgettext('wiki', 'Allow anonymous viewing'),
+                                                             'id' =&gt; 'allow_anon_view_info',
+                                                             'message' =&gt; $msg)));
         $form-&gt;setTab('allow_anon_view', $tabs++);
 
+        $msg = dgettext('wiki', 'Enabling this setting will allow all registered users to edit pages.  When disabled, only
+                                 registered users with admin privileges can edit pages. Anonymous visitors can never edit pages.');
         $form-&gt;addCheck('allow_page_edit');
         $form-&gt;setMatch('allow_page_edit', PHPWS_Settings::get('wiki', 'allow_page_edit'));
-        $form-&gt;addTplTag('ALLOW_PAGE_EDIT_LABEL',
-                         PHPWS_Help::show_link('wiki', 'allow_page_edit',
-                         dgettext('wiki', 'Allow all registered users to edit pages')));
+        $form-&gt;addTplTag('ALLOW_PAGE_EDIT_LABEL', javascript('slider', array('link' =&gt; dgettext('wiki',
+                                                                                                'Allow all registered users to edit pages'),
+                                                             'id' =&gt; 'allow_page_edit_info',
+                                                             'message' =&gt; $msg)));
         $form-&gt;setTab('allow_page_edit', $tabs++);
 
+        $msg = dgettext('wiki', 'Enabling this setting will allow all registered users to upload images.  When disabled, only
+                                 registered users with admin privileges can upload images.  Anonymous visitors can never upload images.');
         $form-&gt;addCheck('allow_image_upload');
         $form-&gt;setMatch('allow_image_upload', PHPWS_Settings::get('wiki', 'allow_image_upload'));
-        $form-&gt;addTplTag('ALLOW_IMAGE_UPLOAD_LABEL',
-                         PHPWS_Help::show_link('wiki', 'allow_image_upload',
-                         dgettext('wiki', 'Allow all registered users to upload images')));
+        $form-&gt;addTplTag('ALLOW_IMAGE_UPLOAD_LABEL', javascript('slider',
+                                                                array('link' =&gt; dgettext('wiki',
+                                                                                         'Allow all registered users to upload images'),
+                                                                'id' =&gt; 'allow_image_upload_info',
+                                                                'message' =&gt; $msg)));
         $form-&gt;setTab('allow_image_upload', $tabs++);
 
+        $msg = dgettext('wiki', 'When enabled, the page text will also be parsed by the BBCode parser instead of just the Text_Wiki
+                                 parser. Keep in mind that everything you can do with BBCode can be done with wikitax.');
         $form-&gt;addCheck('allow_bbcode');
         $form-&gt;setMatch('allow_bbcode', PHPWS_Settings::get('wiki', 'allow_bbcode'));
-        $form-&gt;addTplTag('ALLOW_BBCODE_LABEL',
-                         PHPWS_Help::show_link('wiki', 'allow_bbcode', dgettext('wiki', 'Enable BBCode parser')));
+        $form-&gt;addTplTag('ALLOW_BBCODE_LABEL', javascript('slider', array('link' =&gt; dgettext('wiki', 'Enable BBCode parser'),
+                                                          'id' =&gt; 'allow_bbcode_info',
+                                                          'message' =&gt; $msg)));
         $form-&gt;setTab('allow_bbcode', $tabs++);
 
+        $msg = dgettext('wiki', 'When enabled, the extended character set will be supported for wiki page names.  For example,
+                                 German umlauts would be allowed in a wiki page name.');
         $form-&gt;addCheck('ext_chars_support');
         $form-&gt;setMatch('ext_chars_support', PHPWS_Settings::get('wiki', 'ext_chars_support'));
-        $form-&gt;addTplTag('EXT_CHARS_SUPPORT_LABEL',
-                         PHPWS_Help::show_link('wiki', 'ext_chars_support',
-                         dgettext('wiki', 'Enable extended character set for wiki page names')));
+        $form-&gt;addTplTag('EXT_CHARS_SUPPORT_LABEL', javascript('slider', array('link' =&gt; dgettext('wiki', 'Enable extended character set'),
+                                                               'id' =&gt; 'ext_chars_support_info',
+                                                               'message' =&gt; $msg)));
         $form-&gt;setTab('ext_chars_support', $tabs++);
 
+        $msg = dgettext('wiki', 'Enabling this setting will add the current wiki page title to the site title which appears in the
+                                 browser title bar.  The site title is sometimes used in themes meaning this setting would add the
+                                 wiki page title to the theme as well.');
         $form-&gt;addCheck('add_to_title');
         $form-&gt;setMatch('add_to_title', PHPWS_Settings::get('wiki', 'add_to_title'));
-        $form-&gt;addTplTag('ADD_TO_TITLE_LABEL',
-                         PHPWS_Help::show_link('wiki', 'add_to_title', dgettext('wiki', 'Add wiki page title to site title')));
+        $form-&gt;addTplTag('ADD_TO_TITLE_LABEL', javascript('slider', array('link' =&gt; dgettext('wiki', 'Add wiki page title to site title'),
+                                                          'id' =&gt; 'add_to_title_info',
+                                                          'message' =&gt; $msg)));
         $form-&gt;setTab('add_to_title', $tabs++);
 
+        $msg = dgettext('wiki', 'Enabling this setting will format the current wiki page title before being displayed anywhere
+                                 (excluding the wiki page text) by the module.  The page title in the page text will have to be formatted
+                                 manually if you do not like the standard WordsSmashedTogether default. The automatic formatting by the
+                                 module will add spaces to the WikiPageTitle, making it Wiki Page Title.&lt;br /&gt;&lt;br /&gt;Remember, you will
+                                 still have to refer to the page as WikiPageTitle in the page text, but you can change its appearance by
+                                 using [WikiPageTitle Your Formatted Title Here].&lt;br /&gt;&lt;br /&gt;If this is confusing to you or others, it is
+                                 recommended to not use this feature.');
         $form-&gt;addCheck('format_title');
         $form-&gt;setMatch('format_title', PHPWS_Settings::get('wiki', 'format_title'));
-        $form-&gt;addTplTag('FORMAT_TITLE_LABEL',
-                         PHPWS_Help::show_link('wiki', 'format_title',
-                         dgettext('wiki', 'Format the wiki page title before displaying')));
+        $form-&gt;addTplTag('FORMAT_TITLE_LABEL', javascript('slider', array('link' =&gt; dgettext('wiki',
+                                                                                             'Format the wiki page title before displaying'),
+                                                          'id' =&gt; 'format_title_info',
+                                                          'message' =&gt; $msg)));
         $form-&gt;setTab('format_title', $tabs++);
 
+        $msg = dgettext('wiki', 'Enabling this setting will show the &lt;b&gt;Last modified by&lt;/b&gt; information on each wiki page. However,
+                                 if UPDATED_INFO tag is not in the view template, the information will never show up, regardless of how
+                                 this option is set.');
         $form-&gt;addCheck('show_modified_info');
         $form-&gt;setMatch('show_modified_info', PHPWS_Settings::get('wiki', 'show_modified_info'));
-        $form-&gt;addTplTag('SHOW_MODIFIED_INFO_LABEL',
-                         PHPWS_Help::show_link('wiki', 'show_modified_info', dgettext('wiki', 'Show page modified information')));
+        $form-&gt;addTplTag('SHOW_MODIFIED_INFO_LABEL', javascript('slider', array('link' =&gt; dgettext('wiki', 'Show page modified information'),
+                                                                'id' =&gt; 'show_modified_info_info',
+                                                                'message' =&gt; $msg)));
         $form-&gt;setTab('show_modified_info', $tabs++);
 
+        $msg = dgettext('wiki', 'By default, when comparing two page revisions, the changes will be presented in a two column format.
+                                 On fixed width layouts this could cause excessive horizontal scrolling.  Setting this option will change
+                                 the comparison to a single column format.');
         $form-&gt;addCheck('diff_type');
         $form-&gt;setMatch('diff_type', (PHPWS_Settings::get('wiki', 'diff_type') == 'one_col'));
-        $form-&gt;addTplTag('DIFF_TYPE_LABEL',
-                         PHPWS_Help::show_link('wiki', 'diff_type', dgettext('wiki', 'Use single column diff')));
+        $form-&gt;addTplTag('DIFF_TYPE_LABEL', javascript('slider', array('link' =&gt; dgettext('wiki', 'Use single column diff'),
+                                                       'id' =&gt; 'diff_type_info',
+                                                       'message' =&gt; $msg)));
         $form-&gt;setTab('diff_type', $tabs++);
 
+        $msg = dgettext('wiki', 'Enabling this setting will email a notification to the Wiki Administrator email address on every page edit.');
         $form-&gt;addCheck('monitor_edits');
         $form-&gt;setMatch('monitor_edits', PHPWS_Settings::get('wiki', 'monitor_edits'));
-        $form-&gt;addTplTag('MONITOR_EDITS_LABEL',
-                         PHPWS_Help::show_link('wiki', 'monitor_edits', dgettext('wiki', 'Monitor Edits')));
+        $form-&gt;addTplTag('MONITOR_EDITS_LABEL', javascript('slider', array('link' =&gt; dgettext('wiki', 'Monitor Edits'),
+                                                           'id' =&gt; 'monitor_edits_info',
+                                                           'message' =&gt; $msg)));
         $form-&gt;setTab('monitor_edits', $tabs++);
 
+        $msg = dgettext('wiki', 'Enter in the email address of the Wiki administrator.  If this field is left blank or has an invalid email
+                                 address, then the change will be ignored.');
         $form-&gt;addText('admin_email', PHPWS_Settings::get('wiki', 'admin_email'));
         $form-&gt;setSize('admin_email', 25);
-        $form-&gt;addTplTag('ADMIN_EMAIL_LABEL',
-                         PHPWS_Help::show_link('wiki', 'admin_email', dgettext('wiki', 'Wiki Admin Email')));
+        $form-&gt;addTplTag('ADMIN_EMAIL_LABEL', javascript('slider', array('link' =&gt; dgettext('wiki', 'Wiki Admin Email'),
+                                                         'id' =&gt; 'admin_email_info',
+                                                         'message' =&gt; $msg)));
         $form-&gt;setTab('admin_email', $tabs++);
 
+        $msg = dgettext('wiki', 'This is the body text of the email sent when wiki pages are edited.  HTML will be stripped out as the email
+                                 will be sent as Plain Text.  You can use variables [page] and [url] to represent the name of the wiki page
+                                 and the url to view the page, respectively.');
         $form-&gt;addTextArea('email_text', PHPWS_Settings::get('wiki', 'email_text'));
         $form-&gt;setWidth('email_text', '80%');
         $form-&gt;setRows('email_text', 5);
-        $form-&gt;addTplTag('EMAIL_TEXT_LABEL',
-                         PHPWS_Help::show_link('wiki', 'email_text', dgettext('wiki', 'Email Notification Text')));
+        $form-&gt;addTplTag('EMAIL_TEXT_LABEL', javascript('slider', array('link' =&gt; dgettext('wiki', 'Email Notification Text'),
+                                                        'id' =&gt; 'email_text_info',
+                                                        'message' =&gt; $msg)));
         $form-&gt;setTab('email_text', $tabs++);
 
+        $msg = dgettext('wiki', 'The default page to display when no instructions are passed to the Wiki module.');
         $form-&gt;addText('default_page', PHPWS_Settings::get('wiki', 'default_page'));
         $form-&gt;setSize('default_page', 25, 100);
-        $form-&gt;addTplTag('DEFAULT_PAGE_LABEL',
-                         PHPWS_Help::show_link('wiki', 'default_page', dgettext('wiki', 'Default page')));
+        $form-&gt;addTplTag('DEFAULT_PAGE_LABEL', javascript('slider', array('link' =&gt; dgettext('wiki', 'Default page'),
+                                                          'id' =&gt; 'default_page_info',
+                                                          'message' =&gt; $msg)));
         $form-&gt;setTab('default_page', $tabs++);
 
+        $msg = dgettext('wiki', 'This controls where external pages will appear. _blank opens the new page in a new window. _parent is
+                                 used in the situation where a frameset file is nested inside another frameset file. A link in one of
+                                 the inner frameset documents which uses _parent will load the new page where the inner frameset file had
+                                 been. If the current page\'s frameset file does not have any parent, then _parent works exactly like
+                                 _top - the new document is loaded in the full window. _self puts the new page in the same window and
+                                 frame as the current page.');
         $options = array('_blank'=&gt;'_blank', '_parent'=&gt;'_parent', '_self'=&gt;'_self', '_top'=&gt;'_top');
         $form-&gt;addSelect('ext_page_target', $options);
         $form-&gt;setMatch('ext_page_target', PHPWS_Settings::get('wiki', 'ext_page_target'));
-        $form-&gt;addTplTag('EXT_PAGE_TARGET_LABEL',
-                         PHPWS_Help::show_link('wiki', 'ext_page_target', dgettext('wiki', 'Target for external links')));
+        $form-&gt;addTplTag('EXT_PAGE_TARGET_LABEL', javascript('slider', array('link' =&gt; dgettext('wiki', 'Target for external links'),
+                                                             'id' =&gt; 'ext_page_target_info',
+                                                             'message' =&gt; $msg)));
         $form-&gt;setTab('ext_page_target', $tabs++);
 
         $form-&gt;addCheck('immutable_page');
@@ -195,15 +250,15 @@ class WikiSettings {
         $tags = $form-&gt;getTemplate();
         $tags['BACK'] = PHPWS_Text::moduleLink(dgettext('wiki', 'Back to Wiki'), 'wiki');
         $tags['MESSAGE']        = WikiManager::getMessage();
-        $tags['MENU_ITEMS_LABEL'] = PHPWS_Help::show_link('wiki', 'menu_items', dgettext('wiki', 'Menu Items'));
-        $tags['DISCUSSION_SECTION_LABEL'] = PHPWS_Help::show_link('wiki', 'discussion', dgettext('wiki', 'Discussion'));
+        $tags['MENU_ITEMS_LABEL'] = dgettext('wiki', 'Menu Items');
+        $tags['DISCUSSION_SECTION_LABEL'] = dgettext('wiki', 'Discussion');
         $tags['SETTINGS_LABEL'] = dgettext('wiki', 'Settings');
         $tags['PAGES_LABEL']    = dgettext('wiki', 'Wiki Pages');
         $tags['TITLE']          = dgettext('wiki', 'Page Name');
         $tags['UPDATED']        = dgettext('wiki', 'Updated');
         $tags['VERSION']        = dgettext('wiki', 'Version');
         $tags['HITS']           = dgettext('wiki', 'Hits');
-        $tags['ORPHANED']       = PHPWS_Help::show_link('wiki', 'orphaned_pages', dgettext('wiki', 'Orphaned'));
+        $tags['ORPHANED']       = dgettext('wiki', 'Orphaned');
         $tags['ACTIONS']        = dgettext('wiki', 'Actions');
 
         $pager = new DBPager('wiki_pages', 'WikiPage');</diff>
      <filename>class/WikiSettings.php</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,8 @@
 
 ========================== PHPWEBSITE 1.X.X RELEASES ==========================
 
-    BUG #6: Skandinavian letters (see http://pear.php.net/bugs/bug.php?id=3881)
+    BUG #7: Removed references to broken help module.
+    BUG #6: Fix Skandinavian letters support. (see http://bit.ly/2OyZYe)
 
 *wiki-1.1.2 (26 Apr 2009)
 </diff>
      <filename>docs/ChangeLog</filename>
    </modified>
    <modified>
      <diff>@@ -3,8 +3,8 @@
 
 ===== IMPORTANT =====
 
-This version of Wiki for phpWebSite requires phpWebSite 1.2.0 or higher. You
-have to install phpWebSite &gt;= 1.2.0 first - earlier versions of phpWebSite
+This version of Wiki for phpWebSite requires phpWebSite 1.6.0 or higher. You
+have to install phpWebSite &gt;= 1.6.0 first - earlier versions of phpWebSite
 will not work. If you are running phpWebSite 0.10.x, grab the latest 0.x.x
 version of this module.
 </diff>
      <filename>docs/INSTALL</filename>
    </modified>
    <modified>
      <diff>@@ -21,7 +21,7 @@ msgid &quot;&quot;
 msgstr &quot;&quot;
 &quot;Project-Id-Version: PACKAGE VERSION\n&quot;
 &quot;Report-Msgid-Bugs-To: \n&quot;
-&quot;POT-Creation-Date: 2008-03-29 14:48-0500\n&quot;
+&quot;POT-Creation-Date: 2009-06-19 09:53-0500\n&quot;
 &quot;PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n&quot;
 &quot;Last-Translator: FULL NAME &lt;EMAIL@ADDRESS&gt;\n&quot;
 &quot;Language-Team: LANGUAGE &lt;LL@li.org&gt;\n&quot;
@@ -59,9 +59,6 @@ msgstr &quot;&quot;
 msgid &quot;Admin&quot;
 msgstr &quot;&quot;
 
-msgid &quot;Allow Anonymous Viewing&quot;
-msgstr &quot;&quot;
-
 msgid &quot;Allow all registered users to edit pages&quot;
 msgstr &quot;&quot;
 
@@ -71,6 +68,9 @@ msgstr &quot;&quot;
 msgid &quot;Allow anonymous discussion&quot;
 msgstr &quot;&quot;
 
+msgid &quot;Allow anonymous viewing&quot;
+msgstr &quot;&quot;
+
 msgid &quot;Are you sure you want to delete this image?&quot;
 msgstr &quot;&quot;
 
@@ -98,6 +98,14 @@ msgstr &quot;&quot;
 msgid &quot;Browse and maintain the Wiki on this site.&quot;
 msgstr &quot;&quot;
 
+msgid &quot;&quot;
+&quot;By default, when comparing two page revisions, the changes will be presented &quot;
+&quot;in a two column format.\n&quot;
+&quot;                                 On fixed width layouts this could cause &quot;
+&quot;excessive horizontal scrolling.  Setting this option will change\n&quot;
+&quot;                                 the comparison to a single column format.&quot;
+msgstr &quot;&quot;
+
 msgid &quot;Cancel&quot;
 msgstr &quot;&quot;
 
@@ -170,7 +178,75 @@ msgstr &quot;&quot;
 msgid &quot;Enable discussion for registered users&quot;
 msgstr &quot;&quot;
 
-msgid &quot;Enable extended character set for wiki page names&quot;
+msgid &quot;Enable extended character set&quot;
+msgstr &quot;&quot;
+
+msgid &quot;&quot;
+&quot;Enabling this setting will add the current wiki page title to the site title &quot;
+&quot;which appears in the\n&quot;
+&quot;                                 browser title bar.  The site title is &quot;
+&quot;sometimes used in themes meaning this setting would add the\n&quot;
+&quot;                                 wiki page title to the theme as well.&quot;
+msgstr &quot;&quot;
+
+msgid &quot;&quot;
+&quot;Enabling this setting will allow all registered users to edit pages.  When &quot;
+&quot;disabled, only\n&quot;
+&quot;                                 registered users with admin privileges can &quot;
+&quot;edit pages. Anonymous visitors can never edit pages.&quot;
+msgstr &quot;&quot;
+
+msgid &quot;&quot;
+&quot;Enabling this setting will allow all registered users to upload images.  &quot;
+&quot;When disabled, only\n&quot;
+&quot;                                 registered users with admin privileges can &quot;
+&quot;upload images.  Anonymous visitors can never upload images.&quot;
+msgstr &quot;&quot;
+
+msgid &quot;&quot;
+&quot;Enabling this setting will allow all visitors to view the wiki.\n&quot;
+&quot;                                 When disabled, only registered users can &quot;
+&quot;view the wiki.&quot;
+msgstr &quot;&quot;
+
+msgid &quot;&quot;
+&quot;Enabling this setting will email a notification to the Wiki Administrator &quot;
+&quot;email address on every page edit.&quot;
+msgstr &quot;&quot;
+
+msgid &quot;&quot;
+&quot;Enabling this setting will format the current wiki page title before being &quot;
+&quot;displayed anywhere\n&quot;
+&quot;                                 (excluding the wiki page text) by the &quot;
+&quot;module.  The page title in the page text will have to be formatted\n&quot;
+&quot;                                 manually if you do not like the standard &quot;
+&quot;WordsSmashedTogether default. The automatic formatting by the\n&quot;
+&quot;                                 module will add spaces to the &quot;
+&quot;WikiPageTitle, making it Wiki Page Title.&lt;br /&gt;&lt;br /&gt;Remember, you will\n&quot;
+&quot;                                 still have to refer to the page as &quot;
+&quot;WikiPageTitle in the page text, but you can change its appearance by\n&quot;
+&quot;                                 using [WikiPageTitle Your Formatted Title &quot;
+&quot;Here].&lt;br /&gt;&lt;br /&gt;If this is confusing to you or others, it is\n&quot;
+&quot;                                 recommended to not use this feature.&quot;
+msgstr &quot;&quot;
+
+msgid &quot;&quot;
+&quot;Enabling this setting will show the &lt;b&gt;Last modified by&lt;/b&gt; information on &quot;
+&quot;each wiki page. However,\n&quot;
+&quot;                                 if UPDATED_INFO tag is not in the view &quot;
+&quot;template, the information will never show up, regardless of how\n&quot;
+&quot;                                 this option is set.&quot;
+msgstr &quot;&quot;
+
+msgid &quot;&quot;
+&quot;Enabling this setting will show the default wiki page on the home page of &quot;
+&quot;the web site.&quot;
+msgstr &quot;&quot;
+
+msgid &quot;&quot;
+&quot;Enter in the email address of the Wiki administrator.  If this field is left &quot;
+&quot;blank or has an invalid email\n&quot;
+&quot;                                 address, then the change will be ignored.&quot;
 msgstr &quot;&quot;
 
 msgid &quot;Error deleting image.&quot;
@@ -425,6 +501,11 @@ msgstr &quot;&quot;
 msgid &quot;Target for external links&quot;
 msgstr &quot;&quot;
 
+msgid &quot;&quot;
+&quot;The default page to display when no instructions are passed to the Wiki &quot;
+&quot;module.&quot;
+msgstr &quot;&quot;
+
 msgid &quot;The following pages link to here&quot;
 msgstr &quot;&quot;
 
@@ -434,6 +515,28 @@ msgstr &quot;&quot;
 msgid &quot;There was an error saving the settings.&quot;
 msgstr &quot;&quot;
 
+msgid &quot;&quot;
+&quot;This controls where external pages will appear. _blank opens the new page in &quot;
+&quot;a new window. _parent is\n&quot;
+&quot;                                 used in the situation where a frameset file &quot;
+&quot;is nested inside another frameset file. A link in one of\n&quot;
+&quot;                                 the inner frameset documents which uses &quot;
+&quot;_parent will load the new page where the inner frameset file had\n&quot;
+&quot;                                 been. If the current page's frameset file &quot;
+&quot;does not have any parent, then _parent works exactly like\n&quot;
+&quot;                                 _top - the new document is loaded in the &quot;
+&quot;full window. _self puts the new page in the same window and\n&quot;
+&quot;                                 frame as the current page.&quot;
+msgstr &quot;&quot;
+
+msgid &quot;&quot;
+&quot;This is the body text of the email sent when wiki pages are edited.  HTML &quot;
+&quot;will be stripped out as the email\n&quot;
+&quot;                                 will be sent as Plain Text.  You can use &quot;
+&quot;variables [page] and [url] to represent the name of the wiki page\n&quot;
+&quot;                                 and the url to view the page, respectively.&quot;
+msgstr &quot;&quot;
+
 msgid &quot;This page does not exist yet.&quot;
 msgstr &quot;&quot;
 
@@ -536,6 +639,20 @@ msgstr &quot;&quot;
 msgid &quot;What links here&quot;
 msgstr &quot;&quot;
 
+msgid &quot;&quot;
+&quot;When enabled, the extended character set will be supported for wiki page &quot;
+&quot;names.  For example,\n&quot;
+&quot;                                 German umlauts would be allowed in a wiki &quot;
+&quot;page name.&quot;
+msgstr &quot;&quot;
+
+msgid &quot;&quot;
+&quot;When enabled, the page text will also be parsed by the BBCode parser instead &quot;
+&quot;of just the Text_Wiki\n&quot;
+&quot;                                 parser. Keep in mind that everything you &quot;
+&quot;can do with BBCode can be done with wikitax.&quot;
+msgstr &quot;&quot;
+
 msgid &quot;Wiki&quot;
 msgstr &quot;&quot;
 </diff>
      <filename>locale/en_US/LC_MESSAGES/wiki.po</filename>
    </modified>
  </modified>
  <removed type="array">
    <removed>
      <filename>conf/help.ini</filename>
    </removed>
  </removed>
  <parents type="array">
    <parent>
      <id>b5f73f7f4eb2fbb7e86800c09f2ee84e50bc1e08</id>
    </parent>
  </parents>
  <author>
    <name>Greg Meiste</name>
    <email>greg.meiste@gmail.com</email>
  </author>
  <url>http://github.com/meisteg/wiki/commit/baa4d07598804faea808a9cfd4c7a7cb1ea1930d</url>
  <id>baa4d07598804faea808a9cfd4c7a7cb1ea1930d</id>
  <committed-date>2009-06-19T08:24:00-07:00</committed-date>
  <authored-date>2009-06-19T08:24:00-07:00</authored-date>
  <message>Removed references to broken help module. Closes gh-7</message>
  <tree>d94057e3cbd122e8dccc16d0e61fd31a2d42ad5f</tree>
  <committer>
    <name>Greg Meiste</name>
    <email>greg.meiste@gmail.com</email>
  </committer>
</commit>
