ICEfaces
  1. ICEfaces
  2. ICE-6024

inputRichText no longer displays/works with suggestions/changes from ICE-5871

    Details

    • Type: Bug Bug
    • Status: Closed
    • Priority: Major Major
    • Resolution: Fixed
    • Affects Version/s: 1.8.2-EE-GA_P01
    • Fix Version/s: 1.8.3, 1.8.2-EE-GA_P02
    • Component/s: ICE-Components
    • Labels:
      None
    • Environment:
      Container with cookies disabled

      Description

      The suggestion to enable multi-session functionality from ICE-5871 is causing the inputRichText component to not display.

      The following JavaScript errors are thrown and the component does not display/render:
      Ice.FCKeditor is undefined
      [Break on this error] <form action="javascript:;" class="ice...ked" type="hidden" /></div></td></tr>
      main.iface (line 12)
      Ice.FCKeditorUtility is undefined
      [Break on this error] <script id="MHmWFZdkpnZAKpKufSnzSQ:1:d... ('_id10:_id13');//284715392</script>
      main.iface (line 16

      To reproduce this the following parameters are set:

      For Tomcat (context.xml):
      <Context cookies="false">
      For WebLogic (weblogic-application.xml):
      <cookies-enabled>false</cookies-enabled>

      Changing these parameters to true allows the component to display and work properly.


        Issue Links

          Activity

          Arran Mccullough created issue -
          Arran Mccullough made changes -
          Field Original Value New Value
          Salesforce Case [5007000000D5aCZ]
          Arran Mccullough made changes -
          Attachment Case9383Example3.war [ 12541 ]
          Hide
          Arran Mccullough added a comment -

          Added simple test case configured to run in Tomcat 6

          Show
          Arran Mccullough added a comment - Added simple test case configured to run in Tomcat 6
          Ken Fyten made changes -
          Assignee Priority P1
          Assignee Deryk Sinotte [ deryk.sinotte ]
          Hide
          Deryk Sinotte added a comment -

          The problem appears to boil down to resource URLs and the addition of the jsessionid as a path parameter. In a normal URL, the jsessionid is added to the end of the path but before the parameters:

          http://host:port/path1/path2/file1.ext;jsessionid=xxx?param1=val1&param2=val2

          When cookies are disabled, session state is maintained by having the jsessionid added to the URL. However, it's important that each URL that has anything to do with the session is properly encoded to include the jsessionid. This is done by processing each URL through the method:

          ExternalContext.encodeResourceURL(originalURL);

          We did this in several places previously to ensure that we could work without cookies. For the InputRichText, there are a few spots where this is still problematic:

          1) The InputRichText component adds the required FCKEditor JS libraries to the head which results in the following URLs:

          <script src="/appContext/block/resource/LTc4NTk0MDYzMQ==/" type="text/javascript"></script>

          Since these URLs contain block/resource, they are processed by the SessionVerifier which makes a call to ensure the session is valid before serving up the resource. So without the jsessionid, it fails. The generated URLs can be fixed by altering the DOMResponseWriter so that all resources output to the <head> include the jsessionid.

          <script src="/appContext/block/resource/LTc4NTk0MDYzMQ==/;jsessionid=6B0264F79334D0ADA43A2A791326886C" type="text/javascript"></script>

          2) Now that the required libraries load, the next problem is that the script that registers and creates a new instance of FCKEditor uses a URL to do so:

          new Ice.FCKeditor('j_id11:j_id14', 'en', '', '/appContext/block/resource/LTQ5MTYyMDg1Mw==/','100%', '200', 'Default', 'null', 'default');

          Same problem as #1. Since it's a block/resource URL, it needs the jsessionid or the SessionVerifier will reject it. Again, it's a relatively easy fix, this time in the InputRichTextRenderer:

          new Ice.FCKeditor('j_id11:j_id14', 'en', '', '/appContext/block/resource/LTQ5MTYyMDg1Mw==/;jsessionid=6B0264F79334D0ADA43A2A791326886C','100%', '200', 'Default', 'null', 'default');

          3) The creation of a new FCKeditor uses this URL to construct a slightly different URL that points the content of the iframe that houses the editor. This is done in fckeditor.js:

          /appContext/block/resource/LTQ5MTYyMDg1Mw==/editor/fckeditor.html?InstanceName=j_id11%3Aj_id14&Toolbar=Default

          unfortunately, by virtue of the way this is built, if the jsessionid is included, the result looks like this:

          /appContext/block/resource/LTQ5MTYyMDg1Mw==/;jsessionid=4F5E6E84022C2322085CF22B12C74497editor/fckeditor.html?InstanceName=j_id11%3Aj_id14&Toolbar=Default

          So the jsessionid is located incorrectly. It should look like this:

          /appContext/block/resource/LTQ5MTYyMDg1Mw==/editor/fckeditor.html;jsessionid=4F5E6E84022C2322085CF22B12C74497?InstanceName=j_id11%3Aj_id14&Toolbar=Default

          4) Editing the fckeditor.js code to move the jsessionid allows it to create the iframe with the starting content, but every other FCK resource that is then loaded into the iframe, then suffers from the original problem - a resource URL without a jsessionid. For example:

          http://host:port/appContext/block/resource/LTQ5MTYyMDg1Mw==/editor/js/fckeditorcode_gecko.js

          Show
          Deryk Sinotte added a comment - The problem appears to boil down to resource URLs and the addition of the jsessionid as a path parameter. In a normal URL, the jsessionid is added to the end of the path but before the parameters: http://host:port/path1/path2/file1.ext;jsessionid=xxx?param1=val1&param2=val2 When cookies are disabled, session state is maintained by having the jsessionid added to the URL. However, it's important that each URL that has anything to do with the session is properly encoded to include the jsessionid. This is done by processing each URL through the method: ExternalContext.encodeResourceURL(originalURL); We did this in several places previously to ensure that we could work without cookies. For the InputRichText, there are a few spots where this is still problematic: 1) The InputRichText component adds the required FCKEditor JS libraries to the head which results in the following URLs: <script src="/appContext/block/resource/LTc4NTk0MDYzMQ==/" type="text/javascript"></script> Since these URLs contain block/resource, they are processed by the SessionVerifier which makes a call to ensure the session is valid before serving up the resource. So without the jsessionid, it fails. The generated URLs can be fixed by altering the DOMResponseWriter so that all resources output to the <head> include the jsessionid. <script src="/appContext/block/resource/LTc4NTk0MDYzMQ==/;jsessionid=6B0264F79334D0ADA43A2A791326886C" type="text/javascript"></script> 2) Now that the required libraries load, the next problem is that the script that registers and creates a new instance of FCKEditor uses a URL to do so: new Ice.FCKeditor('j_id11:j_id14', 'en', '', '/appContext/block/resource/LTQ5MTYyMDg1Mw==/','100%', '200', 'Default', 'null', 'default'); Same problem as #1. Since it's a block/resource URL, it needs the jsessionid or the SessionVerifier will reject it. Again, it's a relatively easy fix, this time in the InputRichTextRenderer: new Ice.FCKeditor('j_id11:j_id14', 'en', '', '/appContext/block/resource/LTQ5MTYyMDg1Mw==/;jsessionid=6B0264F79334D0ADA43A2A791326886C','100%', '200', 'Default', 'null', 'default'); 3) The creation of a new FCKeditor uses this URL to construct a slightly different URL that points the content of the iframe that houses the editor. This is done in fckeditor.js: /appContext/block/resource/LTQ5MTYyMDg1Mw==/editor/fckeditor.html?InstanceName=j_id11%3Aj_id14&Toolbar=Default unfortunately, by virtue of the way this is built, if the jsessionid is included, the result looks like this: /appContext/block/resource/LTQ5MTYyMDg1Mw==/;jsessionid=4F5E6E84022C2322085CF22B12C74497editor/fckeditor.html?InstanceName=j_id11%3Aj_id14&Toolbar=Default So the jsessionid is located incorrectly. It should look like this: /appContext/block/resource/LTQ5MTYyMDg1Mw==/editor/fckeditor.html;jsessionid=4F5E6E84022C2322085CF22B12C74497?InstanceName=j_id11%3Aj_id14&Toolbar=Default 4) Editing the fckeditor.js code to move the jsessionid allows it to create the iframe with the starting content, but every other FCK resource that is then loaded into the iframe, then suffers from the original problem - a resource URL without a jsessionid. For example: http://host:port/appContext/block/resource/LTQ5MTYyMDg1Mw==/editor/js/fckeditorcode_gecko.js
          Deryk Sinotte made changes -
          Link This issue is duplicated by ICE-5871 [ ICE-5871 ]
          Repository Revision Date User Message
          ICEsoft Public SVN Repository #22296 Wed Sep 08 15:54:06 MDT 2010 ted.goddard static resources for FCK Editor to allow session-per-tab (ICE-6024)
          Files Changed
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/skins/office2003/images/sprites.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/connectors/php/commands.php
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/dialog/common/images/reset.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/images/smiley
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/browser/default/images/icons/cs.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/css/images/block_h6.png
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/_source/commandclasses/fckjustifycommands.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/lang/et.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/lang/ro.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/_source/commandclasses/fckblockquotecommand.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/dialog/fck_select/fck_select.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/plugins/placeholder/placeholder.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/skins/silver/images/dialog.sides.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/license.txt
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/images/smiley/msn/regular_smile.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/lang/eo.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/browser/default/images/icons/txt.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/dialog/fck_replace.html
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/connectors/test.html
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/_source/classes/fcktoolbar.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/_source/classes/fckplugin.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/plugins/autogrow/fckplugin.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/skins/office2003/fck_dialog.css
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/browser/default/images/icons/32/pdf.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/skins/silver/fck_dialog.css
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/skins/default/fck_dialog_ie6.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/_source/internals/fckplugins.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/connectors/php/io.php
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/dialog/fck_form.html
          Commit graph MODIFY /icefaces/trunk/icefaces/component/src/com/icesoft/faces/component/inputrichtext/InputRichText.java
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/connectors/lasso/config.lasso
          Commit graph ADD /icefaces/trunk/icefaces/core/src/com/icesoft/faces/webapp/http/core/ServeStaticResource.java
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/lang/fo.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/lang/bs.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/connectors/cfm/connector.cfm
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/plugins/bbcode/_sample
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/browser/default/images/icons/htm.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/_source/classes/fckdataprocessor.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/connectors/perl/util.pl
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/skins/silver/images/toolbar.expand.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/lang/gu.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/lang/hu.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/lang/en.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/_source/commandclasses
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/images/smiley/msn/cry_smile.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/images/smiley/msn/sad_smile.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/skins/silver/images/sprites.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/plugins/placeholder/fckplugin.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/css/images/fck_flashlogo.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/browser/default/images/icons/ai.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/_source/classes/fcktoolbarbreak_gecko.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/_source/internals/fckstyles.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/browser/default/images/icons/dll.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/skins/office2003/images/sprites.png
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/connectors/py/fckoutput.py
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/lang/eu.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/connectors/php/upload.php
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/images/anchor.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/plugins/placeholder/lang/de.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/css/images/block_h2.png
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/lang/el.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/connectors/py/upload.py
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/_source/classes/fckimagepreloader.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/_source/commandclasses/fckshowblocks.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/dialog/fck_template/images
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/connectors/lasso
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/connectors/cfm/cf5_connector.cfm
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/images/spacer.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/browser/default/frmupload.html
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/skins/silver/images/sprites.png
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/dialog/fck_textfield.html
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/_source/classes/fckdomrangeiterator.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/dialog/fck_listprop.html
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/skins/silver/images/toolbar.end.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/dialog/fck_image/fck_image_preview.html
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/connectors/asp
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/lang/fi.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/plugins/bbcode/fckplugin.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/plugins/placeholder/lang/en.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/browser/default/images/icons/swt.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/skins/_fckviewstrips.html
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/browser/default/images/icons/32/mdb.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/connectors/py
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/connectors/py/wsgi.py
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/connectors/cfm/cf5_upload.cfm
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/css/images/block_pre.png
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/dialog/fck_div.html
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/skins/silver/fck_strip.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/browser/default/images/icons/32/xml.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/browser/default/images/icons/32/htm.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/skins/office2003/images/toolbar.buttonarrow.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/_source/commandclasses/fckpastewordcommand.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/images/smiley/msn/angry_smile.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/lang/it.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/connectors/cfm/cf_connector.cfm
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/lang/km.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/lang/sk.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/connectors/perl
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/dialog/fck_docprops.html
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/browser/default/images/icons/doc.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/skins/default/images/dialog.sides.png
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/dialog/fck_textarea.html
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/skins/office2003/fck_dialog_ie6.js
          Commit graph MODIFY /icefaces/trunk/icefaces/core/src/com/icesoft/faces/webapp/http/core/ResourceServer.java
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/_source/internals/fckdialog.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/lang/ms.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/css/images/block_blockquote.png
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/_source/classes/fckicon.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/_source/classes/fcktoolbarpanelbutton.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/browser/default/images/icons/32
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/connectors/py/fckconnector.py
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/dialog/fck_flash
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/connectors/uploadtest.html
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/_source/internals/fcktools_gecko.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/_source/internals/fcktablehandler_ie.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/_source/commandclasses/fcknamedcommand.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/browser/default/images/icons/32/mp3.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/lang/is.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/css/images/fck_hiddenfield.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/lang/fr-ca.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/_source/commandclasses/fckfitwindow.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/connectors/aspx
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/images/smiley/msn/wink_smile.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/_source/commandclasses/fckindentcommands.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/connectors/php
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/_source/internals/fck_gecko.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/skins/office2003/images/toolbar.end.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/skins/default/images/toolbar.end.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/browser/default/images/icons/32/txt.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/dialog/fck_about/sponsors/spellchecker_net.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/dialog/fck_spellerpages/spellerpages/controls.html
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/browser/default/images/icons/32/bmp.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/_source/classes/fckdocumentfragment_ie.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/connectors/asp/class_upload.asp
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/_source/commandclasses/fcktablecommand.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/_source/commandclasses/fckspellcheckcommand_ie.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/css/fck_editorarea.css
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/browser/default/images/icons/fla.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/dialog
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.cfm
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/browser/default/images/icons/32/js.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/skins/default/images/toolbar.arrowright.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/_source/classes/fckw3crange.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/_source/classes/fckmenublock.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/js/fckeditorcode_ie.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/_source/classes/fckevents.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/skins/office2003/images/toolbar.collapse.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/lang/de.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/images/arrow_ltr.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/connectors/asp/config.asp
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/dialog/fck_select.html
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/browser/default/images/icons/32/png.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/_source/internals/fckregexlib.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/dialog/fck_spellerpages/spellerpages/blank.html
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/browser/default/images/icons/32/vsd.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/connectors/asp/io.asp
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/dialog/fck_template
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/dialog/fck_smiley.html
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/wsc/ciframe.html
          Commit graph MODIFY /icefaces/trunk/icefaces/component/src/com/icesoft/faces/component/ext/renderkit/FormRenderer.java
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/_source/commandclasses/fckpasteplaintextcommand.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/browser/default/js/fckxml.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/browser/default/js/common.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/browser/default/images/ButtonArrow.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/browser/default/images/icons/32/xls.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/connectors/aspx/connector.aspx
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/_source/internals/fckxhtml_gecko.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/connectors/py/connector.py
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/browser/default/images/icons/xls.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/dialog/fck_flash.html
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/lang/he.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/_source/classes/fckdomrange.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/connectors/perl/upload.cgi
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/browser/default/images/icons/32/jpg.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/_source/commandclasses/fckcorestylecommand.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/browser/default/images/icons/32/ppt.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/dialog/fck_image/fck_image.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/skins/office2003/fck_editor.css
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/skins/default/images/dialog.sides.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.php
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/_source/classes/fckdomrange_ie.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/browser/default/images/icons/32/zip.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/browser/default/frmresourcetype.html
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/images/smiley/msn/angel_smile.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/_source/internals/fckselection_gecko.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/_source/internals/fckdomtools.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/plugins/simplecommands/fckplugin.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/_source/internals/fckselection.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/dialog/fck_source.html
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/lang/mn.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/lang/uk.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/browser/default/images/Folder.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/plugins
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/browser/default/images/icons/xml.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/browser/default/js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/_source/classes/fckeditingarea.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/skins/silver/images/dialog.sides.rtl.png
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/_source/classes/fcktoolbarfontformatcombo.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/browser/default/images/FolderOpened.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/_source/commandclasses/fckspellcheckcommand_gecko.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/css
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/lang
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/connectors/py/config.py
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/browser/default/images
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/_source/fckjscoreextensions.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/browser/default/images/icons/png.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/dialog/common/fck_dialog_common.js
          Commit graph MODIFY /icefaces/trunk/icefaces/core/src/com/icesoft/faces/webapp/http/servlet/MainServlet.java
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/skins/silver/fck_dialog_ie6.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/browser/default/images/icons/32/ai.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/dialog/fck_flash/fck_flash.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/dialog/fck_radiobutton.html
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/dialog/fck_paste.html
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/dialog/fck_about/logo_fckeditor.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/connectors/lasso/upload.lasso
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/browser/default/images/icons/32/dll.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/browser/default/images/icons/exe.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/images/arrow_rtl.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/browser/default/images/icons/32/doc.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/css/behaviors/showtableborders.htc
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/dialog/fck_flash/fck_flash_preview.html
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/skins/office2003/images/dialog.sides.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/_source/classes/fckxml_ie.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/css/images/block_div.png
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/plugins/dragresizetable
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/wsc/tmpFrameset.html
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/lang/sv.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/browser/default/frmactualfolder.html
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/lang/sr-latn.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/dtd/fck_xhtml10strict.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/dialog/fck_link/fck_link.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/plugins/autogrow
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/lang/pl.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/browser/default
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/lang/sr.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/css/images/block_p.png
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/fckeditor.original.html
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/_source/internals/fckselection_ie.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/_source/internals/fckdocumentprocessor.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/skins/office2003/images
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/plugins/placeholder
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/lang/tr.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/_source/internals/fcktablehandler.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/_source/commandclasses/fckstylecommand.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/_source/internals/fckxhtml.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/_source/commandclasses/fck_othercommands.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/images/smiley/msn/broken_heart.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/lang/nl.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/_source/internals/fckxhtml_ie.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/browser/default/images/icons/32/gif.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/skins/default/fck_editor.css
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/skins/office2003/images/toolbar.start.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/browser/default/images/icons/rdp.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/browser/default/images/icons/js.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/lang/sl.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/css/images
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/_source/classes/fckcontextmenu.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/js/fckeditor_ext.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/browser/default/images/icons/pdf.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/images/smiley/msn/embaressed_smile.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/_source/classes/fckelementpath.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/dialog/fck_about.html
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/images/smiley/msn/thumbs_down.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/skins/silver/images/toolbar.buttonarrow.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/lang/af.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/wsc/w.html
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/skins/silver/images/toolbar.arrowright.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/skins/default/images/toolbar.collapse.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/css/fck_showtableborders_gecko.css
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/dialog/fck_checkbox.html
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/_source/internals/fck_contextmenu.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/css/images/block_address.png
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/dialog/fck_spellerpages
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/fckeditor.html
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/_source/classes/fckdocumentfragment_gecko.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/browser/default/images/icons/32/swt.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/images/smiley/msn/heart.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/lang/zh-cn.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/dialog/fck_hiddenfield.html
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/lang/es.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/skins/default/images/toolbar.buttonarrow.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/browser/default/images/icons/32/fla.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/dialog/fck_spellerpages/spellerpages/spellchecker.html
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/lang/zh.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/browser/default/images/icons/32/avi.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/images
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/connectors/perl/upload_fck.pl
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/dialog/fck_colorselector.html
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/dtd/fck_xhtml10transitional.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/_source/internals/fckurlparams.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/fcktemplates.xml
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/css/images/block_h4.png
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/skins/office2003/images/dialog.sides.rtl.png
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/_source/classes/fckstyle.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/dialog/fck_spellerpages/spellerpages/wordWindow.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/skins/office2003
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/plugins/placeholder/lang/it.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/_source/fckeditorapi.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/_source/classes/fckxml_gecko.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/images/smiley/msn/lightbulb.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/lang/ko.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/_source/classes/fcktoolbarstylecombo.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/css/images/fck_anchor.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/_source/internals/fckconfig.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/_source
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/dialog/fck_docprops/fck_document_preview.html
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/skins/default/images/sprites.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/connectors/cfm/cf_commands.cfm
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/_source/internals
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/connectors/php/basexml.php
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/_source/internals/fcktablehandler_gecko.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/css/images/block_h3.png
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/css/images/block_h1.png
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/browser/default/images/icons/mdb.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/connectors/lasso/connector.lasso
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/connectors/php/connector.php
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/plugins/bbcode/_sample/sample.html
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/lang/hi.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/_source/internals/fckundo.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/skins/silver/images
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/browser/default/images/icons/32/html.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/plugins/placeholder/lang/fr.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/lang/ja.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/lang/pt.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/dialog/fck_template.html
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/lang/vi.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/plugins/placeholder/lang/es.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/lang/ru.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/skins/default/fck_dialog.css
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/skins/office2003/images/toolbar.separator.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/_source/classes/fckenterkey.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/skins/silver/images/toolbar.buttonbg.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/_source/classes/fckhtmliterator.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/connectors/cfm/image.cfc
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/_source/commandclasses/fckremoveformatcommand.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/js/fckadobeair.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/dialog/fck_image.html
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/fckdialog.html
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/skins/default/images/toolbar.start.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/skins/default/images/sprites.png
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/_source/internals/fcklanguagemanager.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/browser/default/images/icons/32/exe.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/dialog/common/images/locked.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/dialog/common/images
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/dialog/fck_button.html
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/skins/default/images/dialog.sides.rtl.png
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/connectors/asp/util.asp
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/skins/silver/images/toolbar.separator.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/browser/default/images/icons/html.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/connectors/perl/io.pl
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/skins/default/images/toolbar.expand.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/browser/default/images/icons/32/swf.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/plugins/tablecommands/fckplugin.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/connectors/asp/upload.asp
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/lang/_translationstatus.txt
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/images/smiley/msn/kiss.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/lang/fa.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/lang/th.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/browser/default/images/icons/mp3.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/connectors/py/zope.py
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/images/smiley/msn/confused_smile.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/js/fckeditor.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/dialog/fck_about
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/dialog/fck_about/logo_fredck.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/plugins/bbcode
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/lang/bn.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/skins/default
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/_source/internals/fcktools.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/_source/internals/fckbrowserinfo.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/browser/default/frmcreatefolder.html
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/images/smiley/msn/tounge_smile.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/css/images/block_h5.png
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/_source/classes/fcktoolbarbreak_ie.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/_source/internals/fckxhtmlentities.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/skins/office2003/images/toolbar.expand.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/_source/classes/fckkeystrokehandler.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/plugins/placeholder/lang
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/plugins/placeholder/fck_placeholder.html
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/css/behaviors
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/browser/default/images/icons/gif.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/connectors/perl/basexml.pl
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/_source/classes/fckspecialcombo.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/skins/office2003/images/toolbar.arrowright.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/connectors/aspx/config.ascx
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/_source/internals/fck_ie.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/browser/default/frmresourceslist.html
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/skins/silver/images/toolbar.start.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/_source/classes/fckdomrange_gecko.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/_source/internals/fcktoolbaritems.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/dialog/fck_select
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/css/images/fck_plugin.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/images/smiley/msn
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/browser/default/frmfolders.html
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/_source/internals/fckdebug.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/browser/default/browser.html
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/browser/default/images/Folder32.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/images/smiley/msn/shades_smile.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/css/fck_internal.css
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/fckdebug.html
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/connectors/aspx/upload.aspx
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/skins/office2003/fck_strip.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.pl
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/skins/default/images
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/dialog/fck_docprops
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/_source/classes/fcktoolbarbutton.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/browser/default/images/FolderOpened32.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/images/smiley/msn/teeth_smile.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/skins/default/images/toolbar.separator.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/browser/default/images/FolderUp.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/plugins/bbcode/_sample/sample.config.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/dialog/fck_link
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/browser/default/images/icons/32/cs.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/dialog/common/fck_dialog_common.css
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/_source/classes/fcktoolbarspecialcombo.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/lang/lv.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/dialog/fck_spellerpages/spellerpages/spellerStyle.css
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/browser/default/images/icons/ppt.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/dialog/fck_template/images/template3.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/connectors/php/util.php
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/browser/default/images/icons/32/default.icon.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/browser
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/_source/commandclasses/fcklistcommands.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/lang/en-au.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/lang/no.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/lang/pt-br.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/_source/commandclasses/fcktextcolorcommand.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/dialog/fck_link.html
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/connectors/cfm/cf_basexml.cfm
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/lang/lt.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/js/fckeditorcode_gecko.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/_source/internals/fcklistslib.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/browser/default/images/icons/jpg.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/browser/default/images/icons/zip.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/connectors/asp/connector.asp
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/dialog/fck_table.html
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/browser/default/images/icons/vsd.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/skins/silver/images/dialog.sides.png
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/_source/classes/fckpanel.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/dialog/fck_spellerpages.html
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/dialog/common
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/connectors/cfm/upload.cfm
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/dialog/fck_template/images/template2.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/lang/ca.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/_source/internals/fcktoolbarset.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/images/smiley/msn/cake.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/dialog/common/images/unlocked.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/plugins/simplecommands
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/dialog/fck_about/sponsors
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/dialog/fck_spellerpages/spellerpages/spellChecker.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/connectors/cfm/cf_io.cfm
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/browser/default/images/spacer.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/skins/default/fck_strip.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/_source/internals/fcktools_ie.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/dtd/fck_dtd_test.html
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/skins/office2003/images/dialog.sides.png
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/_source/internals/fck.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/connectors/perl/commands.pl
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/connectors/py/fckutil.py
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/images/smiley/msn/whatchutalkingabout_smile.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/dtd
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/skins/silver/images/toolbar.collapse.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/browser/default/images/icons/avi.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/plugins/tablecommands
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/browser/default/images/icons/swf.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/images/smiley/msn/thumbs_up.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/css/behaviors/disablehandles.htc
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/browser/default/images/icons/32/rdp.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/dialog/fck_template/images/template1.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/images/smiley/msn/devil_smile.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/dialog/fck_anchor.html
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/browser/default/images/icons/default.icon.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/skins/office2003/images/toolbar.bg.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/lang/cs.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/lang/nb.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/connectors/cfm/ImageObject.cfc
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/lang/en-uk.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/dialog/fck_spellerpages/spellerpages
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/connectors/perl/connector.cgi
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/browser/default/images/icons/bmp.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/wsc
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/_source/classes/fcktoolbarfontsizecombo.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/dialog/fck_specialchar.html
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/_source/fckconstants.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/_source/internals/fcklisthandler.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/_source/classes/fckiecleanup.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/connectors/py/fckcommands.py
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/_source/classes/fcktoolbarfontscombo.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/_source/internals/fckdebug_empty.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/skins/silver
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/lang/fr.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/connectors/cfm
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/plugins/placeholder/lang/pl.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/dialog/fck_spellerpages/spellerpages/server-scripts
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/connectors/php/phpcompat.php
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/lang/bg.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/_source/classes/fckmenublockpanel.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/images/smiley/msn/envelope.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/_source/classes/fcktoolbarbuttonui.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/images/smiley/msn/omg_smile.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/_source/fckscriptloader.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/dialog/fck_spellerpages/spellerpages/controlWindow.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/_source/classes/fckmenuitem.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/lang/gl.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/browser/default/images/icons
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/_source/internals/fckcommands.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/connectors/asp/commands.asp
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/connectors
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/connectors/cfm/cf_util.cfm
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/dialog/fck_tablecell.html
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/css/images/fck_pagebreak.gif
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/lang/da.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/connectors/asp/basexml.asp
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/fckconfig.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/_source/classes
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/connectors/cfm/cf_upload.cfm
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/fckstyles.xml
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/skins/silver/fck_editor.css
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/lang/hr.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/_source/classes/fckxml.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/plugins/dragresizetable/fckplugin.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/skins
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/connectors/cfm/config.cfm
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/browser/default/browser.css
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/lang/en-ca.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/connectors/php/config.php
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/filemanager/connectors/py/htaccess.txt
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/lang/ar.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/_source/internals/fckcodeformatter.js
          Commit graph ADD /icefaces/trunk/icefaces/component/src/com/icesoft/faces/resources/ice-static/editor/dialog/fck_image
          Hide
          Ted Goddard added a comment -

          inputRichText verified working with attached test case.

          A new ServeStaticResource dispatcher has been added that will serve any resources found under

          com/icesoft/faces/resources/ice-static/

          Serving arbitrary files from a resource path could be a security risk in general, however, these files must be deliberately added to the ice-static directory, hence the risk is slightly less than recursively adding resources through an API.

          File upload has not been investigated.

          Show
          Ted Goddard added a comment - inputRichText verified working with attached test case. A new ServeStaticResource dispatcher has been added that will serve any resources found under com/icesoft/faces/resources/ice-static/ Serving arbitrary files from a resource path could be a security risk in general, however, these files must be deliberately added to the ice-static directory, hence the risk is slightly less than recursively adding resources through an API. File upload has not been investigated.
          Hide
          Ted Goddard added a comment -

          Note that testing this modification in component-showcase is difficult because ice:inputRichText dynamically adds script resources to the <head> resulting in a reload directive to the bridge. The URL used in the reload does not contain the ;jsessionid parameter and the application context is lost (since the reload results in a new session).

          Show
          Ted Goddard added a comment - Note that testing this modification in component-showcase is difficult because ice:inputRichText dynamically adds script resources to the <head> resulting in a reload directive to the bridge. The URL used in the reload does not contain the ;jsessionid parameter and the application context is lost (since the reload results in a new session).
          Repository Revision Date User Message
          ICEsoft Public SVN Repository #22311 Thu Sep 09 14:46:00 MDT 2010 ted.goddard encodeResourceURL for inputFile (ICE-6024)
          Files Changed
          Commit graph MODIFY /icefaces/trunk/icefaces/component/src/com/icesoft/faces/component/inputfile/InputFileRenderer.java
          Commit graph MODIFY /icefaces/trunk/icefaces/component/src/com/icesoft/faces/component/inputfile/InputFile.java
          Hide
          Ted Goddard added a comment -

          Fix checked in for inputFile and verified in component-showcase with and without session cookies.

          Show
          Ted Goddard added a comment - Fix checked in for inputFile and verified in component-showcase with and without session cookies.
          Hide
          Ken Fyten added a comment - - edited

          All test run on tomcat6 withFF3.6, IE8 & Opera10.6
          Icefaces Trunk revision#22314
          Browser cookies disabled:

          Notable failures:

          File upload:
          ICE-2009 Fails on FF & Opera( cannot upload files)
          inputfile Fails on FF & Opera( cannot upload files)

          Component-showcase fileupload: FF does not work reliably, sometimes http status 500 displayed on browser. Works fine on IE browser.

          Show
          Ken Fyten added a comment - - edited All test run on tomcat6 withFF3.6, IE8 & Opera10.6 Icefaces Trunk revision#22314 Browser cookies disabled: Notable failures: File upload: ICE-2009 Fails on FF & Opera( cannot upload files) inputfile Fails on FF & Opera( cannot upload files) Component-showcase fileupload: FF does not work reliably, sometimes http status 500 displayed on browser. Works fine on IE browser.
          Deryk Sinotte made changes -
          Assignee Deryk Sinotte [ deryk.sinotte ] Ted Goddard [ ted.goddard ]
          Hide
          Ken Fyten added a comment -

          Firefox failures with inputFile cannot be reproduced independently.

          Show
          Ken Fyten added a comment - Firefox failures with inputFile cannot be reproduced independently.
          Ken Fyten made changes -
          Status Open [ 1 ] Resolved [ 5 ]
          Fix Version/s 1.8.2-EE-GA_P02 [ 10226 ]
          Assignee Priority P1
          Resolution Fixed [ 1 ]
          Ken Fyten made changes -
          Fix Version/s 1.8.3 [ 10211 ]
          Ken Fyten made changes -
          Status Resolved [ 5 ] Closed [ 6 ]

            People

            • Assignee:
              Ted Goddard
              Reporter:
              Arran Mccullough
            • Votes:
              0 Vote for this issue
              Watchers:
              0 Start watching this issue

              Dates

              • Created:
                Updated:
                Resolved: