commit-gnue
[Top][All Lists]
Advanced

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

gnue common/utils/README forms/src/GFObjects/GF...


From: Jan Ischebeck
Subject: gnue common/utils/README forms/src/GFObjects/GF...
Date: Mon, 23 Sep 2002 13:32:10 -0400

CVSROOT:        /cvsroot/gnue
Module name:    gnue
Changes by:     Jan Ischebeck <address@hidden>  02/09/23 13:32:10

Modified files:
        common/utils   : README 
        forms/src/GFObjects: GFParameter.py 
Added files:
        common/utils   : connection.gfd 

Log message:
        add connection.gfd to common/utils
        more Parameter fixes

CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/gnue/gnue/common/utils/connection.gfd?rev=1.1
http://savannah.gnu.org/cgi-bin/viewcvs/gnue/gnue/common/utils/README.diff?tr1=1.1&tr2=1.2&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/gnue/gnue/forms/src/GFObjects/GFParameter.py.diff?tr1=1.4&tr2=1.5&r1=text&r2=text

Patches:
Index: gnue/common/utils/README
diff -c gnue/common/utils/README:1.1 gnue/common/utils/README:1.2
*** gnue/common/utils/README:1.1        Tue Jan 29 16:05:11 2002
--- gnue/common/utils/README    Mon Sep 23 13:32:10 2002
***************
*** 1,4 ****
  
! This directory contains tools used by CVS developers... if you don't
! already know what a file in here does, you don't need to run it ;)
  
--- 1,24 ----
+ This directory contains tools. Some are just used by CVS developers and
+ some are provided for GNUe users. Some can be used completely apart from
+ GNUe.
  
! User tools:
  
+ connection.gfd    a GNUe forms file, which provides a form to edit 
+                   GNUe connection.conf configuration files.
+ 
+ 
+ xml2sql           a framework to convert database schemas stored
+                   in a XML format into database dependent sql.
+                   The conversion is done using XSLT definitions.
+                   The used XML format is called GNUe Schema Definition
+                   format and can be edited by GNUe Designer.
+ 
+ 
+ CVS developer tools: (if you don't already know what a file in here does,
+                       you don't need to run it ;)
+ 
+ create-technote-index.py   
+ po-diff.py 
+ create-po.sh 
+ setup-win4lin-stage.sh
Index: gnue/forms/src/GFObjects/GFParameter.py
diff -c gnue/forms/src/GFObjects/GFParameter.py:1.4 
gnue/forms/src/GFObjects/GFParameter.py:1.5
*** gnue/forms/src/GFObjects/GFParameter.py:1.4 Mon Sep 23 12:11:22 2002
--- gnue/forms/src/GFObjects/GFParameter.py     Mon Sep 23 13:32:10 2002
***************
*** 71,81 ****
        val = self._form.getParameter(self._name)
  
        if val is None:
!         val = ""
        elif self._parameter.type == 'number':
!         val = float(self._cachedValue)
        else:
!         val = "%s" % self._cachedValue
  
!       self._cachedValue = val
  
--- 71,81 ----
        val = self._form.getParameter(self._name)
  
        if val is None:
!         self._cachedValue = ""
        elif self._parameter.type == 'number':
!         self._cachedValue = float(val)
        else:
!         self._cachedValue = "%s" % val
  
!       return self._cachedValue
  




reply via email to

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