commit-gnue
[Top][All Lists]
Advanced

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

gnue/forms/src GFParser.py


From: Jason Cater
Subject: gnue/forms/src GFParser.py
Date: Sat, 16 Nov 2002 00:14:43 -0500

CVSROOT:        /home/cvs
Module name:    gnue
Changes by:     Jason Cater <address@hidden>    02/11/16 00:14:43

Modified files:
        forms/src      : GFParser.py 

Log message:
        added doc attributes to parser objects

CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/gnue/forms/src/GFParser.py.diff?cvsroot=OldCVS&tr1=1.79&tr2=1.80&r1=text&r2=text

Patches:
Index: gnue/forms/src/GFParser.py
diff -c gnue/forms/src/GFParser.py:1.79 gnue/forms/src/GFParser.py:1.80
*** gnue/forms/src/GFParser.py:1.79     Fri Nov  8 15:15:37 2002
--- gnue/forms/src/GFParser.py  Sat Nov 16 00:14:43 2002
***************
*** 81,90 ****
           'Attributes': {
              'title': {
                 'Typecast': GTypecast.text,
!                'Default': 'Untitled Form' },
              'readonly': {
                 'Typecast': GTypecast.boolean,
!                'Default': 0 },
              'tabbed': {
                 'Typecast': GTypecast.name,
                 'ValueSet': {
--- 81,92 ----
           'Attributes': {
              'title': {
                 'Typecast': GTypecast.text,
!                'Default': 'Untitled Form',
!                'Description': 'TODO' },
              'readonly': {
                 'Typecast': GTypecast.boolean,
!                'Default': 0,
!                'Description': 'TODO' },
              'tabbed': {
                 'Typecast': GTypecast.name,
                 'ValueSet': {
***************
*** 92,105 ****
                    'right': {},
                    'bottom': {},
                    'top': {} },
!                'Default': "" },
              'width': {
                 'Typecast': GTypecast.whole,
!                'Default': 40 },
              'height': {
                 'Typecast': GTypecast.whole,
!                'Default': 12 } },
!          'ParentTags': None },
  
        'database': {
           'BaseClass': GFObjects.GFDatabase,
--- 94,111 ----
                    'right': {},
                    'bottom': {},
                    'top': {} },
!                'Default': "",
!                'Description': 'TODO' },
              'width': {
                 'Typecast': GTypecast.whole,
!                'Default': 40,
!                'Description': 'TODO' },
              'height': {
                 'Typecast': GTypecast.whole,
!                'Default': 12,
!                'Description': 'TODO' } },
!          'ParentTags': None,
!          'Description': 'TODO' },
  
        'database': {
           'BaseClass': GFObjects.GFDatabase,
***************
*** 107,129 ****
              'name': {
                 'Required': 1,
                 'Unique': 1,
!                'Typecast': GTypecast.name },
              'provider': {
                 'Required': 1,
!                'Typecast': GTypecast.name },
              'dbname': {
                 'Required': 0,
!                'Typecast': GTypecast.text },
              'service': {
                 'Required': 0,
!                'Typecast': GTypecast.text },
              'comment': {
                 'Required': 0,
!                'Typecast': GTypecast.text },
              'host': {
                 'Required': 0,
!                'Typecast': GTypecast.text } },
!          'ParentTags': ('form',) },
  
        'page': {
           'BaseClass': GFObjects.GFPage,
--- 113,142 ----
              'name': {
                 'Required': 1,
                 'Unique': 1,
!                'Typecast': GTypecast.name,
!                'Description': 'TODO' },
              'provider': {
                 'Required': 1,
!                'Typecast': GTypecast.name,
!                'Description': 'TODO' },
              'dbname': {
                 'Required': 0,
!                'Typecast': GTypecast.text,
!                'Description': 'TODO' },
              'service': {
                 'Required': 0,
!                'Typecast': GTypecast.text,
!                'Description': 'TODO' },
              'comment': {
                 'Required': 0,
!                'Typecast': GTypecast.text,
!                'Description': 'TODO' },
              'host': {
                 'Required': 0,
!                'Typecast': GTypecast.text,
!                'Description': 'TODO' } },
!          'ParentTags': ('form',),
!          'Description': 'TODO' },
  
        'page': {
           'BaseClass': GFObjects.GFPage,
***************
*** 134,141 ****
                 'Unique': 1,
                 'Typecast': GTypecast.name },
              'caption': {
!                'Typecast': GTypecast.text } },
!          'ParentTags': ('form',) },
  
        'block': {
           'BaseClass': GFObjects.GFBlock,
--- 147,156 ----
                 'Unique': 1,
                 'Typecast': GTypecast.name },
              'caption': {
!                'Typecast': GTypecast.text,
!                'Description': 'TODO' } },
!          'ParentTags': ('form',),
!          'Description': 'TODO' },
  
        'block': {
           'BaseClass': GFObjects.GFBlock,
***************
*** 145,239 ****
              'name': {
                 'Required': 1,
                 'Unique': 1,
!                'Typecast': GTypecast.name },
              'rows': {
!                'Typecast': GTypecast.whole},
              'rowSpacer': {
!                'Typecast': GTypecast.whole },
              'transparentBlock':{
                 'Typecast': GTypecast.boolean,
!                'Default': 0 },
              'restrictDelete':{
                 'Typecast': GTypecast.boolean,
!                'Default': 0 },
              'restrictInsert':{
                 'Typecast': GTypecast.boolean,
!                'Default': 0 },
              'datasource': {
                 'References': (('datasource','name'),),
!                'Typecast': GTypecast.name } },
!          'ParentTags': ('page',) },
  
        'label': {
           'BaseClass': GFObjects.GFLabel,
           'Attributes': {
              'name': {
                 'Unique': 1,
!                'Typecast': GTypecast.name },
              'text': {
                 'Required': 1,
!                'Typecast': GTypecast.text },
              'alignment': {
                 'Typecast': GTypecast.name,
                 'ValueSet': {
                    'left': {},
                    'right': {},
                    'center': {} },
!                'Default': "left"},
              'width': {
!                'Typecast': GTypecast.whole },
              'rows': {
!                'Typecast': GTypecast.whole },
              'rowSpacer': {
!                'Typecast': GTypecast.whole },
              'x': {
!                'Required': 1, 
!                'Typecast': GTypecast.whole }, 
              'y': {
                 'Required': 1,
!                'Typecast': GTypecast.whole } }, 
!          'ParentTags': ('page','block',) },
  
