Difference between revisions of "TODO"

This website contains links to software which is either no longer maintained or will be supported only until the end of 2019 (CKFinder 2). For the latest documentation about current CKSource projects, including software like CKEditor 4/CKEditor 5, CKFinder 3, Cloud Services, Letters, Accessibility Checker, please visit the new documentation website.

If you look for an information about very old versions of CKEditor, FCKeditor and CKFinder check also the CKEditor forum, which was closed in 2015. If not, please head to StackOverflow for support.

(Site)
Line 25: Line 25:
 
** <strike>Templates</strike>
 
** <strike>Templates</strike>
 
* <strike>Move "Templates" from</strike>[[FCKeditor 2.x/Users Guide/Common Tasks/Text Formatting|<strike>Text Formatting</strike>]]<strike>to a dedicated section</strike>.<br>
 
* <strike>Move "Templates" from</strike>[[FCKeditor 2.x/Users Guide/Common Tasks/Text Formatting|<strike>Text Formatting</strike>]]<strike>to a dedicated section</strike>.<br>
 +
 +
== CKFinder - [[CKFinder|User's Guide]]==
 +
 +
* Quick Start (enabling, license, baseUrl, baseDir)
 +
* Access Control
 +
* Images
 +
** Thumbnails
 +
** Scaling
 +
* Resource Types
 +
** Built-in resource types (and their relation to FCKeditor)
 +
** Adding new resource type
 +
* Security
 +
** Double File Extension (Apache issue)
 +
** Image Uploads (validating image size)
 +
** Html Extensions (to prevent against XSS File Header injection)
 +
* Miscelanous (actually for now in PHP only: PHP doesn't support UTF-8 natively, that's why FilesystemEncoding exists in config.php. Linux stores file names as UTF-8, so we are ok there... but on Windows we have more complicated situation. Try to upload a files with chinese and polish characters. Change FilesystemEncoding to see the difference (Make sure that you have enabled iconv in php.ini - modify xampp/apache/bin/php.ini + restart Apache)).

Revision as of 09:58, 19 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.
skins/MonoBook.php add in line 73:
<?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.
Commented out
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.

CKFinder - User's Guide

  • Quick Start (enabling, license, baseUrl, baseDir)
  • Access Control
  • Images
    • Thumbnails
    • Scaling
  • Resource Types
    • Built-in resource types (and their relation to FCKeditor)
    • Adding new resource type
  • Security
    • Double File Extension (Apache issue)
    • Image Uploads (validating image size)
    • Html Extensions (to prevent against XSS File Header injection)
  • Miscelanous (actually for now in PHP only: PHP doesn't support UTF-8 natively, that's why FilesystemEncoding exists in config.php. Linux stores file names as UTF-8, so we are ok there... but on Windows we have more complicated situation. Try to upload a files with chinese and polish characters. Change FilesystemEncoding to see the difference (Make sure that you have enabled iconv in php.ini - modify xampp/apache/bin/php.ini + restart Apache)).