[cvs] commit: horde/config prefs.php.dist framework/Editor/Editor htmlarea.php horde/services/editor/htmlarea/plugins/ContextMenu context-menu.js menu.css horde/services/editor/htmlarea/plugins/ContextMenu/lang de.js el.js en.js nl.js ...

Marko Djukic mdjukic at horde.org
Sat Sep 4 09:06:32 PDT 2004


mdjukic     2004-09-04 09:06:32 PDT

  Modified files:
    config               prefs.php.dist 
    Editor/Editor        htmlarea.php 
  Added files:
    services/editor/htmlarea/plugins/ContextMenu context-menu.js 
                                                 menu.css 
    services/editor/htmlarea/plugins/ContextMenu/lang de.js el.js 
                                                      en.js nl.js 
    services/editor/htmlarea/plugins/TableOperations 
                                                     table-operations.js 
    services/editor/htmlarea/plugins/TableOperations/img 
                                                         cell-delete.gif 
                                                         cell-insert-after.gif 
                                                         cell-insert-before.gif 
                                                         cell-merge.gif 
                                                         cell-prop.gif 
                                                         cell-split.gif 
                                                         col-delete.gif 
                                                         col-insert-after.gif 
                                                         col-insert-before.gif 
                                                         col-split.gif 
                                                         row-delete.gif 
                                                         row-insert-above.gif 
                                                         row-insert-under.gif 
                                                         row-prop.gif 
                                                         row-split.gif 
                                                         table-prop.gif 
    services/editor/htmlarea/plugins/TableOperations/lang cz.js 
                                                          da.js 
                                                          de.js 
                                                          el.js 
                                                          en.js 
                                                          fi.js 
                                                          hu.js 
                                                          it.js 
                                                          nl.js 
                                                          no.js 
                                                          ro.js 
  Log:
  The htmlarea editor used for richt text editing can be extended by the use of
  plugins.
  
  The attached patch implements the right click context menu and the table
  operations toolbar.  Enabling/disabling of these take place via the Horde
  preferences.
  
  The used plugins are part of the standard htmlarea distribution.
  
  Personnaly I'm not happy with the fact that the window.onload attribute has to
  be set. If this is not done, code will execute before it is loaded.
  
  Submitted by: Roel Gloudemans <roel at gloudemans.info>
  
  Revision  Changes    Path
  1.16      +29 -7     framework/Editor/Editor/htmlarea.php
  1.68      +26 -1     horde/config/prefs.php.dist
  1.1       +416 -0    horde/services/editor/htmlarea/plugins/ContextMenu/context-menu.js (new)
  1.1       +59 -0     horde/services/editor/htmlarea/plugins/ContextMenu/lang/de.js (new)
  1.1       +57 -0     horde/services/editor/htmlarea/plugins/ContextMenu/lang/el.js (new)
  1.1       +66 -0     horde/services/editor/htmlarea/plugins/ContextMenu/lang/en.js (new)
  1.1       +66 -0     horde/services/editor/htmlarea/plugins/ContextMenu/lang/nl.js (new)
  1.1       +64 -0     horde/services/editor/htmlarea/plugins/ContextMenu/menu.css (new)
  1.1       +1 -0      horde/services/editor/htmlarea/plugins/TableOperations/img/cell-delete.gif (new)
  1.1       +1 -0      horde/services/editor/htmlarea/plugins/TableOperations/img/cell-insert-after.gif (new)
  1.1       +1 -0      horde/services/editor/htmlarea/plugins/TableOperations/img/cell-insert-before.gif (new)
  1.1       +1 -0      horde/services/editor/htmlarea/plugins/TableOperations/img/cell-merge.gif (new)
  1.1       +1 -0      horde/services/editor/htmlarea/plugins/TableOperations/img/cell-prop.gif (new)
  1.1       +1 -0      horde/services/editor/htmlarea/plugins/TableOperations/img/cell-split.gif (new)
  1.1       +1 -0      horde/services/editor/htmlarea/plugins/TableOperations/img/col-delete.gif (new)
  1.1       +1 -0      horde/services/editor/htmlarea/plugins/TableOperations/img/col-insert-after.gif (new)
  1.1       +1 -0      horde/services/editor/htmlarea/plugins/TableOperations/img/col-insert-before.gif (new)
  1.1       +1 -0      horde/services/editor/htmlarea/plugins/TableOperations/img/col-split.gif (new)
  1.1       +1 -0      horde/services/editor/htmlarea/plugins/TableOperations/img/row-delete.gif (new)
  1.1       +1 -0      horde/services/editor/htmlarea/plugins/TableOperations/img/row-insert-above.gif (new)
  1.1       +1 -0      horde/services/editor/htmlarea/plugins/TableOperations/img/row-insert-under.gif (new)
  1.1       +1 -0      horde/services/editor/htmlarea/plugins/TableOperations/img/row-prop.gif (new)
  1.1       +1 -0      horde/services/editor/htmlarea/plugins/TableOperations/img/row-split.gif (new)
  1.1       +1 -0      horde/services/editor/htmlarea/plugins/TableOperations/img/table-prop.gif (new)
  1.1       +90 -0     horde/services/editor/htmlarea/plugins/TableOperations/lang/cz.js (new)
  1.1       +90 -0     horde/services/editor/htmlarea/plugins/TableOperations/lang/da.js (new)
  1.1       +81 -0     horde/services/editor/htmlarea/plugins/TableOperations/lang/de.js (new)
  1.1       +81 -0     horde/services/editor/htmlarea/plugins/TableOperations/lang/el.js (new)
  1.1       +90 -0     horde/services/editor/htmlarea/plugins/TableOperations/lang/en.js (new)
  1.1       +66 -0     horde/services/editor/htmlarea/plugins/TableOperations/lang/fi.js (new)
  1.1       +63 -0     horde/services/editor/htmlarea/plugins/TableOperations/lang/hu.js (new)
  1.1       +81 -0     horde/services/editor/htmlarea/plugins/TableOperations/lang/it.js (new)
  1.1       +90 -0     horde/services/editor/htmlarea/plugins/TableOperations/lang/nl.js (new)
  1.1       +91 -0     horde/services/editor/htmlarea/plugins/TableOperations/lang/no.js (new)
  1.1       +90 -0     horde/services/editor/htmlarea/plugins/TableOperations/lang/ro.js (new)
  1.1       +1160 -0   horde/services/editor/htmlarea/plugins/TableOperations/table-operations.js (new)

  Chora Links:
  http://cvs.horde.org/diff.php/framework/Editor/Editor/htmlarea.php?r1=1.15&r2=1.16&ty=u
  http://cvs.horde.org/diff.php/horde/config/prefs.php.dist?r1=1.67&r2=1.68&ty=u
  http://cvs.horde.org/co.php/horde/services/editor/htmlarea/plugins/ContextMenu/context-menu.js?r=1.1
  http://cvs.horde.org/co.php/horde/services/editor/htmlarea/plugins/ContextMenu/lang/de.js?r=1.1
  http://cvs.horde.org/co.php/horde/services/editor/htmlarea/plugins/ContextMenu/lang/el.js?r=1.1
  http://cvs.horde.org/co.php/horde/services/editor/htmlarea/plugins/ContextMenu/lang/en.js?r=1.1
  http://cvs.horde.org/co.php/horde/services/editor/htmlarea/plugins/ContextMenu/lang/nl.js?r=1.1
  http://cvs.horde.org/co.php/horde/services/editor/htmlarea/plugins/ContextMenu/menu.css?r=1.1
  http://cvs.horde.org/co.php/horde/services/editor/htmlarea/plugins/TableOperations/img/cell-delete.gif?r=1.1
  http://cvs.horde.org/co.php/horde/services/editor/htmlarea/plugins/TableOperations/img/cell-insert-after.gif?r=1.1
  http://cvs.horde.org/co.php/horde/services/editor/htmlarea/plugins/TableOperations/img/cell-insert-before.gif?r=1.1
  http://cvs.horde.org/co.php/horde/services/editor/htmlarea/plugins/TableOperations/img/cell-merge.gif?r=1.1
  http://cvs.horde.org/co.php/horde/services/editor/htmlarea/plugins/TableOperations/img/cell-prop.gif?r=1.1
  http://cvs.horde.org/co.php/horde/services/editor/htmlarea/plugins/TableOperations/img/cell-split.gif?r=1.1
  http://cvs.horde.org/co.php/horde/services/editor/htmlarea/plugins/TableOperations/img/col-delete.gif?r=1.1
  http://cvs.horde.org/co.php/horde/services/editor/htmlarea/plugins/TableOperations/img/col-insert-after.gif?r=1.1
  http://cvs.horde.org/co.php/horde/services/editor/htmlarea/plugins/TableOperations/img/col-insert-before.gif?r=1.1
  http://cvs.horde.org/co.php/horde/services/editor/htmlarea/plugins/TableOperations/img/col-split.gif?r=1.1
  http://cvs.horde.org/co.php/horde/services/editor/htmlarea/plugins/TableOperations/img/row-delete.gif?r=1.1
  http://cvs.horde.org/co.php/horde/services/editor/htmlarea/plugins/TableOperations/img/row-insert-above.gif?r=1.1
  http://cvs.horde.org/co.php/horde/services/editor/htmlarea/plugins/TableOperations/img/row-insert-under.gif?r=1.1
  http://cvs.horde.org/co.php/horde/services/editor/htmlarea/plugins/TableOperations/img/row-prop.gif?r=1.1
  http://cvs.horde.org/co.php/horde/services/editor/htmlarea/plugins/TableOperations/img/row-split.gif?r=1.1
  http://cvs.horde.org/co.php/horde/services/editor/htmlarea/plugins/TableOperations/img/table-prop.gif?r=1.1
  http://cvs.horde.org/co.php/horde/services/editor/htmlarea/plugins/TableOperations/lang/cz.js?r=1.1
  http://cvs.horde.org/co.php/horde/services/editor/htmlarea/plugins/TableOperations/lang/da.js?r=1.1
  http://cvs.horde.org/co.php/horde/services/editor/htmlarea/plugins/TableOperations/lang/de.js?r=1.1
  http://cvs.horde.org/co.php/horde/services/editor/htmlarea/plugins/TableOperations/lang/el.js?r=1.1
  http://cvs.horde.org/co.php/horde/services/editor/htmlarea/plugins/TableOperations/lang/en.js?r=1.1
  http://cvs.horde.org/co.php/horde/services/editor/htmlarea/plugins/TableOperations/lang/fi.js?r=1.1
  http://cvs.horde.org/co.php/horde/services/editor/htmlarea/plugins/TableOperations/lang/hu.js?r=1.1
  http://cvs.horde.org/co.php/horde/services/editor/htmlarea/plugins/TableOperations/lang/it.js?r=1.1
  http://cvs.horde.org/co.php/horde/services/editor/htmlarea/plugins/TableOperations/lang/nl.js?r=1.1
  http://cvs.horde.org/co.php/horde/services/editor/htmlarea/plugins/TableOperations/lang/no.js?r=1.1
  http://cvs.horde.org/co.php/horde/services/editor/htmlarea/plugins/TableOperations/lang/ro.js?r=1.1
  http://cvs.horde.org/co.php/horde/services/editor/htmlarea/plugins/TableOperations/table-operations.js?r=1.1


More information about the cvs mailing list