!       # If you implement a new entry "style", add to the entryStyles 
        # structure after this list
!       'entry': { 
           'BaseClass': GFObjects.GFEntry,
           'Importable':1,
!          'Attributes': { 
              'name': {
                 'Required': 1,
!                'Unique': 1, 
!                'Typecast': GTypecast.name }, 
              'field': {
!                'Typecast': GTypecast.name }, 
              'height': {
!                'Typecast': GTypecast.whole, 
!                'Default': 1 }, 
              'width': {
!                'Typecast': GTypecast.whole },
              'max_length': {
!                'Typecast': GTypecast.whole }, 
              'visibleCount':{
                 'Typecast': GTypecast.whole,
                 'Deprecated': 'Use the <block> "rows" attribute instead.' },
              'focusorder': {
!                'Typecast': GTypecast.whole},
              'rows': {
!                'Typecast': GTypecast.whole},
              'rowSpacer': {
!                'Typecast': GTypecast.whole },
              'readonly': {
                 'Typecast': GTypecast.boolean,
                 'Default': 0   },
              'required': {
                 'Description': 'This object cannot have an empty value prior '
                                'to a commit.',
                 'Typecast': GTypecast.boolean,
!                'Default': 0   }, 
              'uppercase': {
                 'Deprecated': 'Use case="upper" instead.',
                 'Typecast': GTypecast.boolean,
!                'Default': 0   },
              'lowercase': {
                 'Deprecated': 'Use case="lower" instead.',
                 'Typecast': GTypecast.boolean,
--- 160,280 ----
              'name': {
                 'Required': 1,
                 'Unique': 1,
!                'Typecast': GTypecast.name,
!                'Description': 'TODO' },
              'rows': {
!                'Typecast': GTypecast.whole,
!                'Description': 'TODO'},
              'rowSpacer': {
!                'Typecast': GTypecast.whole,
!                'Description': 'TODO' },
              'transparentBlock':{
                 'Typecast': GTypecast.boolean,
!                'Default': 0,
!                'Description': 'TODO' },
              'restrictDelete':{
                 'Typecast': GTypecast.boolean,
!                'Default': 0,
!                'Description': 'TODO' },
              'restrictInsert':{
                 'Typecast': GTypecast.boolean,
!                'Default': 0,
!                'Description': 'TODO' },
              'datasource': {
                 'References': (('datasource','name'),),
!                'Typecast': GTypecast.name,
!                'Description': 'TODO' } },
!          'ParentTags': ('page',),
!          'Description': 'TODO' },
  
        'label': {
           'BaseClass': GFObjects.GFLabel,
           'Attributes': {
              'name': {
                 'Unique': 1,
!                'Typecast': GTypecast.name,
!                'Description': 'TODO' },
              'text': {
                 'Required': 1,
!                'Typecast': GTypecast.text,
!                'Description': 'TODO' },
              'alignment': {
                 'Typecast': GTypecast.name,
                 'ValueSet': {
                    'left': {},
                    'right': {},
                    'center': {} },
!                'Default': "left",
!                'Description': 'TODO'},
              'width': {
!                'Typecast': GTypecast.whole,
!                'Description': 'TODO' },
              'rows': {
!                'Typecast': GTypecast.whole,
!                'Description': 'TODO' },
              'rowSpacer': {
!                'Typecast': GTypecast.whole,
!                'Description': 'TODO' },
              'x': {
!                'Required': 1,
!                'Typecast': GTypecast.whole,
!                'Description': 'TODO' },
              'y': {
                 'Required': 1,
!                'Typecast': GTypecast.whole,
!                'Description': 'TODO' } },
!          'ParentTags': ('page','block',),
!          'Description': 'TODO' },
  
!       # If you implement a new entry "style", add to the entryStyles
        # structure after this list
!       'entry': {
           'BaseClass': GFObjects.GFEntry,
           'Importable':1,
!          'Attributes': {
              'name': {
                 'Required': 1,
!                'Unique': 1,
!                'Typecast': GTypecast.name,
!                'Description': 'TODO' },
              'field': {
!                'Typecast': GTypecast.name,
!                'Description': 'TODO' },
              'height': {
!                'Typecast': GTypecast.whole,
!                'Default': 1,
!                'Description': 'TODO' },
              'width': {
!                'Typecast': GTypecast.whole,
!                'Description': 'TODO' },
              'max_length': {
!                'Typecast': GTypecast.whole,
!                'Description': 'TODO' },
              'visibleCount':{
                 'Typecast': GTypecast.whole,
                 'Deprecated': 'Use the <block> "rows" attribute instead.' },
              'focusorder': {
!                'Typecast': GTypecast.whole,
!                'Description': 'TODO'},
              'rows': {
!                'Typecast': GTypecast.whole,
!                'Description': 'TODO'},
              'rowSpacer': {
!                'Typecast': GTypecast.whole,
!                'Description': 'TODO' },
              'readonly': {
                 'Typecast': GTypecast.boolean,
+                'Description': 'TODO',
                 'Default': 0   },
              'required': {
                 'Description': 'This object cannot have an empty value prior '
                                'to a commit.',
                 'Typecast': GTypecast.boolean,
!                'Default': 0   },
              'uppercase': {
                 'Deprecated': 'Use case="upper" instead.',
                 'Typecast': GTypecast.boolean,
!                'Default': 0  },
              'lowercase': {
                 'Deprecated': 'Use case="lower" instead.',
                 'Typecast': GTypecast.boolean,
***************
*** 244,280 ****
                 'Default': 0   },
              'hidden': {
                 'Typecast': GTypecast.boolean,
!                'Default': 0   }, 
              'style': {
!                'Typecast': GTypecast.name, 
!                'ValueSet': { 
!                   'default': {}, 
!                   'dropdown': {}, 
                    'checkbox': {},
                    'label': {} },
!                'Default': 'default'},
              'case': {
                 'Typecast': GTypecast.name,
                 'ValueSet': {
                    'mixed': {},
                    'upper': {},
!                   'lower': {} }, 
!                'Default': 'mixed'},
              'typecast': {
!                'Typecast': GTypecast.name, 
                 'ValueSet': {
!                   'text': {}, 
!                   'number': {}, 
!                   'date': {} }, 
!                'Default': 'text'}, 
              'formatmask': {
!                'Typecast': GTypecast.text },
              'inputmask': {
!                'Typecast': GTypecast.text },
              'displaymask': {
!                'Typecast': GTypecast.text },
              'value': {
!                'Typecast': GTypecast.text },
              'foreign_key': {
                 'Typecast': GTypecast.name,
                 'Deprecated': 'Use fk_source="..." and fk_key="..." instead.' 
},
--- 285,329 ----
                 'Default': 0   },
              'hidden': {
                 'Typecast': GTypecast.boolean,
!                'Default': 0,
!                'Description': 'TODO'   },
              'style': {
!                'Typecast': GTypecast.name,
!                'ValueSet': {
!                   'default': {},
!                   'dropdown': {},
                    'checkbox': {},
                    'label': {} },
!                'Default': 'default',
!                'Description': 'TODO'  },
              'case': {
                 'Typecast': GTypecast.name,
                 'ValueSet': {
                    'mixed': {},
                    'upper': {},
!                   'lower': {} },
!                'Default': 'mixed',
!                'Description': 'TODO'  },
              'typecast': {
!                'Typecast': GTypecast.name,
                 'ValueSet': {
!                   'text': {},
!                   'number': {},
!                   'date': {} },
!                'Default': 'text',
!                'Description': 'TODO'},
              'formatmask': {
!                'Typecast': GTypecast.text,
!                'Description': 'TODO' },
              'inputmask': {
!                'Typecast': GTypecast.text,
!                'Description': 'TODO' },
              'displaymask': {
!                'Typecast': GTypecast.text,
!                'Description': 'TODO' },
              'value': {
!                'Typecast': GTypecast.text,
!                'Description': 'TODO' },
              'foreign_key': {
                 'Typecast': GTypecast.name,
                 'Deprecated': 'Use fk_source="..." and fk_key="..." instead.' 
},
***************
*** 282,364 ****
                 'Typecast': GTypecast.text,
                 'Deprecated': 'Use fk_description="..." instead.' },
              'fk_source': {
!                'Typecast': GTypecast.name },
              'fk_key': {
!                'Typecast': GTypecast.name },
              'fk_description': {
!                'Typecast': GTypecast.name },
              'default': {
!                'Typecast': GTypecast.text },
              'queryDefault':{
!                'Typecast': GTypecast.text },
              'sloppyQuery': {
!                'Typecast': GTypecast.text },
              'ignoreCaseOnQuery': {
!                'Typecast': GTypecast.boolean, 
!                'Default': 0 }, 
              'editOnNull': {
                 'Description': 'Only allow this object to be edited if it '
                                'is currently empty.',
                 'Typecast': GTypecast.boolean,
!                'Default': 0 },
              'no_ltrim': {
                 'Description': 'Suppress trimming of extraneous space at '
                                'beginning of user input.',
                 'Typecast': GTypecast.boolean,
!                'Default': 0 },
              'no_rtrim': {
                 'Description': 'Suppress trimming of extraneous space at end '
                                'of user input.',
                 'Typecast': GTypecast.boolean,
!                'Default': 0 },
              'x': {
                 'Required': 1,
!                'Typecast': GTypecast.whole },
              'y': {
                 'Required': 1,
!                'Typecast': GTypecast.whole } },
!          'ParentTags': ('block','box') },
  
        'scrollbar': {
           'BaseClass': GFObjects.GFScrollBar,
           'Attributes': {
              'width': {
                 'Required': 1,
!                'Typecast': GTypecast.whole },
              'height': {
                 'Required': 1,
!                'Typecast': GTypecast.whole },
              'x': {
                 'Required': 1,
!                'Typecast': GTypecast.whole },
              'y': {
                 'Required': 1,
!                'Typecast': GTypecast.whole } },
!          'ParentTags': ('page','block','box') },
  
        'box': {
           'BaseClass': GFObjects.GFBox,
           'Attributes': {
              'name': {
                 'Unique': 1,
!                'Typecast': GTypecast.name },
              'label': {
!                'Typecast': GTypecast.text },
              'width': {
                 'Required': 1,
!                'Typecast': GTypecast.whole },
              'height': {
                 'Required': 1,
!                'Typecast': GTypecast.whole },
              'focusorder': {
!                'Typecast': GTypecast.whole},
              'x': {
                 'Required': 1,
!                'Typecast': GTypecast.whole },
              'y': {
                 'Required': 1,
!                'Typecast': GTypecast.whole } },
!          'ParentTags': ('page','block',) },
  
        'button': {
           'BaseClass': GFObjects.GFButton,
--- 331,439 ----
                 'Typecast': GTypecast.text,
                 'Deprecated': 'Use fk_description="..." instead.' },
              'fk_source': {
!                'Typecast': GTypecast.name,
!                'Description': 'TODO' },
              'fk_key': {
!                'Typecast': GTypecast.name,
!                'Description': 'TODO' },
              'fk_description': {
!                'Typecast': GTypecast.name,
!                'Description': 'TODO' },
              'default': {
!                'Typecast': GTypecast.text,
!                'Description': 'TODO' },
              'queryDefault':{
!                'Typecast': GTypecast.text,
!                'Description': 'TODO' },
              'sloppyQuery': {
!                'Typecast': GTypecast.text,
!                'Description': 'TODO' },
              'ignoreCaseOnQuery': {
!                'Typecast': GTypecast.boolean,
!                'Default': 0,
!                'Description': 'TODO' },
              'editOnNull': {
                 'Description': 'Only allow this object to be edited if it '
                                'is currently empty.',
                 'Typecast': GTypecast.boolean,
!                'Default': 0,
!                'Description': 'TODO' },
              'no_ltrim': {
                 'Description': 'Suppress trimming of extraneous space at '
                                'beginning of user input.',
                 'Typecast': GTypecast.boolean,
!                'Default': 0,
!                'Description': 'TODO' },
              'no_rtrim': {
                 'Description': 'Suppress trimming of extraneous space at end '
                                'of user input.',
                 'Typecast': GTypecast.boolean,
!                'Default': 0,
!                'Description': 'TODO' },
              'x': {
                 'Required': 1,
!                'Typecast': GTypecast.whole,
!                'Description': 'TODO' },
              'y': {
                 'Required': 1,
!                'Typecast': GTypecast.whole,
!                'Description': 'TODO' } },
!          'ParentTags': ('block','box'),
!          'Description': 'TODO' },
  
        'scrollbar': {
           'BaseClass': GFObjects.GFScrollBar,
           'Attributes': {
              'width': {
                 'Required': 1,
!                'Typecast': GTypecast.whole,
!                'Description': 'TODO' },
              'height': {
                 'Required': 1,
!                'Typecast': GTypecast.whole,
!                'Description': 'TODO' },
              'x': {
                 'Required': 1,
!                'Typecast': GTypecast.whole,
!                'Description': 'TODO' },
              'y': {
                 'Required': 1,
!                'Typecast': GTypecast.whole,
!                'Description': 'TODO' } },
!          'ParentTags': ('page','block','box'),
!          'Description': 'TODO' },
  
        'box': {
           'BaseClass': GFObjects.GFBox,
           'Attributes': {
              'name': {
                 'Unique': 1,
!                'Typecast': GTypecast.name,
!                'Description': 'TODO' },
              'label': {
!                'Typecast': GTypecast.text,
!                'Description': 'TODO' },
              'width': {
                 'Required': 1,
!                'Typecast': GTypecast.whole,
!                'Description': 'TODO' },
              'height': {
                 'Required': 1,
!                'Typecast': GTypecast.whole,
!                'Description': 'TODO' },
              'focusorder': {
!                'Typecast': GTypecast.whole,
!                'Description': 'TODO'  },
              'x': {
                 'Required': 1,
!                'Typecast': GTypecast.whole,
!                'Description': 'TODO' },
              'y': {
                 'Required': 1,
!                'Typecast': GTypecast.whole,
!                'Description': 'TODO' } },
!          'ParentTags': ('page','block',),
!          'Description': 'TODO' },
  
        'button': {
           'BaseClass': GFObjects.GFButton,
***************
*** 366,407 ****
           'Attributes': {
              'name': {
                 'Unique': 1,
!                'Typecast': GTypecast.name },
              'trigger': {
!                'Typecast': GTypecast.name },
              'focusorder': {
!                'Typecast': GTypecast.whole},
              'label': {
!                'Typecast': GTypecast.name },
              'width': {
                 'Required': 1,
!                'Typecast': GTypecast.whole },
              'height': {
                 'Required': 1,
!                'Typecast': GTypecast.whole },
              'x': {
                 'Required': 1,
!                'Typecast': GTypecast.whole },
              'y': {
                 'Required': 1,
!                'Typecast': GTypecast.whole } },
!          'ParentTags': ('page','block','box') },
  
        'options': {
           'BaseClass': GFObjects.GFOptions,
           'UsableBySiblings': 1,
!          'ParentTags': ('form',) },
  
        'option': {
           'BaseClass': GFObjects.GFOption,
           'Attributes': {
              'name': {
                 'Required': 1,
!                'Typecast': GTypecast.name },
              'value': {
!                'Typecast': GTypecast.text } },
           'MixedContent': 1,
!          'ParentTags': ('options',) },
  
        'title': {
           'BaseClass': GFObjects.GFOption,
--- 441,495 ----
           'Attributes': {
              'name': {
                 'Unique': 1,
!                'Typecast': GTypecast.name,
!                'Description': 'TODO' },
              'trigger': {
!                'Typecast': GTypecast.name,
!                'Description': 'TODO' },
              'focusorder': {
!                'Typecast': GTypecast.whole,
!                'Description': 'TODO'},
              'label': {
!                'Typecast': GTypecast.name,
!                'Description': 'TODO' },
              'width': {
                 'Required': 1,
!                'Typecast': GTypecast.whole,
!                'Description': 'TODO' },
              'height': {
                 'Required': 1,
!                'Typecast': GTypecast.whole,
!                'Description': 'TODO' },
              'x': {
                 'Required': 1,
!                'Typecast': GTypecast.whole,
!                'Description': 'TODO' },
              'y': {
                 'Required': 1,
!                'Typecast': GTypecast.whole,
!                'Description': 'TODO' } },
!          'ParentTags': ('page','block','box'),
!          'Description': 'TODO' },
  
        'options': {
           'BaseClass': GFObjects.GFOptions,
           'UsableBySiblings': 1,
!          'ParentTags': ('form',),
!          'Description': 'TODO' },
  
        'option': {
           'BaseClass': GFObjects.GFOption,
           'Attributes': {
              'name': {
                 'Required': 1,
!                'Typecast': GTypecast.name,
!                'Description': 'TODO' },
              'value': {
!                'Typecast': GTypecast.text,
!                'Description': 'TODO' } },
           'MixedContent': 1,
!          'ParentTags': ('options',),
!          'Description': 'TODO' },
  
        'title': {
           'BaseClass': GFObjects.GFOption,
***************
*** 410,451 ****
                 'Typecast': GTypecast.name,
                 'ValueSet': {
                     'title': {} },
!                'Default': 'title' },
              'value': {
!                'Typecast': GTypecast.text } },
           'MixedContent': 1,
           'SingleInstance': 1,
           'Deprecated': 'Use the <form> attribute "title" instead.',
