(→Site) |
|||
Line 1: | Line 1: | ||
== Site == | == Site == | ||
− | * <strike>Remove "index.php" from the URL.</strike> | + | * <strike>Remove "index.php" from the URL.</strike> |
− | * Possibly point the root ("/") to [[Main_Page]], redirecting the logo and the navigation box to it. | + | Followed by: http://www.mediawiki.org/wiki/Manual:Short_URL/wiki.example.com/Page_title--Enabling_a_wiki_using_Apache_Rewrite |
+ | * <strike>Possibly point the root ("/") to [[Main_Page]], redirecting the logo and the navigation box to it.</strike> | ||
+ | skins/MonoBook.php add in line 73:<pre><?php $this->data['nav_urls']['mainpage']['href'] = "/"; ?></pre> | ||
+ | skins/MonoBook.php, line 161, replace: <pre><?php echo htmlspecialchars($val['href']) ?></pre> with: <pre> <?php echo ($val['href'] == "/Main_Page") ? "/" : htmlspecialchars($val['href']); ?></pre> | ||
* <strike>Remove the PDF extension.</strike> | * <strike>Remove the PDF extension.</strike> | ||
+ | Commented out <pre>require_once $IP . "/extensions/wikipdf/wikipdf.php"; </pre> in LocalSettings.php | ||
== FCKeditor 2.x - [[FCKeditor 2.x/Users Guide|User's Guide]]<br> == | == FCKeditor 2.x - [[FCKeditor 2.x/Users Guide|User's Guide]]<br> == |
Revision as of 12:03, 18 December 2007
Site
-
Remove "index.php" from the URL.
Followed by: http://www.mediawiki.org/wiki/Manual:Short_URL/wiki.example.com/Page_title--Enabling_a_wiki_using_Apache_Rewrite
-
Possibly point the root ("/") to Main_Page, redirecting the logo and the navigation box to it.
<?php $this->data['nav_urls']['mainpage']['href'] = "/"; ?>skins/MonoBook.php, line 161, replace:
<?php echo htmlspecialchars($val['href']) ?>with:
<?php echo ($val['href'] == "/Main_Page") ? "/" : htmlspecialchars($val['href']); ?>
-
Remove the PDF extension.
require_once $IP . "/extensions/wikipdf/wikipdf.php";in LocalSettings.php
FCKeditor 2.x - User's Guide
-
Create "Introduction to the User's Guide" as the first section in the guide.(needs review) -
Replace textual examples with screenshots. -
InSpell Checking, introduce ieSpell, explaining the the spell checker depends on the editor settings.(need review) -
InCompatibilityadd a section for "Incompatible Browsers", explaining what happens on those browsers intead. (need review) -
"Anchors, Links and E-Mails" should be renamed to "Links, E-Mails and Anchors" (most used first). The page structure should follow the same order. -
Rearange the Formatting page using this order:-
Bold, italic, underlined -
Styles -
Text layout and format -
Fonts -
Size and color -
Subscript and superscript -
Templates
-
-
Move "Templates" fromText Formattingto a dedicated section.