Changes between Version 13 and Version 14 of CkEditorPlugin


Ignore:
Timestamp:
May 15, 2015, 3:24:55 PM (9 years ago)
Author:
figaro
Comment:

Cosmetic changes

Legend:

Unmodified
Added
Removed
Modified
  • CkEditorPlugin

    v13 v14  
    2626
    2727Disclaimer:
    28  - Does not co-exist with TracWysiwygPlugin, have only one of them enabled.
     28 - Does not co-exist with TracWysiwygPlugin: ensure that only one of them is enabled if both are present in your environment.
    2929 - When using the `html_wrapper` mode and editing an existing wiki page, the page will be rendered in HTML upon save (macros are lost, etc.)
    3030
     
    5050
    5151Install the plugin:
    52 {{{
    53 #!sh
     52{{{#!sh
    5453easy_install http://trac-hacks.org/svn/ckeditorplugin/trunk
    5554}}}
    5655
    5756Get the CKEditor package and deploy it in a URL-accessible path, e.g. the `htdocs` directory of your Trac environmemt:
    58 {{{
    59 #!sh
     57{{{#!sh
    6058mkdir /path/to/trac-env/htdocs/js
    6159svn checkout http://svn.ckeditor.com/CKEditor/releases/stable /path/to/trac-env/htdocs/js/ckeditor
    6260}}}
    6361
    64 Enable it from the Plugins section of the Administration panel, or by adding the following to the `[components]` section of your `trac.ini`:
    65 {{{
    66 #!ini
     62Enable it from the Plugins section of the Administration panel, or by adding the following to the `[components]` section of your `trac.ini` file:
     63{{{#!ini
    6764[components]
    6865ckintegration.* = enabled
    6966}}}
    7067
    71 === Configuration
     68== Configuration
    7269
    73 The following options can be specified in the `[ckeditor]` section of your `trac.ini`:
     70The following options can be specified in the `[ckeditor]` section of your `trac.ini` file:
    7471
    7572'''code_styles'''
     
    9289''default value:'' `site/js/ckeditor/ckeditor.js`
    9390
    94 You can also type `[[TracIni(ckedior)]]` in any Wiki-Page to get a list of possible options and their descriptions; see also description in plugins-panel.
     91You can also type `[[TracIni(ckeditor)]]` in any Wiki-Page to get a list of possible options and their descriptions. See also description in plugins-panel.
    9592
    96 == Example ==
     93== Example
    9794
    9895Sample configuration of a `trac.ini` file (default values shown):
    99 {{{
    100 #!ini
     96{{{#!ini
    10197[ckeditor]
    10298code_styles = cpp, csharp, java, js, python, sql, default, xml
     
    107103== Known Issues / Limitations
    108104
    109  - marker and text color is not working in headers (see [http://groups.google.com/group/trac-dev/browse_thread/thread/a6d12d574c3544ca Google-Groups])
    110  - when inserting an image, only full path to image is working
    111  - when entering a link manually, it is printed with an exclemation mark, see #9562
     105 - Marker and text color is not working in headers (see [http://groups.google.com/group/trac-dev/browse_thread/thread/a6d12d574c3544ca Google-Groups])
     106 - When inserting an image, only full path to image is working
     107 - When entering a link manually, it is printed with an exclemation mark, see #9562
    112108 - Escaping of CamelCase words is only working the first time, see #9563
    113  - copying lists from MS Word (tested with Word 2003) is not always working completely (in some browsers it the deep intention is lost)
     109 - Copying lists from MS Word (tested with Word 2003) is not always working completely (in some browsers it the deep intention is lost).
    114110
    115111== To do