!          'ParentTags': ('options',) },
  
!       'name': { 
           'BaseClass': GFObjects.GFOption,
!          'Attributes': { 
              'name': {
                 'Typecast': GTypecast.name,
                 'ValueSet': {
!                    'name': {} }, 
!                'Default': 'name' },
              'value': {
!                'Typecast': GTypecast.text } },
           'MixedContent': 1,
           'SingleInstance': 1,
!          'ParentTags': ('options',) },
  
        'height': {
           'BaseClass': GFObjects.GFOption,
!          'Attributes': { 
              'name': {
!                'Typecast': GTypecast.name, 
                 'ValueSet': {
                     'height': {} },
!                'Default': 'height' },
              'value': {
!                'Typecast': GTypecast.text } },
!          'MixedContent': 1, 
!          'SingleInstance': 1, 
!          'Deprecated': 'Use the <form> attribute "height" instead.', 
!          'ParentTags': None },
  
        'width': {
           'BaseClass': GFObjects.GFOption,
--- 498,548 ----
                 'Typecast': GTypecast.name,
                 'ValueSet': {
                     'title': {} },
!                'Default': 'title',
!                'Description': 'TODO' },
              'value': {
!                'Typecast': GTypecast.text,
!                'Description': 'TODO' } },
           'MixedContent': 1,
           'SingleInstance': 1,
           'Deprecated': 'Use the <form> attribute "title" instead.',
