[cvs] commit: horde/services/editor/xinha dialog.js htmlarea.css htmlarea.js inline-dialog.js panel-dialog.js popupwin.js horde/services/editor/xinha/modules/ColorPicker ColorPicker.js horde/services/editor/xinha/modules/ColorPicker/src ColorPicker.js horde/services/editor/xinha/modules/CreateLink link.js ...

Michael M Slusarz slusarz at horde.org
Fri Feb 9 11:57:41 PST 2007


slusarz     2007-02-09 14:57:41 EST

  Modified files:
    services/editor/xinha/plugins/CharacterMap character-map.js 
    services/editor/xinha/plugins/ContextMenu context-menu.js 
    services/editor/xinha/plugins/TableOperations 
                                                  table-operations.js 
    Editor/Editor        xinha.php 
  Added files:
    services/editor/xinha/modules/ColorPicker ColorPicker.js 
    services/editor/xinha/modules/ColorPicker/src ColorPicker.js 
    services/editor/xinha/modules/CreateLink link.js 
    services/editor/xinha/modules/CreateLink/src link.js 
    services/editor/xinha/modules/Dialogs dialog.js 
                                          inline-dialog.js 
                                          panel-dialog.js 
                                          popupwin.js 
    services/editor/xinha/modules/Dialogs/src dialog.js 
                                              inline-dialog.js 
                                              panel-dialog.js 
                                              popupwin.js 
    services/editor/xinha/modules/FullScreen full-screen.js 
    services/editor/xinha/modules/FullScreen/src full-screen.js 
    services/editor/xinha/modules/Gecko Gecko.js 
                                        paraHandlerBest.js 
                                        paraHandlerDirty.js 
    services/editor/xinha/modules/Gecko/src Gecko.js 
                                            paraHandlerBest.js 
                                            paraHandlerDirty.js 
    services/editor/xinha/modules/GetHtml DOMwalk.js 
                                          TransformInnerHTML.js 
    services/editor/xinha/modules/GetHtml/src DOMwalk.js 
                                              TransformInnerHTML.js 
    services/editor/xinha/modules/InsertImage insert_image.js 
    services/editor/xinha/modules/InsertImage/src insert_image.js 
    services/editor/xinha/modules/InsertTable insert_table.js 
    services/editor/xinha/modules/InsertTable/src insert_table.js 
    services/editor/xinha/modules/InternetExplorer 
                                                   InternetExplorer.js 
    services/editor/xinha/modules/InternetExplorer/src 
                                                       InternetExplorer.js 
  Removed files:
    services/editor/xinha dialog.js htmlarea.css htmlarea.js 
                          inline-dialog.js panel-dialog.js 
                          popupwin.js 
    services/editor/xinha/plugins/EnterParagraphs 
                                                  enter-paragraphs.js 
    services/editor/xinha/plugins/FullScreen full-screen.js 
    services/editor/xinha/plugins/FullScreen/lang de.js fr.js 
                                                  nb.js pl.js 
                                                  ru.js sv.js 
    services/editor/xinha/popups color_picker.js custom2.html 
                                 insert_image.html 
                                 insert_table.html link.html 
                                 old_insert_image.html 
    services/editor/xinha/src dialog.js htmlarea.js 
                              inline-dialog.js panel-dialog.js 
                              popupwin.js 
  Log:
  Xinha updates.  They recently overhauled their entire architecture (which
  is good), so hopefully I caught all the necessary changes.
  
  Revision  Changes    Path
  1.19      +3 -3      framework/Editor/Editor/xinha.php
  1.5       +0 -12     horde/services/editor/xinha/Attic/dialog.js (dead)
  1.4       +0 -256    horde/services/editor/xinha/Attic/htmlarea.css (dead)
  1.10      +0 -437    horde/services/editor/xinha/Attic/htmlarea.js (dead)
  1.4       +0 -21     horde/services/editor/xinha/Attic/inline-dialog.js (dead)
  1.4       +0 -4      horde/services/editor/xinha/Attic/panel-dialog.js (dead)
  1.6       +0 -10     horde/services/editor/xinha/Attic/popupwin.js (dead)
  1.1       +34 -0     horde/services/editor/xinha/modules/ColorPicker/ColorPicker.js (new)
  1.1       +825 -0    horde/services/editor/xinha/modules/ColorPicker/src/ColorPicker.js (new)
  1.1       +13 -0     horde/services/editor/xinha/modules/CreateLink/link.js (new)
  1.1       +153 -0    horde/services/editor/xinha/modules/CreateLink/src/link.js (new)
  1.1       +12 -0     horde/services/editor/xinha/modules/Dialogs/dialog.js (new)
  1.1       +21 -0     horde/services/editor/xinha/modules/Dialogs/inline-dialog.js (new)
  1.1       +4 -0      horde/services/editor/xinha/modules/Dialogs/panel-dialog.js (new)
  1.1       +11 -0     horde/services/editor/xinha/modules/Dialogs/popupwin.js (new)
  1.1       +89 -0     horde/services/editor/xinha/modules/Dialogs/src/dialog.js (new)
  1.1       +348 -0    horde/services/editor/xinha/modules/Dialogs/src/inline-dialog.js (new)
  1.1       +76 -0     horde/services/editor/xinha/modules/Dialogs/src/panel-dialog.js (new)
  1.1       +179 -0    horde/services/editor/xinha/modules/Dialogs/src/popupwin.js (new)
  1.1       +20 -0     horde/services/editor/xinha/modules/FullScreen/full-screen.js (new)
  1.1       +187 -0    horde/services/editor/xinha/modules/FullScreen/src/full-screen.js (new)
  1.1       +40 -0     horde/services/editor/xinha/modules/Gecko/Gecko.js (new)
  1.1       +34 -0     horde/services/editor/xinha/modules/Gecko/paraHandlerBest.js (new)
  1.1       +16 -0     horde/services/editor/xinha/modules/Gecko/paraHandlerDirty.js (new)
  1.1       +736 -0    horde/services/editor/xinha/modules/Gecko/src/Gecko.js (new)
  1.1       +907 -0    horde/services/editor/xinha/modules/Gecko/src/paraHandlerBest.js (new)
  1.1       +257 -0    horde/services/editor/xinha/modules/Gecko/src/paraHandlerDirty.js (new)
  1.1       +24 -0     horde/services/editor/xinha/modules/GetHtml/DOMwalk.js (new)
  1.1       +19 -0     horde/services/editor/xinha/modules/GetHtml/TransformInnerHTML.js (new)
  1.1       +281 -0    horde/services/editor/xinha/modules/GetHtml/src/DOMwalk.js (new)
  1.1       +209 -0    horde/services/editor/xinha/modules/GetHtml/src/TransformInnerHTML.js (new)
  1.1       +14 -0     horde/services/editor/xinha/modules/InsertImage/insert_image.js (new)
  1.1       +159 -0    horde/services/editor/xinha/modules/InsertImage/src/insert_image.js (new)
  1.1       +10 -0     horde/services/editor/xinha/modules/InsertTable/insert_table.js (new)
  1.1       +120 -0    horde/services/editor/xinha/modules/InsertTable/src/insert_table.js (new)
  1.1       +18 -0     horde/services/editor/xinha/modules/InternetExplorer/InternetExplorer.js (new)
  1.1       +459 -0    horde/services/editor/xinha/modules/InternetExplorer/src/InternetExplorer.js (new)
  1.2       +2 -2      horde/services/editor/xinha/plugins/CharacterMap/character-map.js
  1.4       +4 -2      horde/services/editor/xinha/plugins/ContextMenu/context-menu.js
  1.3       +0 -1090   horde/services/editor/xinha/plugins/EnterParagraphs/Attic/enter-paragraphs.js (dead)
  1.2       +0 -203    horde/services/editor/xinha/plugins/FullScreen/Attic/full-screen.js (dead)
  1.2       +0 -6      horde/services/editor/xinha/plugins/FullScreen/lang/Attic/de.js (dead)
  1.2       +0 -5      horde/services/editor/xinha/plugins/FullScreen/lang/Attic/fr.js (dead)
  1.2       +0 -6      horde/services/editor/xinha/plugins/FullScreen/lang/Attic/nb.js (dead)
  1.2       +0 -6      horde/services/editor/xinha/plugins/FullScreen/lang/Attic/pl.js (dead)
  1.2       +0 -6      horde/services/editor/xinha/plugins/FullScreen/lang/Attic/ru.js (dead)
  1.2       +0 -6      horde/services/editor/xinha/plugins/FullScreen/lang/Attic/sv.js (dead)
  1.4       +10 -1     horde/services/editor/xinha/plugins/TableOperations/table-operations.js
  1.4       +0 -33     horde/services/editor/xinha/popups/Attic/color_picker.js (dead)
  1.2       +0 -35     horde/services/editor/xinha/popups/Attic/custom2.html (dead)
  1.3       +0 -173    horde/services/editor/xinha/popups/Attic/insert_image.html (dead)
  1.3       +0 -157    horde/services/editor/xinha/popups/Attic/insert_table.html (dead)
  1.2       +0 -136    horde/services/editor/xinha/popups/Attic/link.html (dead)
  1.2       +0 -206    horde/services/editor/xinha/popups/Attic/old_insert_image.html (dead)
  1.3       +0 -80     horde/services/editor/xinha/src/Attic/dialog.js (dead)
  1.8       +0 -6874   horde/services/editor/xinha/src/Attic/htmlarea.js (dead)
  1.2       +0 -327    horde/services/editor/xinha/src/Attic/inline-dialog.js (dead)
  1.2       +0 -76     horde/services/editor/xinha/src/Attic/panel-dialog.js (dead)
  1.3       +0 -175    horde/services/editor/xinha/src/Attic/popupwin.js (dead)

  Chora Links:
  http://cvs.horde.org/diff.php/framework/Editor/Editor/xinha.php?r1=1.18&r2=1.19&ty=u
  http://cvs.horde.org/co.php/horde/services/editor/xinha/Attic/dialog.js?r=1.4
  http://cvs.horde.org/co.php/horde/services/editor/xinha/Attic/htmlarea.css?r=1.3
  http://cvs.horde.org/co.php/horde/services/editor/xinha/Attic/htmlarea.js?r=1.9
  http://cvs.horde.org/co.php/horde/services/editor/xinha/Attic/inline-dialog.js?r=1.3
  http://cvs.horde.org/co.php/horde/services/editor/xinha/Attic/panel-dialog.js?r=1.3
  http://cvs.horde.org/co.php/horde/services/editor/xinha/Attic/popupwin.js?r=1.5
  http://cvs.horde.org/co.php/horde/services/editor/xinha/modules/ColorPicker/ColorPicker.js?r=1.1
  http://cvs.horde.org/co.php/horde/services/editor/xinha/modules/ColorPicker/src/ColorPicker.js?r=1.1
  http://cvs.horde.org/co.php/horde/services/editor/xinha/modules/CreateLink/link.js?r=1.1
  http://cvs.horde.org/co.php/horde/services/editor/xinha/modules/CreateLink/src/link.js?r=1.1
  http://cvs.horde.org/co.php/horde/services/editor/xinha/modules/Dialogs/dialog.js?r=1.1
  http://cvs.horde.org/co.php/horde/services/editor/xinha/modules/Dialogs/inline-dialog.js?r=1.1
  http://cvs.horde.org/co.php/horde/services/editor/xinha/modules/Dialogs/panel-dialog.js?r=1.1
  http://cvs.horde.org/co.php/horde/services/editor/xinha/modules/Dialogs/popupwin.js?r=1.1
  http://cvs.horde.org/co.php/horde/services/editor/xinha/modules/Dialogs/src/dialog.js?r=1.1
  http://cvs.horde.org/co.php/horde/services/editor/xinha/modules/Dialogs/src/inline-dialog.js?r=1.1
  http://cvs.horde.org/co.php/horde/services/editor/xinha/modules/Dialogs/src/panel-dialog.js?r=1.1
  http://cvs.horde.org/co.php/horde/services/editor/xinha/modules/Dialogs/src/popupwin.js?r=1.1
  http://cvs.horde.org/co.php/horde/services/editor/xinha/modules/FullScreen/full-screen.js?r=1.1
  http://cvs.horde.org/co.php/horde/services/editor/xinha/modules/FullScreen/src/full-screen.js?r=1.1
  http://cvs.horde.org/co.php/horde/services/editor/xinha/modules/Gecko/Gecko.js?r=1.1
  http://cvs.horde.org/co.php/horde/services/editor/xinha/modules/Gecko/paraHandlerBest.js?r=1.1
  http://cvs.horde.org/co.php/horde/services/editor/xinha/modules/Gecko/paraHandlerDirty.js?r=1.1
  http://cvs.horde.org/co.php/horde/services/editor/xinha/modules/Gecko/src/Gecko.js?r=1.1
  http://cvs.horde.org/co.php/horde/services/editor/xinha/modules/Gecko/src/paraHandlerBest.js?r=1.1
  http://cvs.horde.org/co.php/horde/services/editor/xinha/modules/Gecko/src/paraHandlerDirty.js?r=1.1
  http://cvs.horde.org/co.php/horde/services/editor/xinha/modules/GetHtml/DOMwalk.js?r=1.1
  http://cvs.horde.org/co.php/horde/services/editor/xinha/modules/GetHtml/TransformInnerHTML.js?r=1.1
  http://cvs.horde.org/co.php/horde/services/editor/xinha/modules/GetHtml/src/DOMwalk.js?r=1.1
  http://cvs.horde.org/co.php/horde/services/editor/xinha/modules/GetHtml/src/TransformInnerHTML.js?r=1.1
  http://cvs.horde.org/co.php/horde/services/editor/xinha/modules/InsertImage/insert_image.js?r=1.1
  http://cvs.horde.org/co.php/horde/services/editor/xinha/modules/InsertImage/src/insert_image.js?r=1.1
  http://cvs.horde.org/co.php/horde/services/editor/xinha/modules/InsertTable/insert_table.js?r=1.1
  http://cvs.horde.org/co.php/horde/services/editor/xinha/modules/InsertTable/src/insert_table.js?r=1.1
  http://cvs.horde.org/co.php/horde/services/editor/xinha/modules/InternetExplorer/InternetExplorer.js?r=1.1
  http://cvs.horde.org/co.php/horde/services/editor/xinha/modules/InternetExplorer/src/InternetExplorer.js?r=1.1
  http://cvs.horde.org/diff.php/horde/services/editor/xinha/plugins/CharacterMap/character-map.js?r1=1.1&r2=1.2&ty=u
  http://cvs.horde.org/diff.php/horde/services/editor/xinha/plugins/ContextMenu/context-menu.js?r1=1.3&r2=1.4&ty=u
  http://cvs.horde.org/co.php/horde/services/editor/xinha/plugins/EnterParagraphs/Attic/enter-paragraphs.js?r=1.2
  http://cvs.horde.org/co.php/horde/services/editor/xinha/plugins/FullScreen/Attic/full-screen.js?r=1.1
  http://cvs.horde.org/co.php/horde/services/editor/xinha/plugins/FullScreen/lang/Attic/de.js?r=1.1
  http://cvs.horde.org/co.php/horde/services/editor/xinha/plugins/FullScreen/lang/Attic/fr.js?r=1.1
  http://cvs.horde.org/co.php/horde/services/editor/xinha/plugins/FullScreen/lang/Attic/nb.js?r=1.1
  http://cvs.horde.org/co.php/horde/services/editor/xinha/plugins/FullScreen/lang/Attic/pl.js?r=1.1
  http://cvs.horde.org/co.php/horde/services/editor/xinha/plugins/FullScreen/lang/Attic/ru.js?r=1.1
  http://cvs.horde.org/co.php/horde/services/editor/xinha/plugins/FullScreen/lang/Attic/sv.js?r=1.1
  http://cvs.horde.org/diff.php/horde/services/editor/xinha/plugins/TableOperations/table-operations.js?r1=1.3&r2=1.4&ty=u
  http://cvs.horde.org/co.php/horde/services/editor/xinha/popups/Attic/color_picker.js?r=1.3
  http://cvs.horde.org/co.php/horde/services/editor/xinha/popups/Attic/custom2.html?r=1.1
  http://cvs.horde.org/co.php/horde/services/editor/xinha/popups/Attic/insert_image.html?r=1.2
  http://cvs.horde.org/co.php/horde/services/editor/xinha/popups/Attic/insert_table.html?r=1.2
  http://cvs.horde.org/co.php/horde/services/editor/xinha/popups/Attic/link.html?r=1.1
  http://cvs.horde.org/co.php/horde/services/editor/xinha/popups/Attic/old_insert_image.html?r=1.1
  http://cvs.horde.org/co.php/horde/services/editor/xinha/src/Attic/dialog.js?r=1.2
  http://cvs.horde.org/co.php/horde/services/editor/xinha/src/Attic/htmlarea.js?r=1.7
  http://cvs.horde.org/co.php/horde/services/editor/xinha/src/Attic/inline-dialog.js?r=1.1
  http://cvs.horde.org/co.php/horde/services/editor/xinha/src/Attic/panel-dialog.js?r=1.1
  http://cvs.horde.org/co.php/horde/services/editor/xinha/src/Attic/popupwin.js?r=1.2


More information about the cvs mailing list