commit-gnue
[Top][All Lists]
Advanced

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

gnue-appserver/src/classrep Class.py Property.py


From: Reinhard Mueller
Subject: gnue-appserver/src/classrep Class.py Property.py
Date: Tue, 12 Aug 2003 11:01:05 -0400

CVSROOT:        /cvsroot/gnue
Module name:    gnue-appserver
Branch:         
Changes by:     Reinhard Mueller <address@hidden>       03/08/12 11:01:05

Modified files:
        src/classrep   : Class.py Property.py 

Log message:
        Distinguish between fullName (user side) and table/column name (db side)
        because they might someday be different.

CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/gnue/gnue-appserver/src/classrep/Class.py.diff?tr1=1.4&tr2=1.5&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/gnue/gnue-appserver/src/classrep/Property.py.diff?tr1=1.3&tr2=1.4&r1=text&r2=text

Patches:
Index: gnue-appserver/src/classrep/Class.py
diff -c gnue-appserver/src/classrep/Class.py:1.4 
gnue-appserver/src/classrep/Class.py:1.5
*** gnue-appserver/src/classrep/Class.py:1.4    Mon Aug 11 11:29:35 2003
--- gnue-appserver/src/classrep/Class.py        Tue Aug 12 11:01:05 2003
***************
*** 19,25 ****
  # write to the Free Software Foundation, Inc., 59 Temple Place 
  # - Suite 330, Boston, MA 02111-1307, USA.
  #
! # $Id: Class.py,v 1.4 2003/08/11 15:29:35 reinhard Exp $
  
  from Base import *
  from Namespace import *
--- 19,25 ----
  # write to the Free Software Foundation, Inc., 59 Temple Place 
  # - Suite 330, Boston, MA 02111-1307, USA.
  #
! # $Id: Class.py,v 1.5 2003/08/12 15:01:05 reinhard Exp $
  
  from Base import *
  from Namespace import *
***************
*** 128,133 ****
--- 128,134 ----
      self.module     = module
      self.definition = classDict.definition
      self.fullName   = createName (module.gnue_name, object.gnue_name)
+     self.table      = self.fullName
  
      self.properties = PropertyDict (classDict.session, classDict.modules, 
self)
  
Index: gnue-appserver/src/classrep/Property.py
diff -c gnue-appserver/src/classrep/Property.py:1.3 
gnue-appserver/src/classrep/Property.py:1.4
*** gnue-appserver/src/classrep/Property.py:1.3 Mon Aug 11 11:29:35 2003
--- gnue-appserver/src/classrep/Property.py     Tue Aug 12 11:01:05 2003
***************
*** 19,25 ****
  # write to the Free Software Foundation, Inc., 59 Temple Place 
  # - Suite 330, Boston, MA 02111-1307, USA.
  #
! # $Id: Property.py,v 1.3 2003/08/11 15:29:35 reinhard Exp $
  
  from Base import *
  from Namespace import *
--- 19,25 ----
  # write to the Free Software Foundation, Inc., 59 Temple Place 
  # - Suite 330, Boston, MA 02111-1307, USA.
  #
! # $Id: Property.py,v 1.4 2003/08/12 15:01:05 reinhard Exp $
  
  from Base import *
  from Namespace import *
***************
*** 133,138 ****
--- 133,139 ----
  
      # gnue_property.gnue_name is already a fully qualified identifier
      self.fullName = object.gnue_name
+     self.column   = self.fullName
  
    # 
---------------------------------------------------------------------------
    # all unknown attributes are routed to the gnue-namespace




reply via email to

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