!          'ParentTags': ('options',),
!          'Description': 'TODO' },
  
!       'name': {
           'BaseClass': GFObjects.GFOption,
!          'Attributes': {
              'name': {
                 'Typecast': GTypecast.name,
                 'ValueSet': {
!                    'name': {} },
!                'Default': 'name',
!                'Description': 'TODO' },
              'value': {
!                'Typecast': GTypecast.text,
!                'Description': 'TODO' } },
           'MixedContent': 1,
           'SingleInstance': 1,
!          'ParentTags': ('options',),
!          'Description': 'TODO' },
  
        'height': {
           'BaseClass': GFObjects.GFOption,
!          'Attributes': {
              'name': {
!                'Typecast': GTypecast.name,
                 'ValueSet': {
                     'height': {} },
!                'Default': 'height',
!                'Description': 'TODO' },
              'value': {
!                'Typecast': GTypecast.text,
!                'Description': 'TODO' } },
!          'MixedContent': 1,
!          'SingleInstance': 1,
!          'Deprecated': 'Use the <form> attribute "height" instead.',
!          'ParentTags': None,
!          'Description': 'TODO' },
  
        'width': {
           'BaseClass': GFObjects.GFOption,
***************
*** 460,466 ****
           'MixedContent': 1,
           'SingleInstance': 1,
           'Deprecated': 'Use the <form> attribute "width" instead.',
!          'ParentTags': ('options',) },
  
        'author': {
           'BaseClass': GFObjects.GFOption,
--- 557,564 ----
           'MixedContent': 1,
           'SingleInstance': 1,
           'Deprecated': 'Use the <form> attribute "width" instead.',
!          'ParentTags': ('options',),
!          'Description': 'TODO' },
  
        'author': {
           'BaseClass': GFObjects.GFOption,
***************
*** 469,494 ****
                 'Typecast': GTypecast.name,
                 'ValueSet': {
                     'author': {} },
!                'Default': 'author' },
              'value': {
!                'Typecast': GTypecast.text } },
           'MixedContent': 1,
           'SingleInstance': 1,
!          'ParentTags': ('options',) },
  
!       'description':{ 
           'BaseClass': GFObjects.GFOption,
           'Attributes': {
              'name': {
!                'Typecast': GTypecast.name, 
                 'ValueSet': {
                     'description': {} },
!                'Default': 'description' }, 
              'value': {
!                'Typecast': GTypecast.text } },
!          'MixedContent': 1, 
           'SingleInstance': 1,
!          'ParentTags': ('options',) },
  
        'version': {
           'BaseClass': GFObjects.GFOption,
--- 567,598 ----
                 'Typecast': GTypecast.name,
                 'ValueSet': {
                     'author': {} },
!                'Default': 'author',
!                'Description': 'TODO' },
              'value': {
!                'Typecast': GTypecast.text,
!                'Description': 'TODO' } },
           'MixedContent': 1,
           'SingleInstance': 1,
!          'ParentTags': ('options',),
!          'Description': 'TODO' },
  
!       'description':{
           'BaseClass': GFObjects.GFOption,
           'Attributes': {
              'name': {
!                'Typecast': GTypecast.name,
                 'ValueSet': {
                     'description': {} },
!                'Default': 'description',
!                'Description': 'TODO' },
              'value': {
!                'Typecast': GTypecast.text,
!                'Description': 'TODO' } },
!          'MixedContent': 1,
           'SingleInstance': 1,
!          'ParentTags': ('options',),
!          'Description': 'TODO' },
  
        'version': {
           'BaseClass': GFObjects.GFOption,
***************
*** 497,546 ****
                 'Typecast': GTypecast.name,
                 'ValueSet': {
                     'version': {} },
!                'Default': 'version' },
              'value': {
!                'Typecast': GTypecast.text } },
           'MixedContent': 1,
