You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ant.apache.org by hi...@apache.org on 2013/12/14 18:11:33 UTC

svn commit: r1550941 - in /ant/ivy/ivyde/trunk: doc/release-notes.html org.apache.ivyde.eclipse/plugin.xml

Author: hibou
Date: Sat Dec 14 17:11:32 2013
New Revision: 1550941

URL: http://svn.apache.org/r1550941
Log:
IVYDE-354: xml bomb in workspace causes hang in Ivy code during Search or Synchronize operations (thanks to Matt Hillsdon)

Modified:
    ant/ivy/ivyde/trunk/doc/release-notes.html
    ant/ivy/ivyde/trunk/org.apache.ivyde.eclipse/plugin.xml

Modified: ant/ivy/ivyde/trunk/doc/release-notes.html
URL: http://svn.apache.org/viewvc/ant/ivy/ivyde/trunk/doc/release-notes.html?rev=1550941&r1=1550940&r2=1550941&view=diff
==============================================================================
--- ant/ivy/ivyde/trunk/doc/release-notes.html (original)
+++ ant/ivy/ivyde/trunk/doc/release-notes.html Sat Dec 14 17:11:32 2013
@@ -103,6 +103,7 @@ Here is the list of people who have cont
 <li>Will Gorman</li>
 <li>Miguel Griffa</li>
 <li>Stephen Haberman</li>
+<li>Matt Hillsdon</li>
 <li>Adam Karl</li>
 <li>Bernd Kurz</li>
 <li>Ivica Loncar</li>
@@ -121,6 +122,10 @@ Here is the list of people who have cont
 <h1><a name="changes"></a>List of Changes in this Release</h1>
 
 List of changes since <a href="/ivy/ivyde/history/2.2.0.final/release-notes.html">Apache IvyDE 2.2.0 final</a>:
+<ul>
+    <li>FIX: xml bomb in workspace causes hang in Ivy code during Search or Synchronize operations (IVYDE-354) (thanks to Matt Hillsdon)</li>
+</ul>
+
     <!-- samples
 <ul>
     <li>NEW: new new new (IVYDE-XXX) (thanks to XXX)</li>

Modified: ant/ivy/ivyde/trunk/org.apache.ivyde.eclipse/plugin.xml
URL: http://svn.apache.org/viewvc/ant/ivy/ivyde/trunk/org.apache.ivyde.eclipse/plugin.xml?rev=1550941&r1=1550940&r2=1550941&view=diff
==============================================================================
--- ant/ivy/ivyde/trunk/org.apache.ivyde.eclipse/plugin.xml (original)
+++ ant/ivy/ivyde/trunk/org.apache.ivyde.eclipse/plugin.xml Sat Dec 14 17:11:32 2013
@@ -490,7 +490,8 @@
             name="Ivy File"
             priority="normal">
          <describer
-               class="org.apache.ivyde.internal.eclipse.ui.editors.IvyFileContentDescriber">
+               class="org.eclipse.core.runtime.content.XMLRootElementContentDescriber2">
+               <parameter name="element" value="ivy-module" />
          </describer>
       </content-type>
       <content-type
@@ -500,7 +501,8 @@
             name="Ivy Settings"
             priority="normal">
          <describer
-               class="org.apache.ivyde.internal.eclipse.ui.editors.IvySettingsContentDescriber">
+               class="org.eclipse.core.runtime.content.XMLRootElementContentDescriber2">
+               <parameter name="element" value="ivy-settings" />
          </describer>
       </content-type>
    </extension>