9 date 2008.08.10.15.02.42; author TWikiContributor; state Exp;
14 date 2008.08.03.22.17.50; author TWikiContributor; state Exp;
19 date 2008.01.22.03.21.34; author TWikiContributor; state Exp;
24 date 2007.01.16.04.12.03; author TWikiContributor; state Exp;
29 date 2006.10.25.00.22.00; author TWikiContributor; state Exp;
34 date 2006.06.25.16.26.33; author TWikiContributor; state Exp;
39 date 2006.04.01.05.55.38; author TWikiContributor; state Exp;
44 date 2006.02.01.12.01.24; author TWikiContributor; state Exp;
59 @---+!! Wysiwyg Plugin
61 * Set SHORTDESCRIPTION = Translator framework for Wysiwyg editors
63 <!-- Do _not_ attempt to edit this topic; it is auto-generated. Please add comments/questions/remarks to the Dev topic instead. -->
66 Support for the integration of WYSIWYG (What-You-See-Is-What-You-Get) editors. On its own, the only thing this plugin gives you is a stand-alone HTML to TWiki translator script. For WYSIWYG editing in TWiki, you will also need to install a specific editor package such as TWiki:Plugins.KupuEditorContrib or TWiki:Plugins.WikiwygContrib.
68 This plugin provides a generic framework that supports editing of TWiki topics using any browser-based HTML editor. It works by transforming TML (TWiki Meta Language) into HTML for the editor, and then transforming HTML back into TML on save.
73 * Supports the input of malformed HTML
74 * Full round-trip (TML -> XHTML -> TWiki syntax)
75 * Framework is editor-agnostic
78 ---+++ What's in the package
79 The package includes the following pieces:
80 * TML (TWiki syntax) to HTML translator
81 * HTML to TML translator (with stand-alone script)
82 * Generic TWiki plugin for automating the translation during editing
85 The plugin works by translating the topic text into HTML when someone edits a topic. The HTML is then fed to the WYSIWYG editor. On save, the edited HTML is run through the reverse translation before saving to the topic. TWiki syntax is used in preference to HTML in the stored topic wherever possible, though HTML may be used if the translator can't find a suitable TML equivalent..
87 The default rendering that TWiki uses to generate HTML for display in browsers is 'lossy' - information in the TWiki syntax is lost in the HTML output, and a round-trip (recovering the original TWiki syntax from the HTML) is impossible. To solve this problem the plugin instead uses its own translation of TWiki syntax to XHTML. The generated XHTML is annotated with CSS classes that support the accurate recovery of the original TWiki syntax.
89 _Before you ask the obvious question, yes, the translator *could* be used to replace the TWiki rendering pipeline for generating HTML pages. In fact, the translator is taken almost directly from the implementation of the rendering pipeline for the TWiki-4 release_
91 Translation of the HTML back to TWiki syntax uses the CPAN:HTML::Parser. This parser is used in preference to a more modern XML parser, because the WYSIWYG editor may not generate fully compliant XHTML. A strict parser would risk losing content. CPAN:HTML::Parser is better at handling malformed HTML.
93 There is also the advantage that the translator can be used to *import* HTML from other sources - for example, existing web pages. Due to the simple nature of TWiki syntax and the potential complexity of web pages, this translation is often lossy - i.e there will be HTML features that can be entered by editors that will be lost in this translation step. This is especially noticeable with HTML tables.
95 ---+++ Using the translators from Perl scripts
97 Both translators can be used directly from Perl scripts, for example to build your own stand-alone translators.
99 A stand-alone convertor script for HTML to TWiki is included in the installation. It can be found in =tools/html2tml.pl=.
101 ---+++ Integrating a HTML Editor
102 The plugin can be used to integrate an HTML editor in a number of different ways.
103 1 The HTML for the content-to-be-edited can be generated directly in the standard edit template.
104 1 The HTML for the content-to-be-edited can be generated directly in a specialised edit template.
105 1 A URL can be used to fetch the content-to-be-edited from the server, for use in an IFRAME.
106 1 REST handlers can be called from Javacript to convert content.
108 ---++++ Generating content directly in the standard edit template
109 This is the technique used by WYSIWYG editors that can sit on top of HTML
110 textareas, such as !TinyMCE. The topic content is pre-converted to HTML before inclusion in the standard edit template. These editors use plugins that have a =beforeEditHandler= and an =afterEditHandler=. These handlers are responsible for the conversion of topic text to HTML, and post-conversion of HTML back to TML.
112 1 Editor-specific plugin =beforeEditHandler= converts topic content to HTML by calling =TWiki::Plugins::WysiwygPlugin::TranslateTML2HTML=.
113 1 User edits and saves
114 1 Editor-specific plugin =afterEditHandler= converts HTML back to TML by calling =TWiki::Plugins::WysiwygPlugin::TranslateHTML2TML=.
115 * !WysiwygPlugin should *not* be enabled in =configure=.
116 * =WYSIWYGPLUGIN_WYSIWYGSKIN= should *not* be set.
117 * Your plugin should set the =textareas_hijacked= context id, to signal to skins to suppress their textarea manipulation functions.
118 This is the recommended integration technique, if your editor can support it.
120 ---++++ Generating content directly in a specialised edit template
121 This technique is useful when the editor requires the topic content in a variety of different formats at the same time. In this scenario the editor uses a custom edit template. The WYSIWYG content is made available for instantiation in that template in a number of different formats. =WYSIWYGPLUGIN_WYSIWYGSKIN= *must* be set for this to work.
123 The flow of control is as follows:
124 1 User hits "edit" with the skin (or cover) set the same as =WYSIWYGPLUGIN_WYSIWYGSKIN=.
125 1 The !WysiwygPlugin =beforeEditHandler= determines if the topic is WYSIWYG editable, and vetos the edit if not by redirecting to the standard edit skin.
127 1 The =edit= template containing the JS editor is instantiated.
128 1 The following variables are available for expansion in the template:
129 * =%<nop>WYSIWYG_TEXT%= expands to the HTML of the content-to-be-edited. This is suitable for use in a =textarea=.
130 * =%<nop>JAVASCRIPT_TEXT%= expands to the HTML of the content-to-be-edited in a javascript constant.
131 1 User edits and saves
132 1 The =afterEditHandler= in the !WyswiygPlugin sees that =wysiwyg_edit= is set, which triggers the conversion back to TML.
134 * The HTML form in the edit template *must* include an =<input= called =wysiwyg_edit= and set it to 1, to trigger the conversion from HTML back to TML.
135 * =WYSIWYGPLUGIN_WYSIWYGSKIN= must be set to the name of the skin used for WYSIWYG editing. This is usually the name of the editor e.g. =kupu=.
137 ---++++ Fetching content from a URL
138 In this scenario, the edit template is generated *without* the content-to-be-edited. The content is retrieved from the server using a URL e.g. from an =IFRAME=.
140 The flow of control is as follows:
141 1 As _Generating content directly in a specialised edit template_
142 1 As _Generating content directly in a specialised edit template_
143 1 As _Generating content directly in a specialised edit template_
144 1 When the document loads in the browser, the JS editor invokes a content URL (using an =IFRAME= or a =XmlHttpRequest=) to obtain the HTML document to be edited
145 * The content URL is just a TWiki =view= URL with the =wysiwyg_edit=
147 * The !WysiwygPlugin recognises the =wysiwyg_edit= parameter and uses the
148 TML2HTML translator to prepare the text, which is then returned
149 as =text/plain= to the browser.
150 * Two TWiki variables, =%<nop>OWEB%= and %<nop>OTOPIC%=, can be used in the content URL in the edit template to refer to the source topic for the content.
151 1 After edit handling is as for _Generating content directly in a specialised edit template_
153 ---+++ Other techniques
154 ---++++ Asynchronous saves
155 Editors can use =XmlHttpRequest= to perform saves, by POSTing to the TWiki =save= script with the =wysiwyg_edit= parameter set to =1=. This parameter tells the =beforeSaveHandler= in the !WysiwygPlugin to convert the content back to TML. See %TWIKIWEB%.TWikiScripts for details of the other parameters to the =save= script.
157 Once the save script has completed it responds with a redirect, either to an Oops page if the save failed, or to the appropriate post-save URL (usually a =view=). The editor must be ready to handle this redirect.
159 ---++++ Handling Attachments
160 Attachment uploads can be handled by URL requests from the editor template to the TWiki
161 =upload= script. The =upload= script normally redirects to the containing topic; a behaviour that you usually don't want in an editor! There are two ways to handle this:
162 * If the uploads are done in an =IFRAME= or via =XmlHttpRequest=, then the
163 302 redirect at the end of the upload can simply be ignored.
164 * You can pass =noredirect= to the =upload= script to suppress the redirect. In this case
165 you will get a =text/plain= response of =OK= followed by a message if everything went well, or an error message if it did not.
167 ---++++ REST handlers
168 If you are confident in Javascript you can use REST handlers with =XmlHttpRequest= to convert content from TML to HTML and back again.
170 The plugin defines the following REST handlers:
172 =.../rest/WysiwygPlugin/html2tml?topic=Web.Topic;text=htmltexttotranslate=
174 Converts the HTML text to TML. =topic= *must* be specified.
176 =.../rest/WysiwygPlugin/tml2html?topic=Web.Topic;text=tmltexttotranslate=
178 Converts the TML text to HTML. =topic= *must* be specified. The response is a =text/plain= page of converted content.
180 ---++ Plugin Installation Instructions
181 You do not need to install anything in the browser to use this extension. The following instructions are for the administrator who installs the extension on the server where TWiki is running.
183 Like many other TWiki extensions, this module is shipped with a fully
184 automatic installer script written using the Build<nop>Contrib.
185 * If you have TWiki 4.2 or later, you can install from the =configure= interface (Go to Plugins->Find More Extensions)
186 * See the [[http://twiki.org/cgi-bin/view/Plugins/BuildContribInstallationSupplement][installation supplement]] on TWiki.org for more information.
187 * If you have any problems, then you can still install manually from the command-line:
188 1 Download one of the =.zip= or =.tgz= archives
189 1 Unpack the archive in the root directory of your TWiki installation.
190 1 Run the installer script ( =perl <module>_installer= )
191 1 Run =configure= and enable the module, if it is a plugin.
192 1 Repeat for any missing dependencies.
193 * If you are *still* having problems, then instead of running the installer script:
194 1 Make sure that the file permissions allow the webserver user to access all files.
195 1 Check in any installed files that have existing =,v= files in your existing install (take care *not* to lock the files when you check in)
196 1 Manually edit !LocalSite.cfg to set any configuration variables.
198 %IF{"defined 'SYSTEMWEB'" else="<div class='twikiAlert'>%X% WARNING: SYSTEMWEB is not defined in this TWiki. Please add these definitions to your %MAINWEB%.TWikiPreferences, if they are not already there:<br><pre> * <nop>Set SYSTEMWEB = %<nop>TWIKIWEB%<br> * <nop>Set USERSWEB = %<nop>MAINWEB%</pre></div>"}%
201 ---++ Plugin Configuration Settings
203 ---+++ Translator control
204 %INCLUDE{"%TWIKIWEB%.WysiwygPluginSettings"}%
206 *Implementors note* if you are using your own before/after edit handlers, you can call =TWiki::Plugins::WysiwygPlugin::isWysiwygEditable()= to check these controls.
210 ---+++ Incompatible with "non-standard" syntax
211 WysiwygPlugin is incompatible with plugins that expand non-standard syntax e.g. TWiki:Plugins.MathModePlugin (WysiwygPlugin)
213 Plugins that extend the syntax using TWiki variables, such as =%MYVARIABLE%=, should work fine.
215 ---+++ Overlapping styles
216 Because TWiki uses a "best guess" approach to some formatting, it allows overlapping of tags in a way forbidden by HTML, and it is impossible to guarantee 100% that formating in the original TWiki document will still be there when the same document is loaded and then saved through the WysiwygPlugin. The most obvious case of this is to do with styles. For example, the sentence
218 *bold _bold-italic* italic_
220 is legal in TML, but in HTML is represented by
222 <strong>bold <em>bold-italic</em></strong> <em>italic</em>
224 which gets translated back to TML as
226 *bold _bold-italic_* _italic_
228 which is correct by construction, but does not render correctly in TWiki. This problem is unfortunately unavoidable due to the way TWiki syntax works.
232 This plugin is brought to you by a [[http://wikiring.com][WikiRing <a href="http://wikiring.com"><img src="%ATTACHURLPATH%/wikiringlogo20x20.png" title="WikiRing: Professional Wiki Innovation and Support" /></a>]] partner - working together to improve your wiki experience!
234 Many thanks to the following sponsors for supporting this work:
235 * [[http://ilog.fr][ILOG]]
236 * [[http://www.carrier.com][Carrier Corporation]]
237 * [[http://twiki.net][TWIKI.NET]]
239 | Plugin Author(s): | TWiki:Main.CrawfordCurrie http://www.c-dot.co.uk |
240 | Copyright | © ILOG 2005 http://www.ilog.fr |
241 | License | [[http://www.gnu.org/licenses/gpl.html][GPL (Gnu General Public License)]] |
242 | Plugin Version: | 17359 (11 Aug 2008) |
243 | Change History: | |
244 | 7 Aug 2008 | Fixed TWikibug:Item5707 (mod_perl) |
245 | 3 Aug 2008 | TWiki 4.2.1 release version |
246 | 25 May 2008 | TWikibug:Item5457: TWikibug:Item5528: TWikibug:Item5626: using a debug simulation, I believe I have finally fixed all the complexities of using international character sets with the translator. |
247 | 13 Apr 2008 | TWikibug:Item4946: TWikibug:Item5530: I think I have finally fixed non-iso-8859-1 character sets. Painful. TWikibug:Item5393: removed spurious DIV generated by IE inside LI tags |
248 | 31 Mar 2008 | TWikibug:Item5314: TWikibug:Item5457: Fixed pickaxe mode for editing UTF-8. Characters above 255 are converted to entitites, which is a bit of a PITA, but at least it no longer corrupts topics. |
249 | 28 Mar 2008 | TWikibug:Item5294: fixed angle brackets in plain text and promoted sticky to be higher priority than any other tag, solving several problems in one go |
250 | 24 Jan 2008 | TWikibug:Item5257: remove extra spaces at end of Set lines |
251 | 20 Dec 2007 | TWikibug:Item5022: made TT font size same as verbatim. Had to add a new style to do it, as TMCE didn't want to play with TT or CODE tags. TWikibug:Item5138: post-conversion of 8-bit entities to characters to aid searching etc. |
252 | 19 Dec 2007 | TWikibug:Item4836: make the parser tolerant of META, so pasting OO docs works TWikibug:Item4969: autoclose BR and HR tags TWikibug:Item5132: fixed IMG tags TWikibug:Item5076: fixed line-sensitive TML embedded in tables |
253 | 8 Nov 2007 | TWikibug:Item4923: fixed blocking of table conversion due to empty attributes TWikibug:Item4936: An em embedded in an em was getting eaten TWikibug:Item4817: added typewriter text button TWikibug:Item4850: added font colour controls TWikibug:Item4645: added REST handlers for upload and fetching lists of attachments |
254 | 2 Nov 2007 | TWikibug:Item4903: corrected over-enthusiastive interpretation of ! as an escape |
255 | 21 Oct 2007 | TWikibug:Item4788: fixed unbalanced protect, which could cause loss of protected status TWikibug:Item4811: noautolink *looks* like an HTML construct but in fact is not; the tag is infact an "on-off" switch and does not imply any HTML structure, so cannot be converted to a DIV or a span, so has to be removed. TWikibug:Item4747: added <sticky> to try to overcome limitations in translation TWikibug:Item4831: added increased flexibility in deciding what HTML get converted to TML, and what does not. Analysed all the HTML4 tags to establish initial settings. TWikibug:Item4847: don't call non-existent function with older HTML::Parser releases TWikibug:Item4844: Saving a table from IE didn't convert it back to TML TWikibug:Item4855: table rows generated from TWiki variables were being eaten |
256 | 6 Oct 2007 | TWikibug:Item4700: fixed colspans TWikibug:Item4701: removed extra line between %TABLE and the table TWikibug:Item4705: fixed spacing around literal and verbatim blocks TWikibug:Item4706: merge adjacent verbatim blocks separated only by whitespace TWikibug:Item4712: fixed eating of noautolink and literal TWikibug:Item4763: list items spanning multiple lines fixed TWikibug:Item4867: released tml2html |
257 | 17 Sep 2007 | TWikibug:Item4647: TWikibug:Item4652: problems related to DIV fixed. TWikibug:Item4653: fixed multi-line twiki variables |
258 | 16 Sep 2007 | TWikibug:Item4630: polished up the way the secret string is done, to ensure synch between perl and JS. Item4622: added UTF-8 handling steps that fixup malformed UTF8 strings before presenting them to the editor (saves Moz) and stops the editor passing them back to TWiki (saves IE). Removed extra entity decoding steps that were causing problems. TWikibug:Item4629: fixed issues with verbatim, highlighted by previous mangling of this topic |
259 | 13 Sep 2007 | TWikibug:Item4613 cleaned up spurious message when navigating away TWikibug:Item4615 fixed incorrect rendering of emphasis next to br |
260 | 12 Sep 2007 | TWikibug:Item4604 Fixes to REST handler, and add ability to trigger HTML2TML conversion from a content comment alone (required for some editors) TWikibug:Item4588 fixes to conversion of double-character emphases |
261 | 7 Sep 2007 | TWikibug:Item4503 excess empty lines TWikibug:Item4486 no toc headers with unofficial syntax TWikibug:Item4560: empty lines lost TWikibug:Item4566: corrupted table on save TWikibug:Item4550 section tags being eaten |
262 | 4 Sep 2007 | TWikibug:Item4534 TWikibug:Item4535 fixed |
263 | See Subversion logs for earlier revisions ||
264 | Dependencies: | <table border="1"><tr><th>Name</th><th>Version</th><th>Description</th></tr><tr><td align="left">HTML::Parser</td><td align="left">>=3.28</td><td align="left">Required. Available from [[http://cpan.uwinnipeg.ca/search?query=HTML%3A%3AParser&mode=dist][CPAN]].</td></tr><tr><td align="left">HTML::Entities</td><td align="left">>=1.25</td><td align="left">Required. Available from [[http://cpan.uwinnipeg.ca/search?query=HTML%3A%3AEntities&mode=dist][CPAN]].</td></tr></table> |
265 | Plugin Home: | http://twiki.org/cgi-bin/view/Plugins/%TOPIC% |
266 | Feedback: | TWiki:Plugins/%TOPIC%Dev |
267 | Appraisal: | http://twiki.org/cgi-bin/view/Plugins/%TOPIC%Appraisal |
269 __Related Topics:__ %TWIKIWEB%.TWikiPreferences, %TWIKIWEB%.TWikiPlugins
271 <!-- Do _not_ attempt to edit this topic; it is auto-generated. Please add comments/questions/remarks to the Dev topic instead. -->
273 %META:FILEATTACHMENT{name="wikiringlogo20x20.png" attr="h" comment="" version="1"}%
284 | Plugin Authors: | TWiki:Main.CrawfordCurrie http://www.c-dot.co.uk |
287 | Plugin Version: | 03 Aug 2008 17302 (04 Aug 2008) |
290 | 03 Aug 2008 | TWiki 4.2.1 release version |
301 | Plugin Version: | 16174 (22 Jan 2008) |
313 * Set SHORTDESCRIPTION = Translator framework for Wysiwyg editors
316 The default rendering that TWiki uses to generate HTML for display in browsers is 'lossy' - information in the TWiki syntax is lost in the HTML output, and a round-trip (recovering the original TWiki syntax from the HTML) is impossible. To solve this problem the plugin instead uses its own translation of TWiki syntax to pure XHTML. The generated XHTML is annotated with CSS classes that support the accurate recovery of the original TWiki syntax.
319 Translation of the HTML back to TWiki syntax uses the CPAN:HTML::Parser. This parser is used in preference to a more modern XML parser, because the HTML may not generate fully compliant XHTML. A strict parser would risk losing content. CPAN:HTML::Parser is better at handling malformed HTML.
322 There is also the advantage that the translator can be used to import HTML from other sources - for example, existing web pages. Due to the simple nature of TWiki syntax and the potential complexity of web pages, this translation is often lossy - i.e there will be HTML features that can be entered by editors that will be lost in this translation step. This is especially noticeable with HTML tables.
325 A stand-alone convertor script for HTML to TWiki is included in the installation. It can be found in the top-level =tools= directory and is called =html2tml.pl=.
328 ---+++ Integrating a Wysiwyg Editor
329 The plugin can be used to generate HTML for an editor in two ways; first, by generating the HTML for the content-to-be-edited directly in the edit template, and second, through a URL that can be used to fetch the content-to-be-edited from the server.
332 ---++++ Getting content in the edit template
333 This is the scenario used by the standard TWiki text editor, except that the text is pre-converted to HTML before inclusion in the template.
337 1 The =beforeEditHandler= filters the edit, blocking any attempt to edit restricted content
338 1 The =edit= template containing the JS editor is instantiated. The following variables are available for expansion in the template:
342 =WYSIWYGPLUGIN_WYSIWYGSKIN= *must* be set for this to work.
345 In this scenario, the edit template is generated *without* the content-to-be-edited. The content is retrieved from the server using a URL e.g. from an =IFRAME= or using a =XmlHttpRequest=.
349 1 If the current skin = =WYWIWYGPLUGIN_WYWIWYGSKIN=, the =beforeEditHandler=
350 filters the edit, blocking any attempt to edit restricted content.
351 1 The =edit= template containing the JS editor is instantiated.
352 1 JS editor invokes content URL to obtain the HTML document to be edited
355 * The plugin recognises the =wysiwyg_edit= parameter and uses the
358 * Two TWiki variables, =%<nop>OWEB%= and %<nop>OTOPIC%=, should be used in
359 the content URL to refer to the source topic for the content.
362 ---+++ Handling Saves
363 Saves are invoked by the editor POSTing to the TWiki =save= script with the =wysiwyg_edit=
364 parameter set to =1=. This parameter tells the =beforeSaveHandler= in the plugin to convert the HTML back to TML. See %TWIKIWEB%.TWikiScripts for details of the other parameters to the =save= script.
367 Attachment uploads can be handled by URL requests from the editor to the TWiki
371 Like many other TWiki extensions, this module is shipped with a fully automatic installer script written using the Build<nop>Contrib.
372 * If you have TWiki 4.1 or later, and Perl 5.8, you can install from the =configure= interface (Go to Plugins->Find More Extensions)
373 * The webserver user has to have permission to write to all areas of your installation for this to work.
374 * If you have a permanent connection to the internet (and Perl 5.8), you are recommended to use the automatic installer script
375 * Just download the =WysiwygPlugin_installer= perl script and run it.
377 * The installer script will:
378 * Automatically resolve dependencies,
379 * Copy files into the right places in your local install (even if you have renamed data directories),
380 * check in new versions of any installed files that have existing RCS histories files in your existing install (such as topics).
381 * If the $TWIKI_PACKAGES environment variable is set to point to a directory, the installer will try to get archives from there. Otherwise it will try to download from twiki.org or cpan.org, as appropriate.
382 * (Developers only: the script will look for twikiplugins/WysiwygPlugin/WysiwygPlugin.tgz before downloading from TWiki.org)
383 * If you don't have a permanent connection, you can still use the automatic installer, by downloading all required TWiki archives to a local directory.
384 * Point the environment variable =$TWIKI_PACKAGES= to this directory, and the installer script will look there first for required TWiki packages.
385 * =$TWIKI_PACKAGES= is actually a path; you can list several directories separated by :
386 * If you are behind a firewall that blocks access to CPAN, you can build a local CPAN mini-mirror, as described at http://twiki.org/cgi-bin/view/Codev/BuildingDakar#CPAN_local_minimirror
387 * If you don't want to use the installer script, or have problems on your platform (e.g. you don't have Perl 5.8), then you can still install manually:
388 1 Download and unpack one of the =.zip= or =.tgz= archives to a temporary directory.
389 1 Manually copy the contents across to the relevant places in your TWiki installation.
392 1 Run =configure= and enable the module, if it is a plugin.
393 1 Repeat from step 1 for any missing dependencies.
396 For any of the following controls to work, you must tell %TOPIC% the name of
397 the skin being used to invoke the Wysiwyg editor, for example =kupu= or =wikiwyg=.
399 Note that is can be set differently in different areas by defining
400 =WYSWIYGPLUGIN_WYSIWYGSKIN= locally (e.g. in !WebPreferences).
402 The *global* TWiki Variable =WYSIWYG_EXCLUDE= can be set to make the plugin sensitive to what is in a topic before allowing it to be edited. You can set it up to refuse to edit if
403 * some or all of HTML tags (e.g. =<br />= or =<div>=), or
404 * simple variables (e.g. =%<nop>VAR%=) or
405 * calls (e.g. =%<nop>VARIABLE{...}%=)
406 * PRE blocks (=<pre>=)
407 * HTML comments (=<!--= ... =-->=)
409 are used in the topic. If the plugin detects an excluded construct in the topic, it will redirect to the default editor. Comma-separated list of one or more of =html=, =variables=, =calls=, =pre= or =comments= e.g.
410 * Set WYSIWYG_EXCLUDE = calls,html
411 Set =WYSIWYG_EXCLUDE= in %MAINWEB%.TWikiPreferences, or in %WEBPREFSTOPIC% for each web.
414 If you excluded =calls= in =WYSIWYG_EXCLUDE=, you can still define a subset of TWiki variables that do *not* block edits. this is done in the *global* preference variable =WYSIWYG_EDITABLE_CALLS=, which should be a list of TWiki variable names separated by vertical bars, with no spaces, e.g:
415 * Set WYSIWYG_EDITABLE_CALLS = COMMENT|CALENDAR|INCLUDE
419 | Plugin Version: | 12422 |
420 | Change History: | |
421 | 12422 | Added JAVASCRIPT_TEXT to support editors that require topic text in a JS var |
422 | 12161 | Added support for embedded editable HTML in the edit template |
423 | 12119 | Split into WysiwygPlugin and KupuContrib |
424 | 11538 | Minor doc updates, minor fixes to spacing in lists, integrated Koen Marten's template topic patch |
425 | 9671 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item2025'>Item2025</a> corrected handling of SPAN and FONT tags used for colour changes |
426 | 9566 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1890'>Item1890</a> doc update |
427 | 9565 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1890'>Item1890</a> <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1041'>Item1041</a> <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item944'>Item944</a> Much more aggressive cleanup of HTML pasted in from external sources. Excessively verbose HTML (e.g. from Outlook) was causing apparent infinite looing behaviour. |
428 | 8867 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1176'>Item1176</a> commented out Cairo version of header handler |
429 | 8780 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1625'>Item1625</a> disable expansion of twiki variables in urls where there are other twiki variables that can't be expanded |
430 | 8779 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1530'>Item1530</a> support for templatetopic when editing new topics |
431 | 8592 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1532'>Item1532</a> WysiwygPlugin: Added two more do-not-edit-if-topic-contains parameters, pre+comments |
432 | 8590 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1532'>Item1532</a> WysiwygPlugin: Kenneths suggestion on proper handling of HTML comments (incl. change to kupu) |
433 | 8572 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1529'>Item1529</a> evil, evil. The XMLSerializer in IE isn't happy serializing the DOM. I have no idea why. Kupu manages to get away with this because it passes the DOM through the XML validator, which I had to disable because it strips comments. So, for now, the IE implementation will strip comments - but at least you can save again |
434 | 8538 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1501'>Item1501</a> table handling was a bit spazzy. Several problems fixed. |
435 | 8535 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1518'>Item1518</a> moved icon and string lists into topics, updated screenshot |
436 | 8531 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1392'>Item1392</a> reversed the sense of the navigate-away condition, again |
437 | 8466 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1486'>Item1486</a> added WYSIWYG_EXCLUDE to allow exclusion of 'uneditable' content |
438 | 8463 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1486'>Item1486</a> was stripping comments, wrongly. Had to disable the kupu filters completely, they just do too much damage. |
439 | 8401 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1457'>Item1457</a> corrected problem with bullet list at top of topic |
440 | 8388 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1445'>Item1445</a> fix for a javascript error, introduced by previous fix |
441 | 8387 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1445'>Item1445</a> small usability improvements |
442 | 8334 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item663'>Item663</a> TWiki.org doc merge: Fix incorrect link to kupu website |
443 | 8327 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1411'>Item1411</a> handle case of the result of a TWiki variable being nopped |
444 | 8312 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1317'>Item1317</a> wrong result returned from generation function when expanding HTML embedded in verbatim block |
445 | 8301 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1397'>Item1397</a> removed excess space after sqaub links |
446 | 8300 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1231'>Item1231</a> added %SPAN% to indicate a spanned-over cell in the editor. Improved handling of HTML in verbatim tags by inserting line breaks is the tag type calls for it, before removing the HTML. |
447 | 8276 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1215'>Item1215</a> added WYSIWYG_ICONS and WYSIWYG_TAGS to support user customisation of icon images and twiki variables that can be inserted |
448 | 8274 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1314'>Item1314</a> debugging in case the hang happens again; and made sure to default the editor just in case |
449 | 8273 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1315'>Item1315</a> short forms must be terminated by one of the same characters that terminate wikiwords |
450 | 8272 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1391'>Item1391</a> added special interpretation of IMG tags to expand selected TWiki variables within SRC attributes |
451 | 8271 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1340'>Item1340</a> refined handling of NOP to cover abbrevs |
452 | 8270 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1311'>Item1311</a> removed excess space inserted in headings |
453 | 8269 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1339'>Item1339</a> changed from using arbitrary attribute for notoc to a new CSS class. Arbitrary attributes are stripped by Kupu before save. |
454 | 8268 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1344'>Item1344</a> strip ^Ms inserted by Sarissa during serialisation on IE |
455 | 8267 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1394'>Item1394</a> still can't get text styles to work properly in IE; but I am now firmly of the opinion that the fault lies with the browser, and not with Kupu. |
456 | 8232 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1341'>Item1341</a> added appropriate CSS class |
457 | 8152 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1313'>Item1313</a> added caveat about editing complex HTML and mixed HTML-TML |
458 | 8151 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1334'>Item1334</a> headers not handled properly in Cairo version |
459 | 8108 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1318'>Item1318</a> corrected table/list parser for tables embedded in bulleted lists |
460 | 8106 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1310'>Item1310</a> support for <nop/> |
461 | 8105 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1317'>Item1317</a> support for limited case of nopped variable |
462 | 8104 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1320'>Item1320</a> corrected interpretation of relative URL path in [[]] |
463 | 8091 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1259'>Item1259</a> changed comment handling; rather than trying to create HTML, which gets munged, create an HTML comment. This will only be editable by switching to source view, but hey, it's supposed to be WYSIWYG. Note that this also means that comments in pasted HTML should be retained now |
464 | 8063 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1042'>Item1042</a> spec of SCRIPTURL changed |
465 | 7904 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1189'>Item1189</a> reverting accidental checkin of experimental code |
466 | 7903 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1189'>Item1189</a> filter whitelist is not good enough; need to generate B and I nodes. templates/ pub/TWiki/WysiwygPlugin |
467 | 7902 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1189'>Item1189</a> it took bloody ages to track down, but finally discovered that bold and italic were being filtered out of spans by Kupu 1.3.2.... too smart for it's own good. So added them to the filter whitelist, and it works again. |
468 | 7873 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1189'>Item1189</a> added pre save filter to try and find where the attributes are disappearing to in FF |
469 | 7872 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1187'>Item1187</a> for lack of an s on an RE, the nation was lost (well, the multi-line comment actually). Thanks Kenneth! |
470 | 7871 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item859'>Item859</a> solved issue with non-display of inserted images. Was due to the use of an onSubmit handler to close the dialog, rather than an onLoad handler triggered when the IFRAME that contains the result is loaded. |
471 | 7869 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1172'>Item1172</a> had to rewrite big chunk of the table popup to get it working with 1.3.2 |
472 | 7858 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1151'>Item1151</a> rewrote link handlings stuff to leverage browser better |
473 | 7854 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1175'>Item1175</a> escape wikiwords within squabs |
474 | 7815 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1158'>Item1158</a> works for Cairo now as well |
475 | 7814 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1158'>Item1158</a> first implementation of AJAX interface to allow selectoin of topics from other webs |
476 | 7812 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1154'>Item1154</a> removed non-existent scull.gif |
477 | 7811 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1155'>Item1155</a> added extra recursion block, as Item1155 suggests it is needed |
478 | 7801 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1042'>Item1042</a> All sorts of clever tricks to handle expansion/compression of a subset of TWiki variables when they are used in URLs. Not a complete solution, but better than it was. |
479 | 7799 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1024'>Item1024</a> caught out by recursive call to beforeCommonTagsHandler in Cairo (nasty) |
480 | 7798 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1042'>Item1042</a> whoops, broke \t conversion in Cairo |
481 | 7789 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1140'>Item1140</a> testcase for 1140 |
482 | 7788 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1140'>Item1140</a> fix rewriting of img src urls (and updated MANIFEST for Kupu1.3.2) |
483 | 7786 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1042'>Item1042</a> extensive improvements to variable and URL recognition and conversion |
484 | 7766 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item856'>Item856</a> added doc on EDIT_SKIN to the plugin |
485 | 7712 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1074'>Item1074</a> upgrade to Kupu 1.3.2 complete (at last) |
486 | 7710 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1074'>Item1074</a> Fixed source edit mode |
487 | 7709 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1074'>Item1074</a> tidied up broken toolbar. There are still known issues |
488 | 7700 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1074'>Item1074</a> first pass at moving to Kupu 1.3.2. |
489 | 7673 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1037'>Item1037</a> insert wikiword only if selection is zero length |
490 | 7672 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item977'>Item977</a> changed to remove dangerous Cairo-based assumption, and use context ids instead |
491 | 7630 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1025'>Item1025</a> added 'escape clause' for old handlers implemented to support old TWiki releases without warnings |
492 | 7506 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item941'>Item941</a> Eliminated the last of the dynamic globals to try and solve saving problem. Can;t test with mod_perl, but is fine with speedycgi AFAICT |
493 | 7456 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item873'>Item873</a> minor issue; replace br with \n in pre |
494 | 7455 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item873'>Item873</a> obvious problem parsing closing pre tag on same line as open tag |
495 | 7453 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item710'>Item710</a> Handling HTML comments |
496 | 7452 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item876'>Item876</a> Item945: Item876: spacing around table cells, correct handling of variables. Had to compromise on handling [[]] but I think it's for the best. |
497 | 7430 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item871'>Item871</a> made sure that brackets are generated for non-wikiwords |
498 | 7425 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item928'>Item928</a> removed special interpretation of mailto links |
499 | 7424 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item866'>Item866</a> extended URL parsing to handle MAINWEB and TWIKIWEB twiki variables, in the same hacky way as the core. |
500 | 7416 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item870'>Item870</a> a couple of corner-cases for correct handling of twiki variables |
501 | 7401 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item899'>Item899</a> changed list generation to use spaces instead of tabs |
502 | 7265 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item180'>Item180</a> removed pointless, outdated dependency check from DateFieldPlugin |
503 | 6935 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item622'>Item622</a> reverted 3 specs to tabs in Set lines in plugins topics for kompatterbility with Kigh-roe |
504 | 6905 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item622'>Item622</a> tabs -> 3 spacesto avoid confusing the users |
505 | 6850 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item638'>Item638</a> added instruction to run configure to all install docs (I hope) |
506 | 6827 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item569'>Item569</a> added default RELEASE to everything that had a version, and removed a load of dead code that was getting in the way |
507 | 6758 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item569'>Item569</a> computed version numbers for plugins from the repository rev they were built from. |
508 | 6504 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item436'>Item436</a> incremented vernos of all changed plugins |
509 | 6485 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item429'>Item429</a> trying to make access controls clearer |
510 | 6401 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item340'>Item340</a> re-initialisation bug found by ColasNahaboo when using mod_perl; fixed by correctly re-initialising the parse stack for each run of the convertor |
511 | 6284 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item340'>Item340</a> Release 0.16 of WysiwygPlugin |
512 | 6279 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item340'>Item340</a> bugfixes for release 0.16 of WysiwygPlugin |
513 | 6261 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item335'>Item335</a> Switched PNGs to indexed mode, as transparency doesn't work on IE for RGB images |
514 | 6238 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item332'>Item332</a> Added context identifier to WysiwygPlugin, and a button to the pattern view template. If WysiwygPlugin is enabled, then the button will appear. Neat, huh? |
515 | 6195 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item196'>Item196</a> getting plugin test suites to pass. Doesn't mean the plugins actually work, just that the test suites run (which is a good indicator) |
516 | 6174 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item168'>Item168</a> checkpoint checking for 0.16 |
517 | 6151 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item186'>Item186</a> more minor updates |
518 | 6150 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item168'>Item168</a> new icons, and a couple of bugfixes, to WysiwygPlugin |
519 | 6092 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item196'>Item196</a> more plugin and contrib fixes for develop; mainly just moving tests around and making sure they all pass. |
520 | 6067 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item138'>Item138</a> had to change to using beforeCommonTagsHandler and also escape % signs to prevent TWiki from rendering internal tags (as reported by Colas) |
521 | 5979 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item168'>Item168</a> corrected stupid error on IE; added screenshot |
522 | 5977 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item168'>Item168</a> release 0.13 |
523 | 5948 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item168'>Item168</a> nearly ready for 0.13 |
524 | 5937 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item168'>Item168</a> corrected images, twikified all images |
525 | 5936 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item168'>Item168</a> the import from cvs has screwed images |
526 | 5934 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item168'>Item168</a> twikified icon images, and renamed some images to be more intention-revealing |
527 | 5739 | 0.12 beta release |
529 | 5714 | Tidied up installer, documentation. Release 0.10 |
530 | 5712 | pre-release 0.06 |
531 | 5706 | Version 0.05 |
532 | 5705 | Checkpoint checking - version 0.03 |
533 | 5702 | cvsrmtee old files |
534 | 5701 | Check in for prototype release |
535 | 5700 | Check in for prototype release |
536 | 5699 | Checkpoint |
537 | 5698 | Most of the toolboxes are working again |
538 | 5693 | Initial commit; doesn't do much except run tests |
551 Support for the integration of WYSIWYG (What-You-See-Is-What-You-Get) editors. Comes bundled with a complete integration of the feature-rich [[http://kupu.oscom.org][Kupu]] editor.
554 <img src="%ATTACHURL%/screenshot.jpg" alt="Screenshot" />
556 The plugin is a generic framework that supports editing of TWiki topics using any browser-based HTML editor. It works by transforming TML (TWiki Meta Language) into HTML for the editor and then transforming HTML back into TML on save. These steps can be separated to support the import of HTML from external sources such as existing web pages.
558 The plugin should operate with TWiki20040904 as well as TWiki-4.0.0 and later.
560 *Caveat*: WysiwygPlugin is designed for editing TWiki topics, not as a general purpose HTML editor. It will work fine on topics that contain text, TML formatting, and most HTML. However, because of the complexity of transforming TML into HTML and back, complex TML, and mixing HTML and TML may not give the results you expect. You are recommended to use the standard browser textarea editor for editing existing topics that contain mixed HTML and TML, or complex %<nop>TML%-type variables.
563 * Framework is editor agnostic
564 * Customised [[http://kupu.oscom.org][Kupu]] editor included
566 * [[http://kupu.oscom.org][Kupu]] editor integration, implemented as a TWiki skin
567 ---+++ How to use the editor
568 Basic help for most of the functions in the toolbar is available by "hovering" the mouse over the button.
569 Some functions require a bit more explanation:
570 * "Insert No-Op" inserts a <nop> region. Any TWiki syntax such as wikiwords or variables inside the region will be disabled in the rgeion. $lt;nop> regions may not extend over line breaks.
571 * The rightmost drop-down will give you a menu of TWiki variables that can be inserted. Any of these variables can be edited after they have been placed in the text, for example to add parameters.
572 * "Insert a WikiWord" will give you a menu of topics in the _current web_ that can be inserted. Topics are inserted as links, though typing wikiwords in plain text will work just as well.
573 * Watch out for the <> button on the right of the toolbar. It lets you switch into an HTML view, which can be very useful when you can't get your formatting right.
574 * In TWiki, a totally empty table cell causes the cell to be merged with the cell immediately to the left. To make this effect more transparent in the editor, these empty cells are shown with the text "%<nop>SPAN%" in them. In Kupu, if you add %<nop>SPAN% to a table cell, then all the rest of the content will be thrown away and the cell will be converted to an empty table cell. Note that this only applies to tables that are converted to TWiki syntax.
577 The version of Kupu shipped with this plugin is an uncustomised basic Kupu release. All the TWiki customisation is done as plugins and extensions to Kupu - the basic kupu code is shipped completely intact.
580 The plugin works by translating the topic text into HTML, which is then fed to the editor. The edited HTML is then run through the reverse translation before saving to the topic. TWiki syntax is used in preference to HTML in the stored topic wherever possible, though HTML may be used if the translator can't find a suitable TML equivalent..
583 The default rendering that TWiki uses to generate HTML for browsers is 'lossy' - information in the TWiki syntax is lost in the HTML output, and a round-trip (recovering the original TWiki syntax from the HTML) is impossible. To solve this problem the plugin instead uses its own translation of TWiki syntax to pure XHTML. The generated XHTML is annotated with CSS classes that support the accurate recovery of the original TWiki syntax.
586 _(before you ask the obvious question, yes, the translator *could* be used to replace the TWiki rendering pipeline for generating HTML pages. In fact, the translator is taken almost directly from the implementation of the rendering pipeline for the TWiki 'Dakar' release)_
589 Translation of the HTML back to TWiki syntax uses the CPAN:HTML::Parser. This parser is used in preference to a more modern XML parser, because the HTML may not generate fully compliant XHTML. A strict parser would risk losing content. CPAN:HTML::Parser is better at handling malformed syntax.
592 There is also the advantage that the translator can be used to import HTML from other sources - for example, existing web pages. Due to the simple nature of TWiki syntax and the complexity of HTML, this translation is lossy - i.e there will be HTML features that can be entered by editors that will be lost in this translation step. This is especially noticeable with HTML tables.
595 An example stand-alone convertor script for HTML to TWiki is included in the installation. It can be found in the top-level =tools= directory and is called =html2tml.pl=.
598 ---++ Plugin Installation Instructions
599 * Download the ZIP file from the Plugin web (see below)
600 * Unzip ==%TOPIC%.zip== in your twiki installation directory. Content:
601 | *File:* | *Description:* |
602 | ==lib/TWiki/Plugins/WysiwygPlugin/HTML2TML/WC.pm== | Perl module |
603 | ==lib/TWiki/Plugins/WysiwygPlugin/HTML2TML/Leaf.pm== | Perl module |
604 | ==lib/TWiki/Plugins/WysiwygPlugin/HTML2TML/Node.pm== | Perl module |
605 | ==lib/TWiki/Plugins/WysiwygPlugin/HTML2TML.pm== | Perl module |
606 | ==lib/TWiki/Plugins/WysiwygPlugin.pm== | Perl module |
607 | ==lib/TWiki/Plugins/WysiwygPlugin/TML2HTML.pm== | Perl module |
608 | ==data/TWiki/WysiwygPlugin.txt== | Documentation and settings |
609 | ==data/TWiki/WysiwygPluginTopicLister.txt== | Special AJAX topic |
610 | ==pub/TWiki/WysiwygPlugin/kuputwiki.css== | Kupu customisation |
611 | ==pub/TWiki/WysiwygPlugin/twikitools.js== | Kupu customisation |
612 | ==pub/TWiki/WysiwygPlugin/kupuinit.js== | Kupu customisation |
613 | ==pub/TWiki/WysiwygPlugin/kupustart.js== | Kupu customisation |
614 | ==pub/TWiki/WysiwygPlugin/bold.png== | Button image |
615 | ==pub/TWiki/WysiwygPlugin/cancel.png== | Button image |
616 | ==pub/TWiki/WysiwygPlugin/code.png== | Button image |
617 | ==pub/TWiki/WysiwygPlugin/definition-list.png== | Button image |
618 | ==pub/TWiki/WysiwygPlugin/exthyperlink.png== | Button image |
619 | ==pub/TWiki/WysiwygPlugin/help.png== | Button image |
620 | ==pub/TWiki/WysiwygPlugin/indent.png== | Button image |
621 | ==pub/TWiki/WysiwygPlugin/inthyperlink.png== | Button image |
622 | ==pub/TWiki/WysiwygPlugin/italic.png== | Button image |
623 | ==pub/TWiki/WysiwygPlugin/new-attachment.png== | Button image |
624 | ==pub/TWiki/WysiwygPlugin/new-image.png== | Button image |
625 | ==pub/TWiki/WysiwygPlugin/nop.png== | Button image |
626 | ==pub/TWiki/WysiwygPlugin/ordered-list.png== | Button image |
627 | ==pub/TWiki/WysiwygPlugin/outdent.png== | Button image |
628 | ==pub/TWiki/WysiwygPlugin/redo.png== | Button image |
629 | ==pub/TWiki/WysiwygPlugin/remove.png== | Button image |
630 | ==pub/TWiki/WysiwygPlugin/save.png== | Button image |
631 | ==pub/TWiki/WysiwygPlugin/separator.png== | Button image |
632 | ==pub/TWiki/WysiwygPlugin/smiley.png== | Button image |
633 | ==pub/TWiki/WysiwygPlugin/strings.png== | Button image |
634 | ==pub/TWiki/WysiwygPlugin/table.png== | Button image |
635 | ==pub/TWiki/WysiwygPlugin/text-color.png== | Button image |
636 | ==pub/TWiki/WysiwygPlugin/undo.png== | Button image |
637 | ==pub/TWiki/WysiwygPlugin/unordered-list.png== | Button image |
638 | ==pub/TWiki/WysiwygPlugin/vars.png== | Button image |
639 | ==pub/TWiki/WysiwygPlugin/verbatim.png== | Button image |
640 | ==pub/TWiki/WysiwygPlugin/verbatim-watermark.png== | Watermark |
641 | ==pub/TWiki/WysiwygPlugin/screenshot.jpg== | Screen shot |
642 | ==pub/TWiki/WysiwygPlugin/view-source.png== | Button image |
643 | ==templates/edit.kupu.tmpl== | Template for an edit using kupu |
644 | ==templates/view.kupuxml.tmpl== | Template for AJAX data |
645 | ==templates/attachtables.kupu.tmpl== | Attachment table rendering for editor |
646 | ==templates/view.kupu.tmpl== | Template for a kupu skin view, used by the editor |
647 | ==tools/html2tml.pl== | Stand-alone convertor script |
648 | ==pub/TWiki/WysiwygPlugin/_kupu/Extensions/Install.py== | Kupu 1.3.2 |
649 | ==pub/TWiki/WysiwygPlugin/_kupu/Makefile== | Kupu 1.3.2 |
650 | ==pub/TWiki/WysiwygPlugin/_kupu/__init__.py== | Kupu 1.3.2 |
651 | ==pub/TWiki/WysiwygPlugin/_kupu/apache-lenya/README.txt== | Kupu 1.3.2 |
652 | ==pub/TWiki/WysiwygPlugin/_kupu/apache-lenya/kupu/body.kupu== | Kupu 1.3.2 |
653 | ==pub/TWiki/WysiwygPlugin/_kupu/apache-lenya/kupu/exit.kupu== | Kupu 1.3.2 |
654 | ==pub/TWiki/WysiwygPlugin/_kupu/apache-lenya/kupu/include.kupu== | Kupu 1.3.2 |
655 | ==pub/TWiki/WysiwygPlugin/_kupu/apache-lenya/kupu/kupudrawerstyles.css== | Kupu 1.3.2 |
656 | ==pub/TWiki/WysiwygPlugin/_kupu/apache-lenya/kupu/kupumacros.html== | Kupu 1.3.2 |
657 | ==pub/TWiki/WysiwygPlugin/_kupu/apache-lenya/kupu/kupustyles.css== | Kupu 1.3.2 |
658 | ==pub/TWiki/WysiwygPlugin/_kupu/apache-lenya/kupu/lenya.js== | Kupu 1.3.2 |
659 | ==pub/TWiki/WysiwygPlugin/_kupu/apache-lenya/kupu/lenya.kupu== | Kupu 1.3.2 |
660 | ==pub/TWiki/WysiwygPlugin/_kupu/apache-lenya/kupu/toolbar.kupu== | Kupu 1.3.2 |
661 | ==pub/TWiki/WysiwygPlugin/_kupu/apache-lenya/kupu/toolboxes.kupu== | Kupu 1.3.2 |
662 | ==pub/TWiki/WysiwygPlugin/_kupu/apache-lenya/kupu/wire.kupu== | Kupu 1.3.2 |
663 | ==pub/TWiki/WysiwygPlugin/_kupu/apache-lenya/kupu/xmlconfig.kupu== | Kupu 1.3.2 |
664 | ==pub/TWiki/WysiwygPlugin/_kupu/apache-lenya/lenya/content2edit.xsl== | Kupu 1.3.2 |
665 | ==pub/TWiki/WysiwygPlugin/_kupu/apache-lenya/lenya/drawers/imagedrawer.xsl== | Kupu 1.3.2 |
666 | ==pub/TWiki/WysiwygPlugin/_kupu/apache-lenya/lenya/drawers/imagelibraries.xml.jx== | Kupu 1.3.2 |
667 | ==pub/TWiki/WysiwygPlugin/_kupu/apache-lenya/lenya/drawers/kupudrawerstyles.css== | Kupu 1.3.2 |
668 | ==pub/TWiki/WysiwygPlugin/_kupu/apache-lenya/lenya/drawers/libraries.xml.jx== | Kupu 1.3.2 |
669 | ==pub/TWiki/WysiwygPlugin/_kupu/apache-lenya/lenya/drawers/linkdrawer.xsl== | Kupu 1.3.2 |
670 | ==pub/TWiki/WysiwygPlugin/_kupu/apache-lenya/lenya/drawers/linklibraries.xml.jx== | Kupu 1.3.2 |
671 | ==pub/TWiki/WysiwygPlugin/_kupu/apache-lenya/lenya/drawers/publication_image_library.xml.jx== | Kupu 1.3.2 |
672 | ==pub/TWiki/WysiwygPlugin/_kupu/apache-lenya/lenya/drawers/sitetree_link_library.xml.jx== | Kupu 1.3.2 |
673 | ==pub/TWiki/WysiwygPlugin/_kupu/apache-lenya/lenya/i18n.xsl== | Kupu 1.3.2 |
674 | ==pub/TWiki/WysiwygPlugin/_kupu/apache-lenya/lenya/images/emblem-generic.png== | Kupu 1.3.2 |
675 | ==pub/TWiki/WysiwygPlugin/_kupu/apache-lenya/lenya/images/exit.gif== | Kupu 1.3.2 |
676 | ==pub/TWiki/WysiwygPlugin/_kupu/apache-lenya/lenya/images/page-image.png== | Kupu 1.3.2 |
677 | ==pub/TWiki/WysiwygPlugin/_kupu/apache-lenya/lenya/images/pub-image.png== | Kupu 1.3.2 |
678 | ==pub/TWiki/WysiwygPlugin/_kupu/apache-lenya/lenya/images/right_arrow.png== | Kupu 1.3.2 |
679 | ==pub/TWiki/WysiwygPlugin/_kupu/apache-lenya/lenya/images/sitetree-link.png== | Kupu 1.3.2 |
680 | ==pub/TWiki/WysiwygPlugin/_kupu/apache-lenya/lenya/kupumacros.xsl== | Kupu 1.3.2 |
681 | ==pub/TWiki/WysiwygPlugin/_kupu/apache-lenya/lenya/kupusave.xsl== | Kupu 1.3.2 |
682 | ==pub/TWiki/WysiwygPlugin/_kupu/apache-lenya/lenya/page2kupu.xsl== | Kupu 1.3.2 |
683 | ==pub/TWiki/WysiwygPlugin/_kupu/apache-lenya/lenya/pageassets2kupulibrary.xsl== | Kupu 1.3.2 |
684 | ==pub/TWiki/WysiwygPlugin/_kupu/apache-lenya/lenya/sitetree2kupulibrary.xsl== | Kupu 1.3.2 |
685 | ==pub/TWiki/WysiwygPlugin/_kupu/cnf/head.kupu== | Kupu 1.3.2 |
686 | ==pub/TWiki/WysiwygPlugin/_kupu/cnf/include.kupu== | Kupu 1.3.2 |
687 | ==pub/TWiki/WysiwygPlugin/_kupu/cnf/toolboxes.kupu== | Kupu 1.3.2 |
688 | ==pub/TWiki/WysiwygPlugin/_kupu/cnf/wire.kupu== | Kupu 1.3.2 |
689 | ==pub/TWiki/WysiwygPlugin/_kupu/cnf/xmlconfig.kupu== | Kupu 1.3.2 |
690 | ==pub/TWiki/WysiwygPlugin/_kupu/common/fulldoc.html== | Kupu 1.3.2 |
691 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupu-pox.cgi== | Kupu 1.3.2 |
692 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupu.cgi== | Kupu 1.3.2 |
693 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupu.html== | Kupu 1.3.2 |
694 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupu.pox== | Kupu 1.3.2 |
695 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupu.pox.jspx== | Kupu 1.3.2 |
696 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupubasetools.js== | Kupu 1.3.2 |
697 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupubeforeunload.js== | Kupu 1.3.2 |
698 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupublank.html== | Kupu 1.3.2 |
699 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupucleanupexpressions.js== | Kupu 1.3.2 |
700 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupucnf.html== | Kupu 1.3.2 |
701 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupucnftable.js== | Kupu 1.3.2 |
702 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupucontentfilters.js== | Kupu 1.3.2 |
703 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupucontentstyles.css== | Kupu 1.3.2 |
704 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupucontextmenu.js== | Kupu 1.3.2 |
705 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupudrawers.js== | Kupu 1.3.2 |
706 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupudrawers/allimages.xml== | Kupu 1.3.2 |
707 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupudrawers/drawer.xsl== | Kupu 1.3.2 |
708 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupudrawers/drawer.xsl.metadata== | Kupu 1.3.2 |
709 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupudrawers/imagelibrary.xml== | Kupu 1.3.2 |
710 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupudrawers/kupubuttons.xml== | Kupu 1.3.2 |
711 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupudrawers/linklibrary.xml== | Kupu 1.3.2 |
712 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupudrawers/logos.xml== | Kupu 1.3.2 |
713 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupudrawers/logos/bitflux_logo.png== | Kupu 1.3.2 |
714 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupudrawers/logos/bitflux_logo_preview.png== | Kupu 1.3.2 |
715 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupudrawers/logos/bubnbros.png== | Kupu 1.3.2 |
716 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupudrawers/logos/bubnbros_preview.png== | Kupu 1.3.2 |
717 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupudrawers/logos/codespeak_logo.png== | Kupu 1.3.2 |
718 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupudrawers/logos/codespeak_logo_preview.png== | Kupu 1.3.2 |
719 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupudrawers/logos/diver_logo.png== | Kupu 1.3.2 |
720 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupudrawers/logos/diver_logo_preview.png== | Kupu 1.3.2 |
721 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupudrawers/logos/eth_logo.png== | Kupu 1.3.2 |
722 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupudrawers/logos/eth_logo_preview.png== | Kupu 1.3.2 |
723 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupudrawers/logos/infrae_logo.png== | Kupu 1.3.2 |
724 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupudrawers/logos/infrae_logo_preview.png== | Kupu 1.3.2 |
725 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupudrawers/logos/kupu_logo.png== | Kupu 1.3.2 |
726 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupudrawers/logos/kupu_logo_preview.png== | Kupu 1.3.2 |
727 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupudrawers/logos/lenya_logo.png== | Kupu 1.3.2 |
728 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupudrawers/logos/lenya_logo_preview.png== | Kupu 1.3.2 |
729 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupudrawers/logos/opensource.png== | Kupu 1.3.2 |
730 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupudrawers/logos/opensource_preview.png== | Kupu 1.3.2 |
731 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupudrawers/logos/oscom4_banner.gif== | Kupu 1.3.2 |
732 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupudrawers/logos/oscom4_banner_preview.png== | Kupu 1.3.2 |
733 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupudrawers/logos/oscom_logo.png== | Kupu 1.3.2 |
734 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupudrawers/logos/oscom_logo_preview.png== | Kupu 1.3.2 |
735 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupudrawers/logos/plone_logo.png== | Kupu 1.3.2 |
736 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupudrawers/logos/plone_logo_preview.png== | Kupu 1.3.2 |
737 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupudrawers/logos/pypy_logo.png== | Kupu 1.3.2 |
738 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupudrawers/logos/pypy_logo_preview.png== | Kupu 1.3.2 |
739 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupudrawers/logos/silva_logo.png== | Kupu 1.3.2 |
740 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupudrawers/logos/silva_logo_preview.png== | Kupu 1.3.2 |
741 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupudrawers/logos/twiki_logo.gif== | Kupu 1.3.2 |
742 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupudrawers/logos/twiki_logo.png== | Kupu 1.3.2 |
743 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupudrawers/logos/zea_logo.png== | Kupu 1.3.2 |
744 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupudrawers/logos/zea_logo_preview.png== | Kupu 1.3.2 |
745 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupudrawers/logos/zope_logo.png== | Kupu 1.3.2 |
746 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupudrawers/logos/zope_logo_preview.png== | Kupu 1.3.2 |
747 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupudrawerstyles.css== | Kupu 1.3.2 |
748 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupueditor.js== | Kupu 1.3.2 |
749 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuform.html== | Kupu 1.3.2 |
750 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuhelpers.js== | Kupu 1.3.2 |
751 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/background-color.png== | Kupu 1.3.2 |
752 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/bold.gif== | Kupu 1.3.2 |
753 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/bold.png== | Kupu 1.3.2 |
754 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/buttons.png== | Kupu 1.3.2 |
755 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/caret.png== | Kupu 1.3.2 |
756 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/closed.png== | Kupu 1.3.2 |
757 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/copy.png== | Kupu 1.3.2 |
758 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/create-new.png== | Kupu 1.3.2 |
759 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/cut.png== | Kupu 1.3.2 |
760 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/definitionlist.png== | Kupu 1.3.2 |
761 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/document.png== | Kupu 1.3.2 |
762 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/exit.gif== | Kupu 1.3.2 |
763 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/exthyperlink.png== | Kupu 1.3.2 |
764 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/folder.png== | Kupu 1.3.2 |
765 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/fonts.png== | Kupu 1.3.2 |
766 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/format.png== | Kupu 1.3.2 |
767 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/hr.png== | Kupu 1.3.2 |
768 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/image.png== | Kupu 1.3.2 |
769 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/indent.gif== | Kupu 1.3.2 |
770 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/indent.png== | Kupu 1.3.2 |
771 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/inthyperlink.png== | Kupu 1.3.2 |
772 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/italic.gif== | Kupu 1.3.2 |
773 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/italic.png== | Kupu 1.3.2 |
774 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/justify-center.png== | Kupu 1.3.2 |
775 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/justify-full.png== | Kupu 1.3.2 |
776 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/justify-left.png== | Kupu 1.3.2 |
777 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/justify-right.png== | Kupu 1.3.2 |
778 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/kupu_icon.gif== | Kupu 1.3.2 |
779 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/kupulibrary.png== | Kupu 1.3.2 |
780 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/kupusearch_icon.gif== | Kupu 1.3.2 |
781 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/larger-text.png== | Kupu 1.3.2 |
782 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/link.png== | Kupu 1.3.2 |
783 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/opened.png== | Kupu 1.3.2 |
784 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/ordered-list.png== | Kupu 1.3.2 |
785 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/outdent.png== | Kupu 1.3.2 |
786 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/paste.png== | Kupu 1.3.2 |
787 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/redo-disabled.png== | Kupu 1.3.2 |
788 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/redo.png== | Kupu 1.3.2 |
789 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/remove.png== | Kupu 1.3.2 |
790 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/save.png== | Kupu 1.3.2 |
791 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/size.png== | Kupu 1.3.2 |
792 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/smaller-text.png== | Kupu 1.3.2 |
793 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/space.gif== | Kupu 1.3.2 |
794 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/strikethrough.png== | Kupu 1.3.2 |
795 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/subscript.png== | Kupu 1.3.2 |
796 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/superscript.png== | Kupu 1.3.2 |
797 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/table.png== | Kupu 1.3.2 |
798 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/text-check.png== | Kupu 1.3.2 |
799 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/text-color.png== | Kupu 1.3.2 |
800 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/toolbarbg_blue.png== | Kupu 1.3.2 |
801 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/toolbarbg_green.png== | Kupu 1.3.2 |
802 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/toolbarbg_purple.png== | Kupu 1.3.2 |
803 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/toolbarbg_wood.png== | Kupu 1.3.2 |
804 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/underline.gif== | Kupu 1.3.2 |
805 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/underline.png== | Kupu 1.3.2 |
806 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/undo-disabled.png== | Kupu 1.3.2 |
807 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/undo.png== | Kupu 1.3.2 |
808 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/unlink.png== | Kupu 1.3.2 |
809 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/unordered-list.png== | Kupu 1.3.2 |
810 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/view-source.png== | Kupu 1.3.2 |
811 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/zoom-in.gif== | Kupu 1.3.2 |
812 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/zoom-out.gif== | Kupu 1.3.2 |
813 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuinit.js== | Kupu 1.3.2 |
814 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuinit_experimental.js== | Kupu 1.3.2 |
815 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuinit_form.js== | Kupu 1.3.2 |
816 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuinit_genericelements.js== | Kupu 1.3.2 |
817 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuinit_multi.js== | Kupu 1.3.2 |
818 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuinspector.js== | Kupu 1.3.2 |
819 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuloggers.js== | Kupu 1.3.2 |
820 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupumacros.html== | Kupu 1.3.2 |
821 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupumulti.html== | Kupu 1.3.2 |
822 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupumultieditor.js== | Kupu 1.3.2 |
823 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupunoi18n.js== | Kupu 1.3.2 |
824 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupupopups/image.html== | Kupu 1.3.2 |
825 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupupopups/link.html== | Kupu 1.3.2 |
826 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupusaveonpart.js== | Kupu 1.3.2 |
827 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupusourceedit.js== | Kupu 1.3.2 |
828 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuspellchecker.js== | Kupu 1.3.2 |
829 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupustart.js== | Kupu 1.3.2 |
830 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupustart_form.js== | Kupu 1.3.2 |
831 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupustart_multi.js== | Kupu 1.3.2 |
832 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupustyles.css== | Kupu 1.3.2 |
833 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kuputoolcollapser.js== | Kupu 1.3.2 |
834 | ==pub/TWiki/WysiwygPlugin/_kupu/common/sarissa.js== | Kupu 1.3.2 |
835 | ==pub/TWiki/WysiwygPlugin/_kupu/common/sarissa_ieemu_xpath.js== | Kupu 1.3.2 |
836 | ==pub/TWiki/WysiwygPlugin/_kupu/common/spellcheck.cgi== | Kupu 1.3.2 |
837 | ==pub/TWiki/WysiwygPlugin/_kupu/config.py== | Kupu 1.3.2 |
838 | ==pub/TWiki/WysiwygPlugin/_kupu/configure.zcml== | Kupu 1.3.2 |
839 | ==pub/TWiki/WysiwygPlugin/_kupu/default/body.kupu== | Kupu 1.3.2 |
840 | ==pub/TWiki/WysiwygPlugin/_kupu/default/colorchooser.kupu== | Kupu 1.3.2 |
841 | ==pub/TWiki/WysiwygPlugin/_kupu/default/contextmenu.kupu== | Kupu 1.3.2 |
842 | ==pub/TWiki/WysiwygPlugin/_kupu/default/drawers.kupu== | Kupu 1.3.2 |
843 | ==pub/TWiki/WysiwygPlugin/_kupu/default/form.kupu== | Kupu 1.3.2 |
844 | ==pub/TWiki/WysiwygPlugin/_kupu/default/head.kupu== | Kupu 1.3.2 |
845 | ==pub/TWiki/WysiwygPlugin/_kupu/default/html.kupu== | Kupu 1.3.2 |
846 | ==pub/TWiki/WysiwygPlugin/_kupu/default/include.kupu== | Kupu 1.3.2 |
847 | ==pub/TWiki/WysiwygPlugin/_kupu/default/save.kupu== | Kupu 1.3.2 |
848 | ==pub/TWiki/WysiwygPlugin/_kupu/default/saveonpart.kupu== | Kupu 1.3.2 |
849 | ==pub/TWiki/WysiwygPlugin/_kupu/default/sourceedit.kupu== | Kupu 1.3.2 |
850 | ==pub/TWiki/WysiwygPlugin/_kupu/default/spellchecker.kupu== | Kupu 1.3.2 |
851 | ==pub/TWiki/WysiwygPlugin/_kupu/default/toolbar.kupu== | Kupu 1.3.2 |
852 | ==pub/TWiki/WysiwygPlugin/_kupu/default/toolboxes.kupu== | Kupu 1.3.2 |
853 | ==pub/TWiki/WysiwygPlugin/_kupu/default/wire.kupu== | Kupu 1.3.2 |
854 | ==pub/TWiki/WysiwygPlugin/_kupu/default/xmlconfig.kupu== | Kupu 1.3.2 |
855 | ==pub/TWiki/WysiwygPlugin/_kupu/dist-apache-lenya.kupu== | Kupu 1.3.2 |
856 | ==pub/TWiki/WysiwygPlugin/_kupu/dist-cnf.kupu== | Kupu 1.3.2 |
857 | ==pub/TWiki/WysiwygPlugin/_kupu/dist-form.kupu== | Kupu 1.3.2 |
858 | ==pub/TWiki/WysiwygPlugin/_kupu/dist-multi.kupu== | Kupu 1.3.2 |
859 | ==pub/TWiki/WysiwygPlugin/_kupu/dist-plone.kupu== | Kupu 1.3.2 |
860 | ==pub/TWiki/WysiwygPlugin/_kupu/dist-silva.kupu== | Kupu 1.3.2 |
861 | ==pub/TWiki/WysiwygPlugin/_kupu/dist-zope2.kupu== | Kupu 1.3.2 |
862 | ==pub/TWiki/WysiwygPlugin/_kupu/dist.kupu== | Kupu 1.3.2 |
863 | ==pub/TWiki/WysiwygPlugin/_kupu/doc/BEFOREUNLOAD.txt== | Kupu 1.3.2 |
864 | ==pub/TWiki/WysiwygPlugin/_kupu/doc/CHANGES.txt== | Kupu 1.3.2 |
865 | ==pub/TWiki/WysiwygPlugin/_kupu/doc/CONTRIBUTING.txt== | Kupu 1.3.2 |
866 | ==pub/TWiki/WysiwygPlugin/_kupu/doc/CREDITS.txt== | Kupu 1.3.2 |
867 | ==pub/TWiki/WysiwygPlugin/_kupu/doc/CUSTOMIZING.txt== | Kupu 1.3.2 |
868 | ==pub/TWiki/WysiwygPlugin/_kupu/doc/EXTENDING.txt== | Kupu 1.3.2 |
869 | ==pub/TWiki/WysiwygPlugin/_kupu/doc/FAQ.txt== | Kupu 1.3.2 |
870 | ==pub/TWiki/WysiwygPlugin/_kupu/doc/IMAGEUPLOADER.txt== | Kupu 1.3.2 |
871 | ==pub/TWiki/WysiwygPlugin/_kupu/doc/INSTALL.txt== | Kupu 1.3.2 |
872 | ==pub/TWiki/WysiwygPlugin/_kupu/doc/JSAPI.txt== | Kupu 1.3.2 |
873 | ==pub/TWiki/WysiwygPlugin/_kupu/doc/LIBRARIES.txt== | Kupu 1.3.2 |
874 | ==pub/TWiki/WysiwygPlugin/_kupu/doc/LICENSE.txt== | Kupu 1.3.2 |
875 | ==pub/TWiki/WysiwygPlugin/_kupu/doc/OLDBROWSERS.txt== | Kupu 1.3.2 |
876 | ==pub/TWiki/WysiwygPlugin/_kupu/doc/PLONE2.txt== | Kupu 1.3.2 |
877 | ==pub/TWiki/WysiwygPlugin/_kupu/doc/README.txt== | Kupu 1.3.2 |
878 | ==pub/TWiki/WysiwygPlugin/_kupu/doc/STYLEGUIDE.txt== | Kupu 1.3.2 |
879 | ==pub/TWiki/WysiwygPlugin/_kupu/doc/TEMPLATE-SYSTEM.txt== | Kupu 1.3.2 |
880 | ==pub/TWiki/WysiwygPlugin/_kupu/doc/TODO.txt== | Kupu 1.3.2 |
881 | ==pub/TWiki/WysiwygPlugin/_kupu/doc/ZOPE2.txt== | Kupu 1.3.2 |
882 | ==pub/TWiki/WysiwygPlugin/_kupu/doc/default.css== | Kupu 1.3.2 |
883 | ==pub/TWiki/WysiwygPlugin/_kupu/doc/docutils.conf== | Kupu 1.3.2 |
884 | ==pub/TWiki/WysiwygPlugin/_kupu/doc/file-template== | Kupu 1.3.2 |
885 | ==pub/TWiki/WysiwygPlugin/_kupu/form/body.kupu== | Kupu 1.3.2 |
886 | ==pub/TWiki/WysiwygPlugin/_kupu/form/head.kupu== | Kupu 1.3.2 |
887 | ==pub/TWiki/WysiwygPlugin/_kupu/form/include.kupu== | Kupu 1.3.2 |
888 | ==pub/TWiki/WysiwygPlugin/_kupu/form/save.kupu== | Kupu 1.3.2 |
889 | ==pub/TWiki/WysiwygPlugin/_kupu/i18n/kupu-cs.po== | Kupu 1.3.2 |
890 | ==pub/TWiki/WysiwygPlugin/_kupu/i18n/kupu-da.po== | Kupu 1.3.2 |
891 | ==pub/TWiki/WysiwygPlugin/_kupu/i18n/kupu-de.po== | Kupu 1.3.2 |
892 | ==pub/TWiki/WysiwygPlugin/_kupu/i18n/kupu-el.po== | Kupu 1.3.2 |
893 | ==pub/TWiki/WysiwygPlugin/_kupu/i18n/kupu-eo.po== | Kupu 1.3.2 |
894 | ==pub/TWiki/WysiwygPlugin/_kupu/i18n/kupu-fi.po== | Kupu 1.3.2 |
895 | ==pub/TWiki/WysiwygPlugin/_kupu/i18n/kupu-fr.po== | Kupu 1.3.2 |
896 | ==pub/TWiki/WysiwygPlugin/_kupu/i18n/kupu-he.po== | Kupu 1.3.2 |
897 | ==pub/TWiki/WysiwygPlugin/_kupu/i18n/kupu-ja.po== | Kupu 1.3.2 |
898 | ==pub/TWiki/WysiwygPlugin/_kupu/i18n/kupu-nl.po== | Kupu 1.3.2 |
899 | ==pub/TWiki/WysiwygPlugin/_kupu/i18n/kupu-pt-br.po== | Kupu 1.3.2 |
900 | ==pub/TWiki/WysiwygPlugin/_kupu/i18n/kupu-pt.po== | Kupu 1.3.2 |
901 | ==pub/TWiki/WysiwygPlugin/_kupu/i18n/kupu-sr-Latn.po== | Kupu 1.3.2 |
902 | ==pub/TWiki/WysiwygPlugin/_kupu/i18n/kupu-sr.po== | Kupu 1.3.2 |
903 | ==pub/TWiki/WysiwygPlugin/_kupu/i18n/kupu-zh-cn.po== | Kupu 1.3.2 |
904 | ==pub/TWiki/WysiwygPlugin/_kupu/i18n/kupu-zh.po== | Kupu 1.3.2 |
905 | ==pub/TWiki/WysiwygPlugin/_kupu/i18n/kupu.pot== | Kupu 1.3.2 |
906 | ==pub/TWiki/WysiwygPlugin/_kupu/i18n/kupuconfig-da.po== | Kupu 1.3.2 |
907 | ==pub/TWiki/WysiwygPlugin/_kupu/i18n/kupuconfig-fr.po== | Kupu 1.3.2 |
908 | ==pub/TWiki/WysiwygPlugin/_kupu/i18n/kupuconfig-ja.po== | Kupu 1.3.2 |
909 | ==pub/TWiki/WysiwygPlugin/_kupu/i18n/kupuconfig.pot== | Kupu 1.3.2 |
910 | ==pub/TWiki/WysiwygPlugin/_kupu/include.kupu== | Kupu 1.3.2 |
911 | ==pub/TWiki/WysiwygPlugin/_kupu/kupu-i18nextract-sa-diff.patch== | Kupu 1.3.2 |
912 | ==pub/TWiki/WysiwygPlugin/_kupu/kupu_icon.gif== | Kupu 1.3.2 |
913 | ==pub/TWiki/WysiwygPlugin/_kupu/make-jspx.xsl== | Kupu 1.3.2 |
914 | ==pub/TWiki/WysiwygPlugin/_kupu/make.bat== | Kupu 1.3.2 |
915 | ==pub/TWiki/WysiwygPlugin/_kupu/make.xsl== | Kupu 1.3.2 |
916 | ==pub/TWiki/WysiwygPlugin/_kupu/multi/body.kupu== | Kupu 1.3.2 |
917 | ==pub/TWiki/WysiwygPlugin/_kupu/multi/head.kupu== | Kupu 1.3.2 |
918 | ==pub/TWiki/WysiwygPlugin/_kupu/multi/include.kupu== | Kupu 1.3.2 |
919 | ==pub/TWiki/WysiwygPlugin/_kupu/multi/save.kupu== | Kupu 1.3.2 |
920 | ==pub/TWiki/WysiwygPlugin/_kupu/multi/toolboxes.kupu== | Kupu 1.3.2 |
921 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/ReftextField.py== | Kupu 1.3.2 |
922 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/TODO.txt== | Kupu 1.3.2 |
923 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/__init__.py== | Kupu 1.3.2 |
924 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/beforeunload.kupu== | Kupu 1.3.2 |
925 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/body.kupu== | Kupu 1.3.2 |
926 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/drawers.kupu== | Kupu 1.3.2 |
927 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/head.kupu== | Kupu 1.3.2 |
928 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/html2captioned.py== | Kupu 1.3.2 |
929 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/include.kupu== | Kupu 1.3.2 |
930 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/interfaces.py== | Kupu 1.3.2 |
931 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu2html.py== | Kupu 1.3.2 |
932 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu_config.pt== | Kupu 1.3.2 |
933 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu_plone_layer/contentUsesKupu.py== | Kupu 1.3.2 |
934 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu_plone_layer/convertContentForKupu.py== | Kupu 1.3.2 |
935 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu_plone_layer/emptypage.pt== | Kupu 1.3.2 |
936 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu_plone_layer/kupuGetResourceTypes.py== | Kupu 1.3.2 |
937 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu_plone_layer/kupuInfoForBrains.py== | Kupu 1.3.2 |
938 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu_plone_layer/kupuMyItems.py== | Kupu 1.3.2 |
939 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu_plone_layer/kupuRecentItems.py== | Kupu 1.3.2 |
940 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu_plone_layer/kupuSearch.py== | Kupu 1.3.2 |
941 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu_plone_layer/kupuUploadImage.py== | Kupu 1.3.2 |
942 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu_plone_layer/kupuUploadImage.py.metadata== | Kupu 1.3.2 |
943 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu_plone_layer/kupu_wysiwyg_support.html== | Kupu 1.3.2 |
944 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu_plone_layer/kupublank.html.html== | Kupu 1.3.2 |
945 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu_plone_layer/kupucollection.xml.pt== | Kupu 1.3.2 |
946 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu_plone_layer/kupucollection.xml.pt.metadata== | Kupu 1.3.2 |
947 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu_plone_layer/kupulibraries.xml.pt== | Kupu 1.3.2 |
948 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu_plone_layer/kupumyitems.xml.pt== | Kupu 1.3.2 |
949 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu_plone_layer/kupuplone.css.dtml== | Kupu 1.3.2 |
950 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu_plone_layer/kupuploneeditor.js== | Kupu 1.3.2 |
951 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu_plone_layer/kupuploneinit.js== | Kupu 1.3.2 |
952 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu_plone_layer/kupuploneui.js== | Kupu 1.3.2 |
953 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu_plone_layer/kupurecentitems.xml.pt== | Kupu 1.3.2 |
954 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu_plone_layer/kupusaveonpart.js== | Kupu 1.3.2 |
955 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu_plone_layer/kupusearch.xml.pt== | Kupu 1.3.2 |
956 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu_plone_layer/plonekupuimages/anchor.gif== | Kupu 1.3.2 |
957 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu_plone_layer/plonekupuimages/bgcolor.gif== | Kupu 1.3.2 |
958 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu_plone_layer/plonekupuimages/bold.gif== | Kupu 1.3.2 |
959 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu_plone_layer/plonekupuimages/center.gif== | Kupu 1.3.2 |
960 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu_plone_layer/plonekupuimages/definitionlist.gif== | Kupu 1.3.2 |
961 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu_plone_layer/plonekupuimages/delete_icon.gif== | Kupu 1.3.2 |
962 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu_plone_layer/plonekupuimages/hr.gif== | Kupu 1.3.2 |
963 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu_plone_layer/plonekupuimages/hyperlink.gif== | Kupu 1.3.2 |
964 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu_plone_layer/plonekupuimages/indent.gif== | Kupu 1.3.2 |
965 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu_plone_layer/plonekupuimages/italic.gif== | Kupu 1.3.2 |
966 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu_plone_layer/plonekupuimages/left_just.gif== | Kupu 1.3.2 |
967 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu_plone_layer/plonekupuimages/list.gif== | Kupu 1.3.2 |
968 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu_plone_layer/plonekupuimages/numbered_list.gif== | Kupu 1.3.2 |
969 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu_plone_layer/plonekupuimages/outdent.gif== | Kupu 1.3.2 |
970 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu_plone_layer/plonekupuimages/redo.gif== | Kupu 1.3.2 |
971 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu_plone_layer/plonekupuimages/right_just.gif== | Kupu 1.3.2 |
972 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu_plone_layer/plonekupuimages/space.gif== | Kupu 1.3.2 |
973 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu_plone_layer/plonekupuimages/strikethrough.gif== | Kupu 1.3.2 |
974 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu_plone_layer/plonekupuimages/subscript.gif== | Kupu 1.3.2 |
975 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu_plone_layer/plonekupuimages/superscript.gif== | Kupu 1.3.2 |
976 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu_plone_layer/plonekupuimages/table.gif== | Kupu 1.3.2 |
977 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu_plone_layer/plonekupuimages/textcolor.gif== | Kupu 1.3.2 |
978 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu_plone_layer/plonekupuimages/tools.gif== | Kupu 1.3.2 |
979 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu_plone_layer/plonekupuimages/underline.gif== | Kupu 1.3.2 |
980 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu_plone_layer/plonekupuimages/undo.gif== | Kupu 1.3.2 |
981 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu_plone_layer/plonekupuimages/unformat.gif== | Kupu 1.3.2 |
982 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu_plone_layer/plonekupuimages/view-source.gif== | Kupu 1.3.2 |
983 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu_plone_layer/resolveuid.py== | Kupu 1.3.2 |
984 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu_plone_layer/sample-kupu-customisation-policy.py== | Kupu 1.3.2 |
985 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu_plone_layer/wysiwyg_support.pt== | Kupu 1.3.2 |
986 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/libraries.pt== | Kupu 1.3.2 |
987 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/librarytool.py== | Kupu 1.3.2 |
988 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/permissions.py== | Kupu 1.3.2 |
989 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/plonelibrarytool.py== | Kupu 1.3.2 |
990 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/resource_types.pt== | Kupu 1.3.2 |
991 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/scanner.py== | Kupu 1.3.2 |
992 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/sourceedit.kupu== | Kupu 1.3.2 |
993 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/tests/__init__.py== | Kupu 1.3.2 |
994 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/tests/framework.py== | Kupu 1.3.2 |
995 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/tests/input/baduid.in== | Kupu 1.3.2 |
996 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/tests/input/linked.in== | Kupu 1.3.2 |
997 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/tests/input/minimal.in== | Kupu 1.3.2 |
998 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/tests/input/notcaptioned.in== | Kupu 1.3.2 |
999 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/tests/input/notquoted.in== | Kupu 1.3.2 |
1000 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/tests/input/simple.in== | Kupu 1.3.2 |
1001 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/tests/output/baduid.out== | Kupu 1.3.2 |
1002 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/tests/output/linked.out== | Kupu 1.3.2 |
1003 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/tests/output/minimal.out== | Kupu 1.3.2 |
1004 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/tests/output/notcaptioned.out== | Kupu 1.3.2 |
1005 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/tests/output/notquoted.out== | Kupu 1.3.2 |
1006 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/tests/output/simple.out== | Kupu 1.3.2 |
1007 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/tests/runalltests.py== | Kupu 1.3.2 |
1008 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/tests/runme.cmd== | Kupu 1.3.2 |
1009 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/tests/test_browserSupportsKupu.py== | Kupu 1.3.2 |
1010 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/tests/test_html2captioned.py== | Kupu 1.3.2 |
1011 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/tests/test_librarymanager.py== | Kupu 1.3.2 |
1012 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/tests/test_resourcetypemapper.py== | Kupu 1.3.2 |
1013 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/toolbar.kupu== | Kupu 1.3.2 |
1014 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/wire.kupu== | Kupu 1.3.2 |
1015 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/wysiwyg_support.kupu== | Kupu 1.3.2 |
1016 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/xmlconfig.kupu== | Kupu 1.3.2 |
1017 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/zmi_docs.pt== | Kupu 1.3.2 |
1018 | ==pub/TWiki/WysiwygPlugin/_kupu/python/__init__.py== | Kupu 1.3.2 |
1019 | ==pub/TWiki/WysiwygPlugin/_kupu/python/nationalizer.py== | Kupu 1.3.2 |
1020 | ==pub/TWiki/WysiwygPlugin/_kupu/python/spellcheck.py== | Kupu 1.3.2 |
1021 | ==pub/TWiki/WysiwygPlugin/_kupu/refresh.txt== | Kupu 1.3.2 |
1022 | ==pub/TWiki/WysiwygPlugin/_kupu/roundup/kupuinit.js== | Kupu 1.3.2 |
1023 | ==pub/TWiki/WysiwygPlugin/_kupu/roundup/kupustyles.css== | Kupu 1.3.2 |
1024 | ==pub/TWiki/WysiwygPlugin/_kupu/silva/body.kupu== | Kupu 1.3.2 |
1025 | ==pub/TWiki/WysiwygPlugin/_kupu/silva/closed_arrow.gif== | Kupu 1.3.2 |
1026 | ==pub/TWiki/WysiwygPlugin/_kupu/silva/contextmenu.kupu== | Kupu 1.3.2 |
1027 | ==pub/TWiki/WysiwygPlugin/_kupu/silva/drawers.kupu== | Kupu 1.3.2 |
1028 | ==pub/TWiki/WysiwygPlugin/_kupu/silva/head.kupu== | Kupu 1.3.2 |
1029 | ==pub/TWiki/WysiwygPlugin/_kupu/silva/imagedrawer.xsl.pt== | Kupu 1.3.2 |
1030 | ==pub/TWiki/WysiwygPlugin/_kupu/silva/include.kupu== | Kupu 1.3.2 |
1031 | ==pub/TWiki/WysiwygPlugin/_kupu/silva/kupudrawerstyles.css== | Kupu 1.3.2 |
1032 | ==pub/TWiki/WysiwygPlugin/_kupu/silva/kupumacros.html== | Kupu 1.3.2 |
1033 | ==pub/TWiki/WysiwygPlugin/_kupu/silva/kupusilvainit.js== | Kupu 1.3.2 |
1034 | ==pub/TWiki/WysiwygPlugin/_kupu/silva/kupusilvatools.js== | Kupu 1.3.2 |
1035 | ==pub/TWiki/WysiwygPlugin/_kupu/silva/librarydrawer.xsl== | Kupu 1.3.2 |
1036 | ==pub/TWiki/WysiwygPlugin/_kupu/silva/opened_arrow.gif== | Kupu 1.3.2 |
1037 | ==pub/TWiki/WysiwygPlugin/_kupu/silva/saveonpart.kupu== | Kupu 1.3.2 |
1038 | ==pub/TWiki/WysiwygPlugin/_kupu/silva/toolbar.kupu== | Kupu 1.3.2 |
1039 | ==pub/TWiki/WysiwygPlugin/_kupu/silva/toolboxes.kupu== | Kupu 1.3.2 |
1040 | ==pub/TWiki/WysiwygPlugin/_kupu/silva/wire.kupu== | Kupu 1.3.2 |
1041 | ==pub/TWiki/WysiwygPlugin/_kupu/silva/xmlconfig.kupu== | Kupu 1.3.2 |
1042 | ==pub/TWiki/WysiwygPlugin/_kupu/tests/run_tests.html== | Kupu 1.3.2 |
1043 | ==pub/TWiki/WysiwygPlugin/_kupu/tests/test_beforeunload.js== | Kupu 1.3.2 |
1044 | ==pub/TWiki/WysiwygPlugin/_kupu/tests/test_kupubasetools.js== | Kupu 1.3.2 |
1045 | ==pub/TWiki/WysiwygPlugin/_kupu/tests/test_kupueditor.js== | Kupu 1.3.2 |
1046 | ==pub/TWiki/WysiwygPlugin/_kupu/tests/test_kupuhelpers.js== | Kupu 1.3.2 |
1047 | ==pub/TWiki/WysiwygPlugin/_kupu/tests/test_kupuinit.js== | Kupu 1.3.2 |
1048 | ==pub/TWiki/WysiwygPlugin/_kupu/tests/test_plone.js== | Kupu 1.3.2 |
1049 | ==pub/TWiki/WysiwygPlugin/_kupu/tests/test_xhtml.js== | Kupu 1.3.2 |
1050 | ==pub/TWiki/WysiwygPlugin/_kupu/tools/compress.py== | Kupu 1.3.2 |
1051 | ==pub/TWiki/WysiwygPlugin/_kupu/tools/convert_to_utf-8.py== | Kupu 1.3.2 |
1052 | ==pub/TWiki/WysiwygPlugin/_kupu/tools/makepox.py== | Kupu 1.3.2 |
1053 | ==pub/TWiki/WysiwygPlugin/_kupu/version.txt== | Kupu 1.3.2 |
1054 | ==pub/TWiki/WysiwygPlugin/_kupu/widgeteer/Makefile== | Kupu 1.3.2 |
1055 | ==pub/TWiki/WysiwygPlugin/_kupu/widgeteer/body.kupu== | Kupu 1.3.2 |
1056 | ==pub/TWiki/WysiwygPlugin/_kupu/widgeteer/browser.kupu== | Kupu 1.3.2 |
1057 | ==pub/TWiki/WysiwygPlugin/_kupu/widgeteer/dist.kupu== | Kupu 1.3.2 |
1058 | ==pub/TWiki/WysiwygPlugin/_kupu/widgeteer/empty.html== | Kupu 1.3.2 |
1059 | ==pub/TWiki/WysiwygPlugin/_kupu/widgeteer/head.kupu== | Kupu 1.3.2 |
1060 | ==pub/TWiki/WysiwygPlugin/_kupu/widgeteer/include.kupu== | Kupu 1.3.2 |
1061 | ==pub/TWiki/WysiwygPlugin/_kupu/widgeteer/kupuinit.js== | Kupu 1.3.2 |
1062 | ==pub/TWiki/WysiwygPlugin/_kupu/widgeteer/kupustart.js== | Kupu 1.3.2 |
1063 | ==pub/TWiki/WysiwygPlugin/_kupu/widgeteer/kupustyles.css== | Kupu 1.3.2 |
1064 | ==pub/TWiki/WysiwygPlugin/_kupu/widgeteer/make.bat== | Kupu 1.3.2 |
1065 | ==pub/TWiki/WysiwygPlugin/_kupu/widgeteer/wire.kupu== | Kupu 1.3.2 |
1066 | ==pub/TWiki/WysiwygPlugin/_kupu/widgeteer/xmlconfig.kupu== | Kupu 1.3.2 |
1067 | ==pub/TWiki/WysiwygPlugin/_kupu/zope2/__init__.py== | Kupu 1.3.2 |
1068 | ==pub/TWiki/WysiwygPlugin/_kupu/zope2/addKupuEditor.pt== | Kupu 1.3.2 |
1069 | ==pub/TWiki/WysiwygPlugin/_kupu/zope2/body.kupu== | Kupu 1.3.2 |
1070 | ==pub/TWiki/WysiwygPlugin/_kupu/zope2/contextmenu.kupu== | Kupu 1.3.2 |
1071 | ==pub/TWiki/WysiwygPlugin/_kupu/zope2/drawers.kupu== | Kupu 1.3.2 |
1072 | ==pub/TWiki/WysiwygPlugin/_kupu/zope2/example.pt== | Kupu 1.3.2 |
1073 | ==pub/TWiki/WysiwygPlugin/_kupu/zope2/head.kupu== | Kupu 1.3.2 |
1074 | ==pub/TWiki/WysiwygPlugin/_kupu/zope2/html.kupu== | Kupu 1.3.2 |
1075 | ==pub/TWiki/WysiwygPlugin/_kupu/zope2/include.kupu== | Kupu 1.3.2 |
1076 | ==pub/TWiki/WysiwygPlugin/_kupu/zope2/saveonpart.kupu== | Kupu 1.3.2 |
1077 | ==pub/TWiki/WysiwygPlugin/_kupu/zope2/sourceedit.kupu== | Kupu 1.3.2 |
1078 | ==pub/TWiki/WysiwygPlugin/_kupu/zope2/wire.kupu== | Kupu 1.3.2 |
1079 | ==pub/TWiki/WysiwygPlugin/_kupu/zope2/xmlconfig.kupu== | Kupu 1.3.2 |
1080 | ==pub/TWiki/WysiwygPlugin/_kupu/zope3/__init__.py== | Kupu 1.3.2 |
1081 | ==pub/TWiki/WysiwygPlugin/_kupu/zope3/browser/__init__.py== | Kupu 1.3.2 |
1082 | ==pub/TWiki/WysiwygPlugin/_kupu/zope3/browser/configure.zcml== | Kupu 1.3.2 |
1083 | ==pub/TWiki/WysiwygPlugin/_kupu/zope3/configure.zcml== | Kupu 1.3.2 |
1084 | ==pub/TWiki/WysiwygPlugin/_kupu/zope3/field.py== | Kupu 1.3.2 |
1085 | ==pub/TWiki/WysiwygPlugin/_kupu/zope3/interfaces.py== | Kupu 1.3.2 |
1086 | ==pub/TWiki/WysiwygPlugin/_kupu/tests/test_kupubasetools.js== | Kupu 1.3.2 |
1087 | ==pub/TWiki/WysiwygPlugin/_kupu/tests/test_kupueditor.js== | Kupu 1.3.2 |
1088 | ==pub/TWiki/WysiwygPlugin/_kupu/tests/test_kupuhelpers.js== | Kupu 1.3.2 |
1089 | ==pub/TWiki/WysiwygPlugin/_kupu/tests/test_kupuinit.js== | Kupu 1.3.2 |
1091 * Run ==%TOPIC%_installer== to automatically check and install other modules that this module depends on. You can also do this step manually. Dependencies:
1092 <table border="1"><tr><th>Name</th><th>Version</th><th>Description</th></tr><tr><td align="left">HTML::Parser</td><td align="left">>=3.28</td><td align="left">Required. Available from [[http://cpan.uwinnipeg.ca/search?query=HTML%3A%3AParser&mode=dist][CPAN]].</td></tr><tr><td align="left">HTML::Entities</td><td align="left">>=1.25</td><td align="left">Required. Available from [[http://cpan.uwinnipeg.ca/search?query=HTML%3A%3AEntities&mode=dist][CPAN]].</td></tr></table>
1093 * (Dakar) Visit =configure= in your TWiki installation, and enable the plugin in the {Plugins} section.
1094 * To enable the editor in one of your skins, add the following link to the skin alongside or in place of the existing 'edit' link:<br /><code><a href="%<nop>SCRIPTURLPATH%/edit%<nop>SCRIPTSUFFIX%/%<nop>WEB%/%<nop>TOPIC%?skin=kupu">Kupu</a></code><br />As you can see this is just a standard edit link with the 'kupu' skin in place of the usual edit skin. Here it is for this topic: <a href="%SCRIPTURLPATH%/edit%SCRIPTSUFFIX%/%WEB%/%TOPIC%?skin=kupu">Kupu</a>. Try clicking on it, but _do not save_!
1097 ---++ Plugin Configuration Settings
1098 * Set SHORTDESCRIPTION = Translator framework and WYSIWYG editor for TWiki topics
1099 * The name of the skin used to invoke a Wysiwyg editor.
1100 * Set WYSIWYGSKIN = kupu
1101 * Web/Topic name of a help page. Change this to point to your local version of the help page, which is brought up when the .
1102 * Set HELPPAGE = TWiki/WysiwygPlugin
1105 ---++ Other Settings
1108 The editor template includes a number of files that can be used for other settings. These files are *not* defined in the distribution, so that you can create your own local content.
1110 ---+++ %TWIKIWEB%.<nop>WysiwygPluginIcons
1111 You can define a list of icons that will be available in the Kupu editor when the %ATTACHURL%/smiley.png toolbar button is pressed. This topic has to contain a list of <IMG> tags. If present, the 'alt' text will be used in place of the <IMG> tag when translating from HTML to TML. Example:
1113 <img src="%PUBURL%/TWiki/TWikiDocGraphics/tip.gif" />
1114 <img src="%PUBURL%/TWiki/TWikiDocGraphics/warning.gif" />
1115 <img src="%PUBURL%/TWiki/TWikiDocGraphics/pencil.gif" />
1116 <img src="%PUBURL%/TWiki/TWikiDocGraphics/choice-yes.gif" />
1117 <img src="%PUBURL%/TWiki/TWikiDocGraphics/updated.gif" />
1118 <img src="%PUBURL%/TWiki/TWikiDocGraphics/help.gif" />
1119 <img src="%PUBURL%/TWiki/TWikiDocGraphics/new.gif" />
1120 <img src="%PUBURL%/TWiki/TWikiDocGraphics/starred.gif" />
1121 <img src="%PUBURL%/TWiki/TWikiDocGraphics/arrowright.gif" />
1125 ---+++ %TWIKIWEB%.<nop>WysiwygPluginStrings
1126 You can also define a list of strings that will be available for insertion in topics using the %ATTACHURL%/strings.png toolbar button. This topic has to contain a list of HTML 'option' tags. Example:
1128 <option value='-- <nop>%WIKIUSERNAME% - %DATE%'>Signature</option>
1129 <option value="%<nop>WIKINAME%">Wiki name (variable)</option>
1130 <option value='%<nop>SEARCH{"search for"}%'>Inline search (variable)</option>
1131 <option value='%<nop>INCLUDE{"topic or url"}%'>Include (variable)</option>
1132 <option value="%<nop>TOC%"> Table of Contents (variable)</option>
1133 <option value="%<nop>TOPIC%">Topic (variable)</option>
1134 <option value="%<nop>WEB%">Web (variable)</option>
1135 <option value="%<nop>DATE%"> Date (variable)</option>
1137 The bit between the > < =value= defines text in the drop-down box in the editor, and the =value= defines the actual string inserted in the topic.
1138 ---+++ %TWIKIWEB%.<nop>WysiwygPluginLocalHelp
1139 If it exists, the contents of this topic will be included and shown on the edit screen below the status bar. It is intended to be used for site-specific quick help information.
1142 ---+++ Editor control
1143 The global TWiki Variable =WYSIWYG_EXCLUDE= can be set to make the plugin sensitive to what is in a topic before allowing it to be edited. You can set it up to refuse to edit if
1147 * calls (e.g. =%VARIABLE{...}%=)
1150 * =Set WYSIWYG_EXCLUDE = variables,calls= (inactive; you need to remove monospacing from this setting to enable it)
1153 If you are using this plugin with TWiki-4.0.0 or later with =pattern= skin, the =%<nop>COMPOSER%= global TWiki variable is used to control the skin used for the WYSIWYG editor link. You can define this variable to the empty string to disable WYSIWYG editing on a site, per-web, per-user or per-topic basis.
1157 Most of the known problems with the plugin are actually problems with the Kupu editor or the browser rather than the plugin.
1160 WysiwygPlugin is Incompatible with plugins that expand non-standard syntax e.g. TWiki:Plugins.MathModePlugin (WysiwygPlugin)
1163 ---+++ Can't *undo* all functions (Kupu + browser)
1164 Due to limitations in the browser support for editing, not all functions can be undone. Also, the undo buffer can be cleared unexpectedly during editing, especially when using Internet Explorer.
1166 ---+++ Overlapping styles (WysiwygPlugin)
1167 Because TWiki uses a "best guess" approach to some formatting, it allows overlapping of tags in a way forbidden by HTML, it is impossible to guarantee 100% that formating in the original TWiki document will still be there when the same document is loaded and then saved through the WysiwygPlugin. The most obvious case of this is to do with styles. For example, the sentence
1169 ---+++ Support for PRE
1170 Because of limitations in the browsers, the editor does not support PRE blocks. All PRE blocks will be converted to TWiki verbatim blocks on save. This can cause some confusion, especially when editor formatting controls (such as "bold") have been used to format text in a PRE block. Users are advised to use only plain text in PRE (verbatim) blocks.
1174 This plugin is heavily based on the TWiki::Plugins.KupuEditorAddOn, and the authors of that add-on are therefore also credited as authors of this plugin.
1176 | Plugin Authors: | TWiki:Main.CrawfordCurrie http://www.c-dot.co.uk (from original work by TWiki:Main.RomainRaugi, TWiki:Main.DamienMandrioli, TWiki:Main.FredericLuddeni, and TWiki:Main.ColasNahaboo) |
1177 | Copyright | © ILOG 2005 http://www.ilog.fr |
1178 | Plugin Version: | 10613 |
1179 | Change History: | |
1184 -- TWiki:Main/CrawfordCurrie - 02:16:12 25 October 2006
1196 -- TWiki:Main/CrawfordCurrie - 02:19:17 26 June 2006
1207 | Plugin Version: | 9566 |
1208 | Change History: | |
1209 | 9565 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1890'>Item1890</a> <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1041'>Item1041</a> <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item944'>Item944</a> Much more aggressive cleanup of HTML pasted in from external sources. Excessively verbose HTML (e.g. from Outlook) was causing apparent infinite looing behaviour. |
1210 | 8867 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1176'>Item1176</a> commented out Cairo version of header handler |
1211 | 8780 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1625'>Item1625</a> disable expansion of twiki variables in urls where there are other twiki variables that can't be expanded |
1212 | 8779 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1530'>Item1530</a> support for templatetopic when editing new topics |
1213 | 8592 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1532'>Item1532</a> WysiwygPlugin: Added two more do-not-edit-if-topic-contains parameters, pre+comments |
1214 | 8590 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1532'>Item1532</a> WysiwygPlugin: Kenneths suggestion on proper handling of HTML comments (incl. change to kupu) |
1215 | 8572 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1529'>Item1529</a> evil, evil. The XMLSerializer in IE isn't happy serializing the DOM. I have no idea why. Kupu manages to get away with this because it passes the DOM through the XML validator, which I had to disable because it strips comments. So, for now, the IE implementation will strip comments - but at least you can save again |
1216 | 8538 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1501'>Item1501</a> table handling was a bit spazzy. Several problems fixed. |
1217 | 8535 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1518'>Item1518</a> moved icon and string lists into topics, updated screenshot |
1218 | 8531 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1392'>Item1392</a> reversed the sense of the navigate-away condition, again |
1219 | 8466 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1486'>Item1486</a> added WYSIWYG_EXCLUDE to allow exclusion of 'uneditable' content |
1220 | 8463 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1486'>Item1486</a> was stripping comments, wrongly. Had to disable the kupu filters completely, they just do too much damage. |
1221 | 8401 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1457'>Item1457</a> corrected problem with bullet list at top of topic |
1222 | 8388 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1445'>Item1445</a> fix for a javascript error, introduced by previous fix |
1223 | 8387 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1445'>Item1445</a> small usability improvements |
1224 | 8334 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item663'>Item663</a> TWiki.org doc merge: Fix incorrect link to kupu website |
1225 | 8327 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1411'>Item1411</a> handle case of the result of a TWiki variable being nopped |
1226 | 8312 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1317'>Item1317</a> wrong result returned from generation function when expanding HTML embedded in verbatim block |
1227 | 8301 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1397'>Item1397</a> removed excess space after sqaub links |
1228 | 8300 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1231'>Item1231</a> added %SPAN% to indicate a spanned-over cell in the editor. Improved handling of HTML in verbatim tags by inserting line breaks is the tag type calls for it, before removing the HTML. |
1229 | 8276 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1215'>Item1215</a> added WYSIWYG_ICONS and WYSIWYG_TAGS to support user customisation of icon images and twiki variables that can be inserted |
1230 | 8274 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1314'>Item1314</a> debugging in case the hang happens again; and made sure to default the editor just in case |
1231 | 8273 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1315'>Item1315</a> short forms must be terminated by one of the same characters that terminate wikiwords |
1232 | 8272 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1391'>Item1391</a> added special interpretation of IMG tags to expand selected TWiki variables within SRC attributes |
1233 | 8271 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1340'>Item1340</a> refined handling of NOP to cover abbrevs |
1234 | 8270 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1311'>Item1311</a> removed excess space inserted in headings |
1235 | 8269 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1339'>Item1339</a> changed from using arbitrary attribute for notoc to a new CSS class. Arbitrary attributes are stripped by Kupu before save. |
1236 | 8268 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1344'>Item1344</a> strip ^Ms inserted by Sarissa during serialisation on IE |
1237 | 8267 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1394'>Item1394</a> still can't get text styles to work properly in IE; but I am now firmly of the opinion that the fault lies with the browser, and not with Kupu. |
1238 | 8232 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1341'>Item1341</a> added appropriate CSS class |
1239 | 8152 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1313'>Item1313</a> added caveat about editing complex HTML and mixed HTML-TML |
1240 | 8151 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1334'>Item1334</a> headers not handled properly in Cairo version |
1241 | 8108 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1318'>Item1318</a> corrected table/list parser for tables embedded in bulleted lists |
1242 | 8106 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1310'>Item1310</a> support for <nop/> |
1243 | 8105 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1317'>Item1317</a> support for limited case of nopped variable |
1244 | 8104 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1320'>Item1320</a> corrected interpretation of relative URL path in [[]] |
1245 | 8091 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1259'>Item1259</a> changed comment handling; rather than trying to create HTML, which gets munged, create an HTML comment. This will only be editable by switching to source view, but hey, it's supposed to be WYSIWYG. Note that this also means that comments in pasted HTML should be retained now |
1246 | 8063 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1042'>Item1042</a> spec of SCRIPTURL changed |
1247 | 7904 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1189'>Item1189</a> reverting accidental checkin of experimental code |
1248 | 7903 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1189'>Item1189</a> filter whitelist is not good enough; need to generate B and I nodes. templates/ pub/TWiki/WysiwygPlugin |
1249 | 7902 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1189'>Item1189</a> it took bloody ages to track down, but finally discovered that bold and italic were being filtered out of spans by Kupu 1.3.2.... too smart for it's own good. So added them to the filter whitelist, and it works again. |
1250 | 7873 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1189'>Item1189</a> added pre save filter to try and find where the attributes are disappearing to in FF |
1251 | 7872 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1187'>Item1187</a> for lack of an s on an RE, the nation was lost (well, the multi-line comment actually). Thanks Kenneth! |
1252 | 7871 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item859'>Item859</a> solved issue with non-display of inserted images. Was due to the use of an onSubmit handler to close the dialog, rather than an onLoad handler triggered when the IFRAME that contains the result is loaded. |
1253 | 7869 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1172'>Item1172</a> had to rewrite big chunk of the table popup to get it working with 1.3.2 |
1254 | 7858 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1151'>Item1151</a> rewrote link handlings stuff to leverage browser better |
1255 | 7854 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1175'>Item1175</a> escape wikiwords within squabs |
1256 | 7815 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1158'>Item1158</a> works for Cairo now as well |
1257 | 7814 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1158'>Item1158</a> first implementation of AJAX interface to allow selectoin of topics from other webs |
1258 | 7812 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1154'>Item1154</a> removed non-existent scull.gif |
1259 | 7811 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1155'>Item1155</a> added extra recursion block, as Item1155 suggests it is needed |
1260 | 7801 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1042'>Item1042</a> All sorts of clever tricks to handle expansion/compression of a subset of TWiki variables when they are used in URLs. Not a complete solution, but better than it was. |
1261 | 7799 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1024'>Item1024</a> caught out by recursive call to beforeCommonTagsHandler in Cairo (nasty) |
1262 | 7798 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1042'>Item1042</a> whoops, broke \t conversion in Cairo |
1263 | 7789 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1140'>Item1140</a> testcase for 1140 |
1264 | 7788 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1140'>Item1140</a> fix rewriting of img src urls (and updated MANIFEST for Kupu1.3.2) |
1265 | 7786 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1042'>Item1042</a> extensive improvements to variable and URL recognition and conversion |
1266 | 7766 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item856'>Item856</a> added doc on EDIT_SKIN to the plugin |
1267 | 7712 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1074'>Item1074</a> upgrade to Kupu 1.3.2 complete (at last) |
1268 | 7710 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1074'>Item1074</a> Fixed source edit mode |
1269 | 7709 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1074'>Item1074</a> tidied up broken toolbar. There are still known issues |
1270 | 7700 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1074'>Item1074</a> first pass at moving to Kupu 1.3.2. |
1271 | 7673 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1037'>Item1037</a> insert wikiword only if selection is zero length |
1272 | 7672 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item977'>Item977</a> changed to remove dangerous Cairo-based assumption, and use context ids instead |
1273 | 7630 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1025'>Item1025</a> added 'escape clause' for old handlers implemented to support old TWiki releases without warnings |
1274 | 7506 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item941'>Item941</a> Eliminated the last of the dynamic globals to try and solve saving problem. Can;t test with mod_perl, but is fine with speedycgi AFAICT |
1275 | 7456 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item873'>Item873</a> minor issue; replace br with \n in pre |
1276 | 7455 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item873'>Item873</a> obvious problem parsing closing pre tag on same line as open tag |
1277 | 7453 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item710'>Item710</a> Handling HTML comments |
1278 | 7452 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item876'>Item876</a> Item945: Item876: spacing around table cells, correct handling of variables. Had to compromise on handling [[]] but I think it's for the best. |
1279 | 7430 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item871'>Item871</a> made sure that brackets are generated for non-wikiwords |
1280 | 7425 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item928'>Item928</a> removed special interpretation of mailto links |
1281 | 7424 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item866'>Item866</a> extended URL parsing to handle MAINWEB and TWIKIWEB twiki variables, in the same hacky way as the core. |
1282 | 7416 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item870'>Item870</a> a couple of corner-cases for correct handling of twiki variables |
1283 | 7401 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item899'>Item899</a> changed list generation to use spaces instead of tabs |
1284 | 7265 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item180'>Item180</a> removed pointless, outdated dependency check from DateFieldPlugin |
1285 | 6935 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item622'>Item622</a> reverted 3 specs to tabs in Set lines in plugins topics for kompatterbility with Kigh-roe |
1286 | 6905 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item622'>Item622</a> tabs -> 3 spacesto avoid confusing the users |
1287 | 6850 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item638'>Item638</a> added instruction to run configure to all install docs (I hope) |
1288 | 6827 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item569'>Item569</a> added default RELEASE to everything that had a version, and removed a load of dead code that was getting in the way |
1289 | 6758 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item569'>Item569</a> computed version numbers for plugins from the repository rev they were built from. |
1290 | 6504 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item436'>Item436</a> incremented vernos of all changed plugins |
1291 | 6485 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item429'>Item429</a> trying to make access controls clearer |
1292 | 6401 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item340'>Item340</a> re-initialisation bug found by ColasNahaboo when using mod_perl; fixed by correctly re-initialising the parse stack for each run of the convertor |
1293 | 6284 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item340'>Item340</a> Release 0.16 of WysiwygPlugin |
1294 | 6279 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item340'>Item340</a> bugfixes for release 0.16 of WysiwygPlugin |
1295 | 6261 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item335'>Item335</a> Switched PNGs to indexed mode, as transparency doesn't work on IE for RGB images |
1296 | 6238 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item332'>Item332</a> Added context identifier to WysiwygPlugin, and a button to the pattern view template. If WysiwygPlugin is enabled, then the button will appear. Neat, huh? |
1297 | 6195 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item196'>Item196</a> getting plugin test suites to pass. Doesn't mean the plugins actually work, just that the test suites run (which is a good indicator) |
1298 | 6174 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item168'>Item168</a> checkpoint checking for 0.16 |
1299 | 6151 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item186'>Item186</a> more minor updates |
1300 | 6150 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item168'>Item168</a> new icons, and a couple of bugfixes, to WysiwygPlugin |
1301 | 6092 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item196'>Item196</a> more plugin and contrib fixes for develop; mainly just moving tests around and making sure they all pass. |
1302 | 6067 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item138'>Item138</a> had to change to using beforeCommonTagsHandler and also escape % signs to prevent TWiki from rendering internal tags (as reported by Colas) |
1303 | 5979 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item168'>Item168</a> corrected stupid error on IE; added screenshot |
1304 | 5977 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item168'>Item168</a> release 0.13 |
1305 | 5948 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item168'>Item168</a> nearly ready for 0.13 |
1306 | 5937 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item168'>Item168</a> corrected images, twikified all images |
1307 | 5936 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item168'>Item168</a> the import from cvs has screwed images |
1308 | 5934 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item168'>Item168</a> twikified icon images, and renamed some images to be more intention-revealing |
1309 | 5739 | 0.12 beta release |
1311 | 5714 | Tidied up installer, documentation. Release 0.10 |
1312 | 5712 | pre-release 0.06 |
1313 | 5706 | Version 0.05 |
1314 | 5705 | Checkpoint checking - version 0.03 |
1315 | 5702 | cvsrmtee old files |
1316 | 5701 | Check in for prototype release |
1317 | 5700 | Check in for prototype release |
1318 | 5699 | Checkpoint |
1319 | 5698 | Most of the toolboxes are working again |
1320 | 5693 | Initial commit; doesn't do much except run tests |
1323 -- TWiki:Main/CrawfordCurrie - 21:45:16 31 March 2006
1334 * Watch out for the <> button on the right of the toolbar. It lets you switch into an HTML view, which can be very useful when you can't get your formatting right.
1335 * In TWiki, a totally empty table cell causes the cell to be merged with the cell immediately to the left. To make this effect more transparent in the editor, these empty cells are shown with the text "%<nop>SPAN%" in them. In Kupu, if you add %<nop>SPAN% to a table cell, then all the rest of the content will be thrown away and the cell will be converted to an empty table cell. Note that this only applies to tables that are converted to TWiki syntax.
1338 | ==lib/TWiki/Plugins/WysiwygPlugin/HTML2TML/WC.pm== | Perl module |
1339 | ==lib/TWiki/Plugins/WysiwygPlugin/HTML2TML/Leaf.pm== | Perl module |
1340 | ==lib/TWiki/Plugins/WysiwygPlugin/HTML2TML/Node.pm== | Perl module |
1341 | ==lib/TWiki/Plugins/WysiwygPlugin/HTML2TML.pm== | Perl module |
1342 | ==lib/TWiki/Plugins/WysiwygPlugin.pm== | Perl module |
1343 | ==lib/TWiki/Plugins/WysiwygPlugin/TML2HTML.pm== | Perl module |
1344 | ==data/TWiki/WysiwygPlugin.txt== | Documentation and settings |
1345 | ==data/TWiki/WysiwygPluginTopicLister.txt== | Special AJAX topic |
1346 | ==pub/TWiki/WysiwygPlugin/kuputwiki.css== | Kupu customisation |
1347 | ==pub/TWiki/WysiwygPlugin/twikitools.js== | Kupu customisation |
1348 | ==pub/TWiki/WysiwygPlugin/kupuinit.js== | Kupu customisation |
1349 | ==pub/TWiki/WysiwygPlugin/kupustart.js== | Kupu customisation |
1350 | ==pub/TWiki/WysiwygPlugin/bold.png== | Button image |
1351 | ==pub/TWiki/WysiwygPlugin/cancel.png== | Button image |
1352 | ==pub/TWiki/WysiwygPlugin/code.png== | Button image |
1353 | ==pub/TWiki/WysiwygPlugin/definition-list.png== | Button image |
1354 | ==pub/TWiki/WysiwygPlugin/exthyperlink.png== | Button image |
1355 | ==pub/TWiki/WysiwygPlugin/help.png== | Button image |
1356 | ==pub/TWiki/WysiwygPlugin/indent.png== | Button image |
1357 | ==pub/TWiki/WysiwygPlugin/inthyperlink.png== | Button image |
1358 | ==pub/TWiki/WysiwygPlugin/italic.png== | Button image |
1359 | ==pub/TWiki/WysiwygPlugin/new-attachment.png== | Button image |
1360 | ==pub/TWiki/WysiwygPlugin/new-image.png== | Button image |
1361 | ==pub/TWiki/WysiwygPlugin/nop.png== | Button image |
1362 | ==pub/TWiki/WysiwygPlugin/ordered-list.png== | Button image |
1363 | ==pub/TWiki/WysiwygPlugin/outdent.png== | Button image |
1364 | ==pub/TWiki/WysiwygPlugin/redo.png== | Button image |
1365 | ==pub/TWiki/WysiwygPlugin/remove.png== | Button image |
1366 | ==pub/TWiki/WysiwygPlugin/save.png== | Button image |
1367 | ==pub/TWiki/WysiwygPlugin/separator.png== | Button image |
1368 | ==pub/TWiki/WysiwygPlugin/smiley.png== | Button image |
1369 | ==pub/TWiki/WysiwygPlugin/strings.png== | Button image |
1370 | ==pub/TWiki/WysiwygPlugin/table.png== | Button image |
1371 | ==pub/TWiki/WysiwygPlugin/text-color.png== | Button image |
1372 | ==pub/TWiki/WysiwygPlugin/undo.png== | Button image |
1373 | ==pub/TWiki/WysiwygPlugin/unordered-list.png== | Button image |
1374 | ==pub/TWiki/WysiwygPlugin/vars.png== | Button image |
1375 | ==pub/TWiki/WysiwygPlugin/verbatim.png== | Button image |
1376 | ==pub/TWiki/WysiwygPlugin/verbatim-watermark.png== | Watermark |
1377 | ==pub/TWiki/WysiwygPlugin/screenshot.jpg== | Screen shot |
1378 | ==pub/TWiki/WysiwygPlugin/view-source.png== | Button image |
1379 | ==templates/edit.kupu.tmpl== | Template for an edit using kupu |
1380 | ==templates/view.kupuxml.tmpl== | Template for AJAX data |
1381 | ==templates/attachtables.kupu.tmpl== | Attachment table rendering for editor |
1382 | ==templates/view.kupu.tmpl== | Template for a kupu skin view, used by the editor |
1383 | ==tools/html2tml.pl== | Stand-alone convertor script |
1384 | ==pub/TWiki/WysiwygPlugin/_kupu/Extensions/Install.py== | Kupu 1.3.2 |
1385 | ==pub/TWiki/WysiwygPlugin/_kupu/Makefile== | Kupu 1.3.2 |
1386 | ==pub/TWiki/WysiwygPlugin/_kupu/__init__.py== | Kupu 1.3.2 |
1387 | ==pub/TWiki/WysiwygPlugin/_kupu/apache-lenya/README.txt== | Kupu 1.3.2 |
1388 | ==pub/TWiki/WysiwygPlugin/_kupu/apache-lenya/kupu/body.kupu== | Kupu 1.3.2 |
1389 | ==pub/TWiki/WysiwygPlugin/_kupu/apache-lenya/kupu/exit.kupu== | Kupu 1.3.2 |
1390 | ==pub/TWiki/WysiwygPlugin/_kupu/apache-lenya/kupu/include.kupu== | Kupu 1.3.2 |
1391 | ==pub/TWiki/WysiwygPlugin/_kupu/apache-lenya/kupu/kupudrawerstyles.css== | Kupu 1.3.2 |
1392 | ==pub/TWiki/WysiwygPlugin/_kupu/apache-lenya/kupu/kupumacros.html== | Kupu 1.3.2 |
1393 | ==pub/TWiki/WysiwygPlugin/_kupu/apache-lenya/kupu/kupustyles.css== | Kupu 1.3.2 |
1394 | ==pub/TWiki/WysiwygPlugin/_kupu/apache-lenya/kupu/lenya.js== | Kupu 1.3.2 |
1395 | ==pub/TWiki/WysiwygPlugin/_kupu/apache-lenya/kupu/lenya.kupu== | Kupu 1.3.2 |
1396 | ==pub/TWiki/WysiwygPlugin/_kupu/apache-lenya/kupu/toolbar.kupu== | Kupu 1.3.2 |
1397 | ==pub/TWiki/WysiwygPlugin/_kupu/apache-lenya/kupu/toolboxes.kupu== | Kupu 1.3.2 |
1398 | ==pub/TWiki/WysiwygPlugin/_kupu/apache-lenya/kupu/wire.kupu== | Kupu 1.3.2 |
1399 | ==pub/TWiki/WysiwygPlugin/_kupu/apache-lenya/kupu/xmlconfig.kupu== | Kupu 1.3.2 |
1400 | ==pub/TWiki/WysiwygPlugin/_kupu/apache-lenya/lenya/content2edit.xsl== | Kupu 1.3.2 |
1401 | ==pub/TWiki/WysiwygPlugin/_kupu/apache-lenya/lenya/drawers/imagedrawer.xsl== | Kupu 1.3.2 |
1402 | ==pub/TWiki/WysiwygPlugin/_kupu/apache-lenya/lenya/drawers/imagelibraries.xml.jx== | Kupu 1.3.2 |
1403 | ==pub/TWiki/WysiwygPlugin/_kupu/apache-lenya/lenya/drawers/kupudrawerstyles.css== | Kupu 1.3.2 |
1404 | ==pub/TWiki/WysiwygPlugin/_kupu/apache-lenya/lenya/drawers/libraries.xml.jx== | Kupu 1.3.2 |
1405 | ==pub/TWiki/WysiwygPlugin/_kupu/apache-lenya/lenya/drawers/linkdrawer.xsl== | Kupu 1.3.2 |
1406 | ==pub/TWiki/WysiwygPlugin/_kupu/apache-lenya/lenya/drawers/linklibraries.xml.jx== | Kupu 1.3.2 |
1407 | ==pub/TWiki/WysiwygPlugin/_kupu/apache-lenya/lenya/drawers/publication_image_library.xml.jx== | Kupu 1.3.2 |
1408 | ==pub/TWiki/WysiwygPlugin/_kupu/apache-lenya/lenya/drawers/sitetree_link_library.xml.jx== | Kupu 1.3.2 |
1409 | ==pub/TWiki/WysiwygPlugin/_kupu/apache-lenya/lenya/i18n.xsl== | Kupu 1.3.2 |
1410 | ==pub/TWiki/WysiwygPlugin/_kupu/apache-lenya/lenya/images/emblem-generic.png== | Kupu 1.3.2 |
1411 | ==pub/TWiki/WysiwygPlugin/_kupu/apache-lenya/lenya/images/exit.gif== | Kupu 1.3.2 |
1412 | ==pub/TWiki/WysiwygPlugin/_kupu/apache-lenya/lenya/images/page-image.png== | Kupu 1.3.2 |
1413 | ==pub/TWiki/WysiwygPlugin/_kupu/apache-lenya/lenya/images/pub-image.png== | Kupu 1.3.2 |
1414 | ==pub/TWiki/WysiwygPlugin/_kupu/apache-lenya/lenya/images/right_arrow.png== | Kupu 1.3.2 |
1415 | ==pub/TWiki/WysiwygPlugin/_kupu/apache-lenya/lenya/images/sitetree-link.png== | Kupu 1.3.2 |
1416 | ==pub/TWiki/WysiwygPlugin/_kupu/apache-lenya/lenya/kupumacros.xsl== | Kupu 1.3.2 |
1417 | ==pub/TWiki/WysiwygPlugin/_kupu/apache-lenya/lenya/kupusave.xsl== | Kupu 1.3.2 |
1418 | ==pub/TWiki/WysiwygPlugin/_kupu/apache-lenya/lenya/page2kupu.xsl== | Kupu 1.3.2 |
1419 | ==pub/TWiki/WysiwygPlugin/_kupu/apache-lenya/lenya/pageassets2kupulibrary.xsl== | Kupu 1.3.2 |
1420 | ==pub/TWiki/WysiwygPlugin/_kupu/apache-lenya/lenya/sitetree2kupulibrary.xsl== | Kupu 1.3.2 |
1421 | ==pub/TWiki/WysiwygPlugin/_kupu/cnf/head.kupu== | Kupu 1.3.2 |
1422 | ==pub/TWiki/WysiwygPlugin/_kupu/cnf/include.kupu== | Kupu 1.3.2 |
1423 | ==pub/TWiki/WysiwygPlugin/_kupu/cnf/toolboxes.kupu== | Kupu 1.3.2 |
1424 | ==pub/TWiki/WysiwygPlugin/_kupu/cnf/wire.kupu== | Kupu 1.3.2 |
1425 | ==pub/TWiki/WysiwygPlugin/_kupu/cnf/xmlconfig.kupu== | Kupu 1.3.2 |
1426 | ==pub/TWiki/WysiwygPlugin/_kupu/common/fulldoc.html== | Kupu 1.3.2 |
1427 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupu-pox.cgi== | Kupu 1.3.2 |
1428 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupu.cgi== | Kupu 1.3.2 |
1429 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupu.html== | Kupu 1.3.2 |
1430 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupu.pox== | Kupu 1.3.2 |
1431 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupu.pox.jspx== | Kupu 1.3.2 |
1432 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupubasetools.js== | Kupu 1.3.2 |
1433 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupubeforeunload.js== | Kupu 1.3.2 |
1434 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupublank.html== | Kupu 1.3.2 |
1435 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupucleanupexpressions.js== | Kupu 1.3.2 |
1436 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupucnf.html== | Kupu 1.3.2 |
1437 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupucnftable.js== | Kupu 1.3.2 |
1438 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupucontentfilters.js== | Kupu 1.3.2 |
1439 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupucontentstyles.css== | Kupu 1.3.2 |
1440 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupucontextmenu.js== | Kupu 1.3.2 |
1441 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupudrawers.js== | Kupu 1.3.2 |
1442 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupudrawers/allimages.xml== | Kupu 1.3.2 |
1443 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupudrawers/drawer.xsl== | Kupu 1.3.2 |
1444 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupudrawers/drawer.xsl.metadata== | Kupu 1.3.2 |
1445 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupudrawers/imagelibrary.xml== | Kupu 1.3.2 |
1446 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupudrawers/kupubuttons.xml== | Kupu 1.3.2 |
1447 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupudrawers/linklibrary.xml== | Kupu 1.3.2 |
1448 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupudrawers/logos.xml== | Kupu 1.3.2 |
1449 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupudrawers/logos/bitflux_logo.png== | Kupu 1.3.2 |
1450 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupudrawers/logos/bitflux_logo_preview.png== | Kupu 1.3.2 |
1451 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupudrawers/logos/bubnbros.png== | Kupu 1.3.2 |
1452 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupudrawers/logos/bubnbros_preview.png== | Kupu 1.3.2 |
1453 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupudrawers/logos/codespeak_logo.png== | Kupu 1.3.2 |
1454 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupudrawers/logos/codespeak_logo_preview.png== | Kupu 1.3.2 |
1455 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupudrawers/logos/diver_logo.png== | Kupu 1.3.2 |
1456 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupudrawers/logos/diver_logo_preview.png== | Kupu 1.3.2 |
1457 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupudrawers/logos/eth_logo.png== | Kupu 1.3.2 |
1458 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupudrawers/logos/eth_logo_preview.png== | Kupu 1.3.2 |
1459 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupudrawers/logos/infrae_logo.png== | Kupu 1.3.2 |
1460 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupudrawers/logos/infrae_logo_preview.png== | Kupu 1.3.2 |
1461 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupudrawers/logos/kupu_logo.png== | Kupu 1.3.2 |
1462 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupudrawers/logos/kupu_logo_preview.png== | Kupu 1.3.2 |
1463 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupudrawers/logos/lenya_logo.png== | Kupu 1.3.2 |
1464 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupudrawers/logos/lenya_logo_preview.png== | Kupu 1.3.2 |
1465 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupudrawers/logos/opensource.png== | Kupu 1.3.2 |
1466 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupudrawers/logos/opensource_preview.png== | Kupu 1.3.2 |
1467 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupudrawers/logos/oscom4_banner.gif== | Kupu 1.3.2 |
1468 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupudrawers/logos/oscom4_banner_preview.png== | Kupu 1.3.2 |
1469 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupudrawers/logos/oscom_logo.png== | Kupu 1.3.2 |
1470 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupudrawers/logos/oscom_logo_preview.png== | Kupu 1.3.2 |
1471 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupudrawers/logos/plone_logo.png== | Kupu 1.3.2 |
1472 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupudrawers/logos/plone_logo_preview.png== | Kupu 1.3.2 |
1473 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupudrawers/logos/pypy_logo.png== | Kupu 1.3.2 |
1474 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupudrawers/logos/pypy_logo_preview.png== | Kupu 1.3.2 |
1475 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupudrawers/logos/silva_logo.png== | Kupu 1.3.2 |
1476 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupudrawers/logos/silva_logo_preview.png== | Kupu 1.3.2 |
1477 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupudrawers/logos/twiki_logo.gif== | Kupu 1.3.2 |
1478 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupudrawers/logos/twiki_logo.png== | Kupu 1.3.2 |
1479 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupudrawers/logos/zea_logo.png== | Kupu 1.3.2 |
1480 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupudrawers/logos/zea_logo_preview.png== | Kupu 1.3.2 |
1481 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupudrawers/logos/zope_logo.png== | Kupu 1.3.2 |
1482 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupudrawers/logos/zope_logo_preview.png== | Kupu 1.3.2 |
1483 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupudrawerstyles.css== | Kupu 1.3.2 |
1484 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupueditor.js== | Kupu 1.3.2 |
1485 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuform.html== | Kupu 1.3.2 |
1486 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuhelpers.js== | Kupu 1.3.2 |
1487 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/background-color.png== | Kupu 1.3.2 |
1488 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/bold.gif== | Kupu 1.3.2 |
1489 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/bold.png== | Kupu 1.3.2 |
1490 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/buttons.png== | Kupu 1.3.2 |
1491 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/caret.png== | Kupu 1.3.2 |
1492 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/closed.png== | Kupu 1.3.2 |
1493 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/copy.png== | Kupu 1.3.2 |
1494 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/create-new.png== | Kupu 1.3.2 |
1495 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/cut.png== | Kupu 1.3.2 |
1496 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/definitionlist.png== | Kupu 1.3.2 |
1497 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/document.png== | Kupu 1.3.2 |
1498 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/exit.gif== | Kupu 1.3.2 |
1499 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/exthyperlink.png== | Kupu 1.3.2 |
1500 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/folder.png== | Kupu 1.3.2 |
1501 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/fonts.png== | Kupu 1.3.2 |
1502 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/format.png== | Kupu 1.3.2 |
1503 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/hr.png== | Kupu 1.3.2 |
1504 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/image.png== | Kupu 1.3.2 |
1505 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/indent.gif== | Kupu 1.3.2 |
1506 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/indent.png== | Kupu 1.3.2 |
1507 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/inthyperlink.png== | Kupu 1.3.2 |
1508 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/italic.gif== | Kupu 1.3.2 |
1509 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/italic.png== | Kupu 1.3.2 |
1510 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/justify-center.png== | Kupu 1.3.2 |
1511 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/justify-full.png== | Kupu 1.3.2 |
1512 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/justify-left.png== | Kupu 1.3.2 |
1513 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/justify-right.png== | Kupu 1.3.2 |
1514 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/kupu_icon.gif== | Kupu 1.3.2 |
1515 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/kupulibrary.png== | Kupu 1.3.2 |
1516 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/kupusearch_icon.gif== | Kupu 1.3.2 |
1517 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/larger-text.png== | Kupu 1.3.2 |
1518 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/link.png== | Kupu 1.3.2 |
1519 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/opened.png== | Kupu 1.3.2 |
1520 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/ordered-list.png== | Kupu 1.3.2 |
1521 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/outdent.png== | Kupu 1.3.2 |
1522 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/paste.png== | Kupu 1.3.2 |
1523 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/redo-disabled.png== | Kupu 1.3.2 |
1524 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/redo.png== | Kupu 1.3.2 |
1525 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/remove.png== | Kupu 1.3.2 |
1526 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/save.png== | Kupu 1.3.2 |
1527 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/size.png== | Kupu 1.3.2 |
1528 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/smaller-text.png== | Kupu 1.3.2 |
1529 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/space.gif== | Kupu 1.3.2 |
1530 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/strikethrough.png== | Kupu 1.3.2 |
1531 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/subscript.png== | Kupu 1.3.2 |
1532 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/superscript.png== | Kupu 1.3.2 |
1533 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/table.png== | Kupu 1.3.2 |
1534 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/text-check.png== | Kupu 1.3.2 |
1535 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/text-color.png== | Kupu 1.3.2 |
1536 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/toolbarbg_blue.png== | Kupu 1.3.2 |
1537 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/toolbarbg_green.png== | Kupu 1.3.2 |
1538 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/toolbarbg_purple.png== | Kupu 1.3.2 |
1539 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/toolbarbg_wood.png== | Kupu 1.3.2 |
1540 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/underline.gif== | Kupu 1.3.2 |
1541 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/underline.png== | Kupu 1.3.2 |
1542 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/undo-disabled.png== | Kupu 1.3.2 |
1543 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/undo.png== | Kupu 1.3.2 |
1544 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/unlink.png== | Kupu 1.3.2 |
1545 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/unordered-list.png== | Kupu 1.3.2 |
1546 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/view-source.png== | Kupu 1.3.2 |
1547 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/zoom-in.gif== | Kupu 1.3.2 |
1548 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuimages/zoom-out.gif== | Kupu 1.3.2 |
1549 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuinit.js== | Kupu 1.3.2 |
1550 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuinit_experimental.js== | Kupu 1.3.2 |
1551 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuinit_form.js== | Kupu 1.3.2 |
1552 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuinit_genericelements.js== | Kupu 1.3.2 |
1553 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuinit_multi.js== | Kupu 1.3.2 |
1554 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuinspector.js== | Kupu 1.3.2 |
1555 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuloggers.js== | Kupu 1.3.2 |
1556 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupumacros.html== | Kupu 1.3.2 |
1557 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupumulti.html== | Kupu 1.3.2 |
1558 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupumultieditor.js== | Kupu 1.3.2 |
1559 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupunoi18n.js== | Kupu 1.3.2 |
1560 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupupopups/image.html== | Kupu 1.3.2 |
1561 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupupopups/link.html== | Kupu 1.3.2 |
1562 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupusaveonpart.js== | Kupu 1.3.2 |
1563 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupusourceedit.js== | Kupu 1.3.2 |
1564 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupuspellchecker.js== | Kupu 1.3.2 |
1565 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupustart.js== | Kupu 1.3.2 |
1566 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupustart_form.js== | Kupu 1.3.2 |
1567 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupustart_multi.js== | Kupu 1.3.2 |
1568 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kupustyles.css== | Kupu 1.3.2 |
1569 | ==pub/TWiki/WysiwygPlugin/_kupu/common/kuputoolcollapser.js== | Kupu 1.3.2 |
1570 | ==pub/TWiki/WysiwygPlugin/_kupu/common/sarissa.js== | Kupu 1.3.2 |
1571 | ==pub/TWiki/WysiwygPlugin/_kupu/common/sarissa_ieemu_xpath.js== | Kupu 1.3.2 |
1572 | ==pub/TWiki/WysiwygPlugin/_kupu/common/spellcheck.cgi== | Kupu 1.3.2 |
1573 | ==pub/TWiki/WysiwygPlugin/_kupu/config.py== | Kupu 1.3.2 |
1574 | ==pub/TWiki/WysiwygPlugin/_kupu/configure.zcml== | Kupu 1.3.2 |
1575 | ==pub/TWiki/WysiwygPlugin/_kupu/default/body.kupu== | Kupu 1.3.2 |
1576 | ==pub/TWiki/WysiwygPlugin/_kupu/default/colorchooser.kupu== | Kupu 1.3.2 |
1577 | ==pub/TWiki/WysiwygPlugin/_kupu/default/contextmenu.kupu== | Kupu 1.3.2 |
1578 | ==pub/TWiki/WysiwygPlugin/_kupu/default/drawers.kupu== | Kupu 1.3.2 |
1579 | ==pub/TWiki/WysiwygPlugin/_kupu/default/form.kupu== | Kupu 1.3.2 |
1580 | ==pub/TWiki/WysiwygPlugin/_kupu/default/head.kupu== | Kupu 1.3.2 |
1581 | ==pub/TWiki/WysiwygPlugin/_kupu/default/html.kupu== | Kupu 1.3.2 |
1582 | ==pub/TWiki/WysiwygPlugin/_kupu/default/include.kupu== | Kupu 1.3.2 |
1583 | ==pub/TWiki/WysiwygPlugin/_kupu/default/save.kupu== | Kupu 1.3.2 |
1584 | ==pub/TWiki/WysiwygPlugin/_kupu/default/saveonpart.kupu== | Kupu 1.3.2 |
1585 | ==pub/TWiki/WysiwygPlugin/_kupu/default/sourceedit.kupu== | Kupu 1.3.2 |
1586 | ==pub/TWiki/WysiwygPlugin/_kupu/default/spellchecker.kupu== | Kupu 1.3.2 |
1587 | ==pub/TWiki/WysiwygPlugin/_kupu/default/toolbar.kupu== | Kupu 1.3.2 |
1588 | ==pub/TWiki/WysiwygPlugin/_kupu/default/toolboxes.kupu== | Kupu 1.3.2 |
1589 | ==pub/TWiki/WysiwygPlugin/_kupu/default/wire.kupu== | Kupu 1.3.2 |
1590 | ==pub/TWiki/WysiwygPlugin/_kupu/default/xmlconfig.kupu== | Kupu 1.3.2 |
1591 | ==pub/TWiki/WysiwygPlugin/_kupu/dist-apache-lenya.kupu== | Kupu 1.3.2 |
1592 | ==pub/TWiki/WysiwygPlugin/_kupu/dist-cnf.kupu== | Kupu 1.3.2 |
1593 | ==pub/TWiki/WysiwygPlugin/_kupu/dist-form.kupu== | Kupu 1.3.2 |
1594 | ==pub/TWiki/WysiwygPlugin/_kupu/dist-multi.kupu== | Kupu 1.3.2 |
1595 | ==pub/TWiki/WysiwygPlugin/_kupu/dist-plone.kupu== | Kupu 1.3.2 |
1596 | ==pub/TWiki/WysiwygPlugin/_kupu/dist-silva.kupu== | Kupu 1.3.2 |
1597 | ==pub/TWiki/WysiwygPlugin/_kupu/dist-zope2.kupu== | Kupu 1.3.2 |
1598 | ==pub/TWiki/WysiwygPlugin/_kupu/dist.kupu== | Kupu 1.3.2 |
1599 | ==pub/TWiki/WysiwygPlugin/_kupu/doc/BEFOREUNLOAD.txt== | Kupu 1.3.2 |
1600 | ==pub/TWiki/WysiwygPlugin/_kupu/doc/CHANGES.txt== | Kupu 1.3.2 |
1601 | ==pub/TWiki/WysiwygPlugin/_kupu/doc/CONTRIBUTING.txt== | Kupu 1.3.2 |
1602 | ==pub/TWiki/WysiwygPlugin/_kupu/doc/CREDITS.txt== | Kupu 1.3.2 |
1603 | ==pub/TWiki/WysiwygPlugin/_kupu/doc/CUSTOMIZING.txt== | Kupu 1.3.2 |
1604 | ==pub/TWiki/WysiwygPlugin/_kupu/doc/EXTENDING.txt== | Kupu 1.3.2 |
1605 | ==pub/TWiki/WysiwygPlugin/_kupu/doc/FAQ.txt== | Kupu 1.3.2 |
1606 | ==pub/TWiki/WysiwygPlugin/_kupu/doc/IMAGEUPLOADER.txt== | Kupu 1.3.2 |
1607 | ==pub/TWiki/WysiwygPlugin/_kupu/doc/INSTALL.txt== | Kupu 1.3.2 |
1608 | ==pub/TWiki/WysiwygPlugin/_kupu/doc/JSAPI.txt== | Kupu 1.3.2 |
1609 | ==pub/TWiki/WysiwygPlugin/_kupu/doc/LIBRARIES.txt== | Kupu 1.3.2 |
1610 | ==pub/TWiki/WysiwygPlugin/_kupu/doc/LICENSE.txt== | Kupu 1.3.2 |
1611 | ==pub/TWiki/WysiwygPlugin/_kupu/doc/OLDBROWSERS.txt== | Kupu 1.3.2 |
1612 | ==pub/TWiki/WysiwygPlugin/_kupu/doc/PLONE2.txt== | Kupu 1.3.2 |
1613 | ==pub/TWiki/WysiwygPlugin/_kupu/doc/README.txt== | Kupu 1.3.2 |
1614 | ==pub/TWiki/WysiwygPlugin/_kupu/doc/STYLEGUIDE.txt== | Kupu 1.3.2 |
1615 | ==pub/TWiki/WysiwygPlugin/_kupu/doc/TEMPLATE-SYSTEM.txt== | Kupu 1.3.2 |
1616 | ==pub/TWiki/WysiwygPlugin/_kupu/doc/TODO.txt== | Kupu 1.3.2 |
1617 | ==pub/TWiki/WysiwygPlugin/_kupu/doc/ZOPE2.txt== | Kupu 1.3.2 |
1618 | ==pub/TWiki/WysiwygPlugin/_kupu/doc/default.css== | Kupu 1.3.2 |
1619 | ==pub/TWiki/WysiwygPlugin/_kupu/doc/docutils.conf== | Kupu 1.3.2 |
1620 | ==pub/TWiki/WysiwygPlugin/_kupu/doc/file-template== | Kupu 1.3.2 |
1621 | ==pub/TWiki/WysiwygPlugin/_kupu/form/body.kupu== | Kupu 1.3.2 |
1622 | ==pub/TWiki/WysiwygPlugin/_kupu/form/head.kupu== | Kupu 1.3.2 |
1623 | ==pub/TWiki/WysiwygPlugin/_kupu/form/include.kupu== | Kupu 1.3.2 |
1624 | ==pub/TWiki/WysiwygPlugin/_kupu/form/save.kupu== | Kupu 1.3.2 |
1625 | ==pub/TWiki/WysiwygPlugin/_kupu/i18n/kupu-cs.po== | Kupu 1.3.2 |
1626 | ==pub/TWiki/WysiwygPlugin/_kupu/i18n/kupu-da.po== | Kupu 1.3.2 |
1627 | ==pub/TWiki/WysiwygPlugin/_kupu/i18n/kupu-de.po== | Kupu 1.3.2 |
1628 | ==pub/TWiki/WysiwygPlugin/_kupu/i18n/kupu-el.po== | Kupu 1.3.2 |
1629 | ==pub/TWiki/WysiwygPlugin/_kupu/i18n/kupu-eo.po== | Kupu 1.3.2 |
1630 | ==pub/TWiki/WysiwygPlugin/_kupu/i18n/kupu-fi.po== | Kupu 1.3.2 |
1631 | ==pub/TWiki/WysiwygPlugin/_kupu/i18n/kupu-fr.po== | Kupu 1.3.2 |
1632 | ==pub/TWiki/WysiwygPlugin/_kupu/i18n/kupu-he.po== | Kupu 1.3.2 |
1633 | ==pub/TWiki/WysiwygPlugin/_kupu/i18n/kupu-ja.po== | Kupu 1.3.2 |
1634 | ==pub/TWiki/WysiwygPlugin/_kupu/i18n/kupu-nl.po== | Kupu 1.3.2 |
1635 | ==pub/TWiki/WysiwygPlugin/_kupu/i18n/kupu-pt-br.po== | Kupu 1.3.2 |
1636 | ==pub/TWiki/WysiwygPlugin/_kupu/i18n/kupu-pt.po== | Kupu 1.3.2 |
1637 | ==pub/TWiki/WysiwygPlugin/_kupu/i18n/kupu-sr-Latn.po== | Kupu 1.3.2 |
1638 | ==pub/TWiki/WysiwygPlugin/_kupu/i18n/kupu-sr.po== | Kupu 1.3.2 |
1639 | ==pub/TWiki/WysiwygPlugin/_kupu/i18n/kupu-zh-cn.po== | Kupu 1.3.2 |
1640 | ==pub/TWiki/WysiwygPlugin/_kupu/i18n/kupu-zh.po== | Kupu 1.3.2 |
1641 | ==pub/TWiki/WysiwygPlugin/_kupu/i18n/kupu.pot== | Kupu 1.3.2 |
1642 | ==pub/TWiki/WysiwygPlugin/_kupu/i18n/kupuconfig-da.po== | Kupu 1.3.2 |
1643 | ==pub/TWiki/WysiwygPlugin/_kupu/i18n/kupuconfig-fr.po== | Kupu 1.3.2 |
1644 | ==pub/TWiki/WysiwygPlugin/_kupu/i18n/kupuconfig-ja.po== | Kupu 1.3.2 |
1645 | ==pub/TWiki/WysiwygPlugin/_kupu/i18n/kupuconfig.pot== | Kupu 1.3.2 |
1646 | ==pub/TWiki/WysiwygPlugin/_kupu/include.kupu== | Kupu 1.3.2 |
1647 | ==pub/TWiki/WysiwygPlugin/_kupu/kupu-i18nextract-sa-diff.patch== | Kupu 1.3.2 |
1648 | ==pub/TWiki/WysiwygPlugin/_kupu/kupu_icon.gif== | Kupu 1.3.2 |
1649 | ==pub/TWiki/WysiwygPlugin/_kupu/make-jspx.xsl== | Kupu 1.3.2 |
1650 | ==pub/TWiki/WysiwygPlugin/_kupu/make.bat== | Kupu 1.3.2 |
1651 | ==pub/TWiki/WysiwygPlugin/_kupu/make.xsl== | Kupu 1.3.2 |
1652 | ==pub/TWiki/WysiwygPlugin/_kupu/multi/body.kupu== | Kupu 1.3.2 |
1653 | ==pub/TWiki/WysiwygPlugin/_kupu/multi/head.kupu== | Kupu 1.3.2 |
1654 | ==pub/TWiki/WysiwygPlugin/_kupu/multi/include.kupu== | Kupu 1.3.2 |
1655 | ==pub/TWiki/WysiwygPlugin/_kupu/multi/save.kupu== | Kupu 1.3.2 |
1656 | ==pub/TWiki/WysiwygPlugin/_kupu/multi/toolboxes.kupu== | Kupu 1.3.2 |
1657 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/ReftextField.py== | Kupu 1.3.2 |
1658 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/TODO.txt== | Kupu 1.3.2 |
1659 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/__init__.py== | Kupu 1.3.2 |
1660 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/beforeunload.kupu== | Kupu 1.3.2 |
1661 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/body.kupu== | Kupu 1.3.2 |
1662 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/drawers.kupu== | Kupu 1.3.2 |
1663 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/head.kupu== | Kupu 1.3.2 |
1664 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/html2captioned.py== | Kupu 1.3.2 |
1665 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/include.kupu== | Kupu 1.3.2 |
1666 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/interfaces.py== | Kupu 1.3.2 |
1667 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu2html.py== | Kupu 1.3.2 |
1668 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu_config.pt== | Kupu 1.3.2 |
1669 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu_plone_layer/contentUsesKupu.py== | Kupu 1.3.2 |
1670 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu_plone_layer/convertContentForKupu.py== | Kupu 1.3.2 |
1671 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu_plone_layer/emptypage.pt== | Kupu 1.3.2 |
1672 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu_plone_layer/kupuGetResourceTypes.py== | Kupu 1.3.2 |
1673 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu_plone_layer/kupuInfoForBrains.py== | Kupu 1.3.2 |
1674 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu_plone_layer/kupuMyItems.py== | Kupu 1.3.2 |
1675 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu_plone_layer/kupuRecentItems.py== | Kupu 1.3.2 |
1676 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu_plone_layer/kupuSearch.py== | Kupu 1.3.2 |
1677 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu_plone_layer/kupuUploadImage.py== | Kupu 1.3.2 |
1678 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu_plone_layer/kupuUploadImage.py.metadata== | Kupu 1.3.2 |
1679 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu_plone_layer/kupu_wysiwyg_support.html== | Kupu 1.3.2 |
1680 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu_plone_layer/kupublank.html.html== | Kupu 1.3.2 |
1681 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu_plone_layer/kupucollection.xml.pt== | Kupu 1.3.2 |
1682 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu_plone_layer/kupucollection.xml.pt.metadata== | Kupu 1.3.2 |
1683 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu_plone_layer/kupulibraries.xml.pt== | Kupu 1.3.2 |
1684 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu_plone_layer/kupumyitems.xml.pt== | Kupu 1.3.2 |
1685 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu_plone_layer/kupuplone.css.dtml== | Kupu 1.3.2 |
1686 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu_plone_layer/kupuploneeditor.js== | Kupu 1.3.2 |
1687 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu_plone_layer/kupuploneinit.js== | Kupu 1.3.2 |
1688 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu_plone_layer/kupuploneui.js== | Kupu 1.3.2 |
1689 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu_plone_layer/kupurecentitems.xml.pt== | Kupu 1.3.2 |
1690 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu_plone_layer/kupusaveonpart.js== | Kupu 1.3.2 |
1691 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu_plone_layer/kupusearch.xml.pt== | Kupu 1.3.2 |
1692 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu_plone_layer/plonekupuimages/anchor.gif== | Kupu 1.3.2 |
1693 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu_plone_layer/plonekupuimages/bgcolor.gif== | Kupu 1.3.2 |
1694 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu_plone_layer/plonekupuimages/bold.gif== | Kupu 1.3.2 |
1695 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu_plone_layer/plonekupuimages/center.gif== | Kupu 1.3.2 |
1696 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu_plone_layer/plonekupuimages/definitionlist.gif== | Kupu 1.3.2 |
1697 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu_plone_layer/plonekupuimages/delete_icon.gif== | Kupu 1.3.2 |
1698 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu_plone_layer/plonekupuimages/hr.gif== | Kupu 1.3.2 |
1699 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu_plone_layer/plonekupuimages/hyperlink.gif== | Kupu 1.3.2 |
1700 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu_plone_layer/plonekupuimages/indent.gif== | Kupu 1.3.2 |
1701 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu_plone_layer/plonekupuimages/italic.gif== | Kupu 1.3.2 |
1702 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu_plone_layer/plonekupuimages/left_just.gif== | Kupu 1.3.2 |
1703 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu_plone_layer/plonekupuimages/list.gif== | Kupu 1.3.2 |
1704 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu_plone_layer/plonekupuimages/numbered_list.gif== | Kupu 1.3.2 |
1705 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu_plone_layer/plonekupuimages/outdent.gif== | Kupu 1.3.2 |
1706 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu_plone_layer/plonekupuimages/redo.gif== | Kupu 1.3.2 |
1707 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu_plone_layer/plonekupuimages/right_just.gif== | Kupu 1.3.2 |
1708 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu_plone_layer/plonekupuimages/space.gif== | Kupu 1.3.2 |
1709 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu_plone_layer/plonekupuimages/strikethrough.gif== | Kupu 1.3.2 |
1710 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu_plone_layer/plonekupuimages/subscript.gif== | Kupu 1.3.2 |
1711 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu_plone_layer/plonekupuimages/superscript.gif== | Kupu 1.3.2 |
1712 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu_plone_layer/plonekupuimages/table.gif== | Kupu 1.3.2 |
1713 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu_plone_layer/plonekupuimages/textcolor.gif== | Kupu 1.3.2 |
1714 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu_plone_layer/plonekupuimages/tools.gif== | Kupu 1.3.2 |
1715 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu_plone_layer/plonekupuimages/underline.gif== | Kupu 1.3.2 |
1716 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu_plone_layer/plonekupuimages/undo.gif== | Kupu 1.3.2 |
1717 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu_plone_layer/plonekupuimages/unformat.gif== | Kupu 1.3.2 |
1718 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu_plone_layer/plonekupuimages/view-source.gif== | Kupu 1.3.2 |
1719 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu_plone_layer/resolveuid.py== | Kupu 1.3.2 |
1720 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu_plone_layer/sample-kupu-customisation-policy.py== | Kupu 1.3.2 |
1721 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/kupu_plone_layer/wysiwyg_support.pt== | Kupu 1.3.2 |
1722 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/libraries.pt== | Kupu 1.3.2 |
1723 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/librarytool.py== | Kupu 1.3.2 |
1724 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/permissions.py== | Kupu 1.3.2 |
1725 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/plonelibrarytool.py== | Kupu 1.3.2 |
1726 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/resource_types.pt== | Kupu 1.3.2 |
1727 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/scanner.py== | Kupu 1.3.2 |
1728 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/sourceedit.kupu== | Kupu 1.3.2 |
1729 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/tests/__init__.py== | Kupu 1.3.2 |
1730 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/tests/framework.py== | Kupu 1.3.2 |
1731 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/tests/input/baduid.in== | Kupu 1.3.2 |
1732 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/tests/input/linked.in== | Kupu 1.3.2 |
1733 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/tests/input/minimal.in== | Kupu 1.3.2 |
1734 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/tests/input/notcaptioned.in== | Kupu 1.3.2 |
1735 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/tests/input/notquoted.in== | Kupu 1.3.2 |
1736 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/tests/input/simple.in== | Kupu 1.3.2 |
1737 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/tests/output/baduid.out== | Kupu 1.3.2 |
1738 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/tests/output/linked.out== | Kupu 1.3.2 |
1739 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/tests/output/minimal.out== | Kupu 1.3.2 |
1740 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/tests/output/notcaptioned.out== | Kupu 1.3.2 |
1741 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/tests/output/notquoted.out== | Kupu 1.3.2 |
1742 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/tests/output/simple.out== | Kupu 1.3.2 |
1743 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/tests/runalltests.py== | Kupu 1.3.2 |
1744 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/tests/runme.cmd== | Kupu 1.3.2 |
1745 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/tests/test_browserSupportsKupu.py== | Kupu 1.3.2 |
1746 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/tests/test_html2captioned.py== | Kupu 1.3.2 |
1747 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/tests/test_librarymanager.py== | Kupu 1.3.2 |
1748 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/tests/test_resourcetypemapper.py== | Kupu 1.3.2 |
1749 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/toolbar.kupu== | Kupu 1.3.2 |
1750 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/wire.kupu== | Kupu 1.3.2 |
1751 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/wysiwyg_support.kupu== | Kupu 1.3.2 |
1752 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/xmlconfig.kupu== | Kupu 1.3.2 |
1753 | ==pub/TWiki/WysiwygPlugin/_kupu/plone/zmi_docs.pt== | Kupu 1.3.2 |
1754 | ==pub/TWiki/WysiwygPlugin/_kupu/python/__init__.py== | Kupu 1.3.2 |
1755 | ==pub/TWiki/WysiwygPlugin/_kupu/python/nationalizer.py== | Kupu 1.3.2 |
1756 | ==pub/TWiki/WysiwygPlugin/_kupu/python/spellcheck.py== | Kupu 1.3.2 |
1757 | ==pub/TWiki/WysiwygPlugin/_kupu/refresh.txt== | Kupu 1.3.2 |
1758 | ==pub/TWiki/WysiwygPlugin/_kupu/roundup/kupuinit.js== | Kupu 1.3.2 |
1759 | ==pub/TWiki/WysiwygPlugin/_kupu/roundup/kupustyles.css== | Kupu 1.3.2 |
1760 | ==pub/TWiki/WysiwygPlugin/_kupu/silva/body.kupu== | Kupu 1.3.2 |
1761 | ==pub/TWiki/WysiwygPlugin/_kupu/silva/closed_arrow.gif== | Kupu 1.3.2 |
1762 | ==pub/TWiki/WysiwygPlugin/_kupu/silva/contextmenu.kupu== | Kupu 1.3.2 |
1763 | ==pub/TWiki/WysiwygPlugin/_kupu/silva/drawers.kupu== | Kupu 1.3.2 |
1764 | ==pub/TWiki/WysiwygPlugin/_kupu/silva/head.kupu== | Kupu 1.3.2 |
1765 | ==pub/TWiki/WysiwygPlugin/_kupu/silva/imagedrawer.xsl.pt== | Kupu 1.3.2 |
1766 | ==pub/TWiki/WysiwygPlugin/_kupu/silva/include.kupu== | Kupu 1.3.2 |
1767 | ==pub/TWiki/WysiwygPlugin/_kupu/silva/kupudrawerstyles.css== | Kupu 1.3.2 |
1768 | ==pub/TWiki/WysiwygPlugin/_kupu/silva/kupumacros.html== | Kupu 1.3.2 |
1769 | ==pub/TWiki/WysiwygPlugin/_kupu/silva/kupusilvainit.js== | Kupu 1.3.2 |
1770 | ==pub/TWiki/WysiwygPlugin/_kupu/silva/kupusilvatools.js== | Kupu 1.3.2 |
1771 | ==pub/TWiki/WysiwygPlugin/_kupu/silva/librarydrawer.xsl== | Kupu 1.3.2 |
1772 | ==pub/TWiki/WysiwygPlugin/_kupu/silva/opened_arrow.gif== | Kupu 1.3.2 |
1773 | ==pub/TWiki/WysiwygPlugin/_kupu/silva/saveonpart.kupu== | Kupu 1.3.2 |
1774 | ==pub/TWiki/WysiwygPlugin/_kupu/silva/toolbar.kupu== | Kupu 1.3.2 |
1775 | ==pub/TWiki/WysiwygPlugin/_kupu/silva/toolboxes.kupu== | Kupu 1.3.2 |
1776 | ==pub/TWiki/WysiwygPlugin/_kupu/silva/wire.kupu== | Kupu 1.3.2 |
1777 | ==pub/TWiki/WysiwygPlugin/_kupu/silva/xmlconfig.kupu== | Kupu 1.3.2 |
1778 | ==pub/TWiki/WysiwygPlugin/_kupu/tests/run_tests.html== | Kupu 1.3.2 |
1779 | ==pub/TWiki/WysiwygPlugin/_kupu/tests/test_beforeunload.js== | Kupu 1.3.2 |
1780 | ==pub/TWiki/WysiwygPlugin/_kupu/tests/test_kupubasetools.js== | Kupu 1.3.2 |
1781 | ==pub/TWiki/WysiwygPlugin/_kupu/tests/test_kupueditor.js== | Kupu 1.3.2 |
1782 | ==pub/TWiki/WysiwygPlugin/_kupu/tests/test_kupuhelpers.js== | Kupu 1.3.2 |
1783 | ==pub/TWiki/WysiwygPlugin/_kupu/tests/test_kupuinit.js== | Kupu 1.3.2 |
1784 | ==pub/TWiki/WysiwygPlugin/_kupu/tests/test_plone.js== | Kupu 1.3.2 |
1785 | ==pub/TWiki/WysiwygPlugin/_kupu/tests/test_xhtml.js== | Kupu 1.3.2 |
1786 | ==pub/TWiki/WysiwygPlugin/_kupu/tools/compress.py== | Kupu 1.3.2 |
1787 | ==pub/TWiki/WysiwygPlugin/_kupu/tools/convert_to_utf-8.py== | Kupu 1.3.2 |
1788 | ==pub/TWiki/WysiwygPlugin/_kupu/tools/makepox.py== | Kupu 1.3.2 |
1789 | ==pub/TWiki/WysiwygPlugin/_kupu/version.txt== | Kupu 1.3.2 |
1790 | ==pub/TWiki/WysiwygPlugin/_kupu/widgeteer/Makefile== | Kupu 1.3.2 |
1791 | ==pub/TWiki/WysiwygPlugin/_kupu/widgeteer/body.kupu== | Kupu 1.3.2 |
1792 | ==pub/TWiki/WysiwygPlugin/_kupu/widgeteer/browser.kupu== | Kupu 1.3.2 |
1793 | ==pub/TWiki/WysiwygPlugin/_kupu/widgeteer/dist.kupu== | Kupu 1.3.2 |
1794 | ==pub/TWiki/WysiwygPlugin/_kupu/widgeteer/empty.html== | Kupu 1.3.2 |
1795 | ==pub/TWiki/WysiwygPlugin/_kupu/widgeteer/head.kupu== | Kupu 1.3.2 |
1796 | ==pub/TWiki/WysiwygPlugin/_kupu/widgeteer/include.kupu== | Kupu 1.3.2 |
1797 | ==pub/TWiki/WysiwygPlugin/_kupu/widgeteer/kupuinit.js== | Kupu 1.3.2 |
1798 | ==pub/TWiki/WysiwygPlugin/_kupu/widgeteer/kupustart.js== | Kupu 1.3.2 |
1799 | ==pub/TWiki/WysiwygPlugin/_kupu/widgeteer/kupustyles.css== | Kupu 1.3.2 |
1800 | ==pub/TWiki/WysiwygPlugin/_kupu/widgeteer/make.bat== | Kupu 1.3.2 |
1801 | ==pub/TWiki/WysiwygPlugin/_kupu/widgeteer/wire.kupu== | Kupu 1.3.2 |
1802 | ==pub/TWiki/WysiwygPlugin/_kupu/widgeteer/xmlconfig.kupu== | Kupu 1.3.2 |
1803 | ==pub/TWiki/WysiwygPlugin/_kupu/zope2/__init__.py== | Kupu 1.3.2 |
1804 | ==pub/TWiki/WysiwygPlugin/_kupu/zope2/addKupuEditor.pt== | Kupu 1.3.2 |
1805 | ==pub/TWiki/WysiwygPlugin/_kupu/zope2/body.kupu== | Kupu 1.3.2 |
1806 | ==pub/TWiki/WysiwygPlugin/_kupu/zope2/contextmenu.kupu== | Kupu 1.3.2 |
1807 | ==pub/TWiki/WysiwygPlugin/_kupu/zope2/drawers.kupu== | Kupu 1.3.2 |
1808 | ==pub/TWiki/WysiwygPlugin/_kupu/zope2/example.pt== | Kupu 1.3.2 |
1809 | ==pub/TWiki/WysiwygPlugin/_kupu/zope2/head.kupu== | Kupu 1.3.2 |
1810 | ==pub/TWiki/WysiwygPlugin/_kupu/zope2/html.kupu== | Kupu 1.3.2 |
1811 | ==pub/TWiki/WysiwygPlugin/_kupu/zope2/include.kupu== | Kupu 1.3.2 |
1812 | ==pub/TWiki/WysiwygPlugin/_kupu/zope2/saveonpart.kupu== | Kupu 1.3.2 |
1813 | ==pub/TWiki/WysiwygPlugin/_kupu/zope2/sourceedit.kupu== | Kupu 1.3.2 |
1814 | ==pub/TWiki/WysiwygPlugin/_kupu/zope2/wire.kupu== | Kupu 1.3.2 |
1815 | ==pub/TWiki/WysiwygPlugin/_kupu/zope2/xmlconfig.kupu== | Kupu 1.3.2 |
1816 | ==pub/TWiki/WysiwygPlugin/_kupu/zope3/__init__.py== | Kupu 1.3.2 |
1817 | ==pub/TWiki/WysiwygPlugin/_kupu/zope3/browser/__init__.py== | Kupu 1.3.2 |
1818 | ==pub/TWiki/WysiwygPlugin/_kupu/zope3/browser/configure.zcml== | Kupu 1.3.2 |
1819 | ==pub/TWiki/WysiwygPlugin/_kupu/zope3/configure.zcml== | Kupu 1.3.2 |
1820 | ==pub/TWiki/WysiwygPlugin/_kupu/zope3/field.py== | Kupu 1.3.2 |
1821 | ==pub/TWiki/WysiwygPlugin/_kupu/zope3/interfaces.py== | Kupu 1.3.2 |
1822 | ==pub/TWiki/WysiwygPlugin/_kupu/tests/test_kupubasetools.js== | Kupu 1.3.2 |
1823 | ==pub/TWiki/WysiwygPlugin/_kupu/tests/test_kupueditor.js== | Kupu 1.3.2 |
1824 | ==pub/TWiki/WysiwygPlugin/_kupu/tests/test_kupuhelpers.js== | Kupu 1.3.2 |
1825 | ==pub/TWiki/WysiwygPlugin/_kupu/tests/test_kupuinit.js== | Kupu 1.3.2 |
1828 <table border="1"><tr><th>Name</th><th>Version</th><th>Description</th></tr><tr><td align="left">HTML::Parser</td><td align="left">Required. Available from [[http://cpan.uwinnipeg.ca/search?query=HTML%3A%3AParser&mode=dist][CPAN]].</td></tr><tr><td align="left">HTML::Entities</td><td align="left">Required. Available from [[http://cpan.uwinnipeg.ca/search?query=HTML%3A%3AEntities&mode=dist][CPAN]].</td></tr></table>
1830 *If you want to set up Kupu as your default editor*, then you can set the =EDIT_SKIN= TWiki variable wherever you want.
1831 * <nop>Set EDIT_SKIN = kupu
1832 Set it in a user topic to set it for one user. Set it in WebPreferences to set it for a single web. Or set it in your global TWiki preferences to set it for your whole site!
1836 * some or all of HTML tags (e.g. =<br />= or =<div>=), or
1837 * simple variables (e.g. =%<nop>VAR%=) or
1838 * calls (e.g. =%VARIABLE{...}%=)
1839 * PRE blocks (=<pre>=)
1840 * HTML comments (=<!--= ... =-->=)
1844 * =Set WYSIWYG_EXCLUDE = variables,calls= (inactive; you need to remove monospacing from this setting to enable it)
1847 | Plugin Version: | 8670 |
1848 | Change History: <!-- Most recent first --> ||
1849 | Dependencies: | <table border="1"><tr><th>Name</th><th>Version</th><th>Description</th></tr><tr><td align="left">HTML::Parser</td><td align="left">Required. Available from [[http://cpan.uwinnipeg.ca/search?query=HTML%3A%3AParser&mode=dist][CPAN]].</td></tr><tr><td align="left">HTML::Entities</td><td align="left">Required. Available from [[http://cpan.uwinnipeg.ca/search?query=HTML%3A%3AEntities&mode=dist][CPAN]].</td></tr></table> |
1850 | Perl Version: | 5.0 |
1851 | Plugin Home: | TWiki:Plugins/%TOPIC% |
1854 -- TWiki:Main/CrawfordCurrie - 23:00:26 01 February 2006