!          'SingleInstance': 1, 
!          'ParentTags': ('options',) },
  
!       'tip': { 
           'BaseClass': GFObjects.GFOption,
!          'Attributes': { 
              'name': {
                 'Typecast': GTypecast.name,
                 'ValueSet': {
                     'tip': {} },
!                'Default': 'tip' },
              'value': {
!                'Typecast': GTypecast.text } },
           'MixedContent': 1,
           'SingleInstance': 1,
!          'ParentTags': ('options',) },
        'parameter':    {
           'BaseClass': GFObjects.GFParameter,
           'Attributes': {
              'name':          {
                 'Required': 1,
                 'Unique': 1,
!                'Typecast': GTypecast.name },
              'required':    {
                 'Typecast': GTypecast.boolean,
!                'Default': 0 },
  ##            'limited':     {
  ##               'Typecast': GTypecast.boolean,
! ##               'Default': 0 },
              'default':     {
!                'Typecast': GTypecast.text },
              'description': {
  ##               'Required': 1,
!                'Typecast': GTypecast.text },
  ##            'source':      {
! ##               'Typecast': GTypecast.name },
              'type':        {
                 'Typecast': GTypecast.name,
!                'Default': "char" } },
!          'ParentTags':  ('form',) },
      }
  
  
--- 601,664 ----
                 'Typecast': GTypecast.name,
                 'ValueSet': {
                     'version': {} },
