mailr10455 - /branches/bieri_gui/data/gui.py


Others Months | Index by Date | Thread Index
>>   [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Header


Content

Posted by edward on January 27, 2010 - 22:40:
Author: bugman
Date: Wed Jan 27 22:40:11 2010
New Revision: 10455

URL: http://svn.gna.org/viewcvs/relax?rev=10455&view=rev
Log:
Created the Analyses.from_xml() method and a few fixes for Gui.from_xml().

The GUI data structures should now be able to be converted to XML and back 
again.


Modified:
    branches/bieri_gui/data/gui.py

Modified: branches/bieri_gui/data/gui.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/bieri_gui/data/gui.py?rev=10455&r1=10454&r2=10455&view=diff
==============================================================================
--- branches/bieri_gui/data/gui.py (original)
+++ branches/bieri_gui/data/gui.py Wed Jan 27 22:40:11 2010
@@ -46,9 +46,9 @@
 
 
     def from_xml(self, gui_node):
-        """Recreate the element data structure from the XML element node.
+        """Recreate the gui data structure from the XML gui node.
 
-        @param gui_node:    The element XML node.
+        @param gui_node:    The gui XML node.
         @type gui_node:     xml.dom.minicompat.Element instance
         """
 
@@ -59,7 +59,7 @@
         analyses_nodes = gui_node.getElementsByTagName('analyses')
 
         # Recreate the analyses structure.
-        self.analyses.from_xml(analyses_nodes)
+        self.analyses.from_xml(analyses_nodes[0])
 
         # Recreate all the other data structures.
         xml_to_object(gui_node, self, blacklist=['analyses'])
@@ -97,3 +97,22 @@
 
         # Return the container.
         return self[-1]
+
+
+    def from_xml(self, analyses_node):
+        """Recreate the analyses data structure from the XML analyses node.
+
+        @param analyses_node:   The analyses XML node.
+        @type analyses_node:    xml.dom.minicompat.Element instance
+        """
+
+        # Get all the analysis nodes.
+        analysis_nodes = analyses_node.getElementsByTagName('analysis')
+
+        # Loop over the nodes.
+        for node in analysis_nodes:
+            # Add a blank analysis container.
+            cont = self.add()
+
+            # Recreate the analysis container.
+            cont.from_xml(node)




Related Messages


Powered by MHonArc, Updated Wed Jan 27 23:00:02 2010