commit-gnue
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[gnue] r8112 - trunk/gnue-forms/src


From: reinhard
Subject: [gnue] r8112 - trunk/gnue-forms/src
Date: Tue, 6 Dec 2005 15:09:37 -0600 (CST)

Author: reinhard
Date: 2005-12-06 15:09:37 -0600 (Tue, 06 Dec 2005)
New Revision: 8112

Modified:
   trunk/gnue-forms/src/GFParser.py
Log:
Fixed list of allowed parent tags.


Modified: trunk/gnue-forms/src/GFParser.py
===================================================================
--- trunk/gnue-forms/src/GFParser.py    2005-12-02 11:36:53 UTC (rev 8111)
+++ trunk/gnue-forms/src/GFParser.py    2005-12-06 21:09:37 UTC (rev 8112)
@@ -120,7 +120,7 @@
          'Required': True,
          'Importable': True,
          'SingleInstance': True,
-         'ParentTags': ('form',),
+         'ParentTags': ('form','dialog'),
          'Description': 'Separation layer that contains "Business logic": '
                         'blocks, fields, block-level and field-level 
triggers.'},
 
@@ -129,7 +129,7 @@
          'Required': True,
          'Importable': True,
          'SingleInstance': True,
-         'ParentTags': ('form',),
+         'ParentTags': ('form','dialog'),
          'Description': 'Separation layer that contains all the '
                         'visual elements on the form.' ,
          'Attributes': {
@@ -871,7 +871,7 @@
       'options': {
          'BaseClass': GFObjects.GFOptions,
          'UsableBySiblings': True,
-         'ParentTags': ('form',),
+         'ParentTags': ('form','dialog'),
          'Description': 'TODO' },
 
       'option': {
@@ -1023,7 +1023,7 @@
                'Typecast': GTypecast.name,
                'Default': "char",
                'Description': 'TODO' } },
-         'ParentTags':  ('form',),
+         'ParentTags':  ('form','dialog'),
          'Description': 'A form can get parameters from the outer world '
                         'or a calling form, and can pass values back too '
                         'in these parameters.' },
@@ -1051,7 +1051,7 @@
     datasourceElems = GDataSource.getXMLelements(
         updates={'datasource': {
                    'BaseClass': GFObjects.GFDataSource,
-                   'ParentTags': ('form',) },
+                   'ParentTags': ('form','dialog') },
                  'cparam': {
                    'BaseClass': GFObjects.GFCParam }
                  })
@@ -1090,7 +1090,7 @@
     xmlElements.update(
       GTrigger.getXMLelements(
         updates={'trigger':{
-                   'ParentTags': ('form',)},
+                   'ParentTags': ('form','dialog','block','field','button')},
                 }))
 
     #





reply via email to

[Prev in Thread] Current Thread [Next in Thread]