!                'Default': 'version',
!                'Description': 'TODO' },
              'value': {
!                'Typecast': GTypecast.text,
!                'Description': 'TODO' } },
           'MixedContent': 1,
!          'SingleInstance': 1,
!          'ParentTags': ('options',),
!          'Description': 'TODO' },
  
!       'tip': {
           'BaseClass': GFObjects.GFOption,
!          'Attributes': {
              'name': {
                 'Typecast': GTypecast.name,
                 'ValueSet': {
                     'tip': {} },
!                'Default': 'tip',
!                'Description': 'TODO' },
              'value': {
!                'Typecast': GTypecast.text,
!                'Description': 'TODO' } },
           'MixedContent': 1,
           'SingleInstance': 1,
!          'ParentTags': ('options',),
!          'Description': 'TODO' },
        'parameter':    {
           'BaseClass': GFObjects.GFParameter,
           'Attributes': {
              'name':          {
                 'Required': 1,
                 'Unique': 1,
!                'Typecast': GTypecast.name,
!                'Description': 'TODO' },
              'required':    {
                 'Typecast': GTypecast.boolean,
!                'Default': 0,
!                'Description': 'TODO' },
  ##            'limited':     {
  ##               'Typecast': GTypecast.boolean,
! ##               'Default': 0,
! ##               'Description': 'TODO' },
              'default':     {
!                'Typecast': GTypecast.text,
!                'Description': 'TODO' },
              'description': {
  ##               'Required': 1,
!                'Typecast': GTypecast.text,
!                'Description': 'TODO' },
  ##            'source':      {
! ##               'Typecast': GTypecast.name,
! ##               'Description': 'TODO' },
              'type':        {
                 'Typecast': GTypecast.name,
!                'Default': "char",
!                'Description': 'TODO' } },
!          'ParentTags':  ('form',),
!          'Description': 'TODO' },
      }
  
  




reply via email to

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