commit-gnue
[Top][All Lists]
Advanced

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

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


From: Reinhard Mueller
Subject: gnue-appserver/src/classrep Class.py Module.py ...
Date: Mon, 11 Aug 2003 11:29:35 -0400

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

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

Log message:
        Removed some debugging messages.

CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/gnue/gnue-appserver/src/classrep/Class.py.diff?tr1=1.3&tr2=1.4&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/gnue/gnue-appserver/src/classrep/Module.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.2&tr2=1.3&r1=text&r2=text

Patches:
Index: gnue-appserver/src/classrep/Class.py
diff -c gnue-appserver/src/classrep/Class.py:1.3 
gnue-appserver/src/classrep/Class.py:1.4
*** gnue-appserver/src/classrep/Class.py:1.3    Tue May 27 10:30:57 2003
--- gnue-appserver/src/classrep/Class.py        Mon Aug 11 11:29:35 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.3 2003/05/27 14:30:57 jvetter 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.4 2003/08/11 15:29:35 reinhard Exp $
  
  from Base import *
  from Namespace import *
***************
*** 65,71 ****
    # Request a list of matching business objects
    # 
---------------------------------------------------------------------------
    def _requestData (self, moduleId, className=None):
!     print "DEBUG: Class: requestData %s, %s" % (moduleId, className)
  
      cond = [["eq", ""], ["field", "gnue_module"], ["const", moduleId]]
      if className:
--- 65,71 ----
    # Request a list of matching business objects
    # 
---------------------------------------------------------------------------
    def _requestData (self, moduleId, className=None):
!     # print "DEBUG: Class: requestData %s, %s" % (moduleId, className)
  
      cond = [["eq", ""], ["field", "gnue_module"], ["const", moduleId]]
      if className:
***************
*** 103,109 ****
        return self._cache [name]
  
      # since we had no match cached, ask for it
!     print "DEBUG: Class: REFETCH %s, %s" % (module.gnue_id, className)
      res = self._requestData (module.gnue_id, className)
  
      if len (res) == 1:
--- 103,109 ----
        return self._cache [name]
  
      # since we had no match cached, ask for it
!     # print "DEBUG: Class: REFETCH %s, %s" % (module.gnue_id, className)
      res = self._requestData (module.gnue_id, className)
  
      if len (res) == 1:
Index: gnue-appserver/src/classrep/Module.py
diff -c gnue-appserver/src/classrep/Module.py:1.4 
gnue-appserver/src/classrep/Module.py:1.5
*** gnue-appserver/src/classrep/Module.py:1.4   Tue May 27 10:30:57 2003
--- gnue-appserver/src/classrep/Module.py       Mon Aug 11 11:29:35 2003
***************
*** 19,25 ****
  # write to the Free Software Foundation, Inc., 59 Temple Place 
  # - Suite 330, Boston, MA 02111-1307, USA.
  #
! # $Id: Module.py,v 1.4 2003/05/27 14:30:57 jvetter Exp $
  
  
  from Base import *
--- 19,25 ----
  # write to the Free Software Foundation, Inc., 59 Temple Place 
  # - Suite 330, Boston, MA 02111-1307, USA.
  #
! # $Id: Module.py,v 1.5 2003/08/11 15:29:35 reinhard Exp $
  
  
  from Base import *
***************
*** 56,62 ****
    # Internal: Request modules from datasource (optional matching a name)
    # 
---------------------------------------------------------------------------
    def _requestData (self, name = None):
!     print "DEBUG: Module: requestData (%s)" % name
  
      cond = []
      if name:
--- 56,62 ----
    # Internal: Request modules from datasource (optional matching a name)
    # 
---------------------------------------------------------------------------
    def _requestData (self, name = None):
!     # print "DEBUG: Module: requestData (%s)" % name
  
      cond = []
      if name:
***************
*** 79,85 ****
        return self._cache [name]
  
      # since it isn't cached we've to ask for it
!     print "DEBUG: Module: REFETCH (%s)" % name
      list = self._requestData (name)
  
      # if we have an exact match extend the cache
--- 79,85 ----
        return self._cache [name]
  
      # since it isn't cached we've to ask for it
!     # print "DEBUG: Module: REFETCH (%s)" % name
      list = self._requestData (name)
  
      # if we have an exact match extend the cache
Index: gnue-appserver/src/classrep/Property.py
diff -c gnue-appserver/src/classrep/Property.py:1.2 
gnue-appserver/src/classrep/Property.py:1.3
*** gnue-appserver/src/classrep/Property.py:1.2 Tue May 27 10:30:57 2003
--- gnue-appserver/src/classrep/Property.py     Mon Aug 11 11:29:35 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.2 2003/05/27 14:30:57 jvetter 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.3 2003/08/11 15:29:35 reinhard Exp $
  
  from Base import *
  from Namespace import *
***************
*** 69,75 ****
        if prop.gnue_class == classId: 
        return []
  
!     print "DEBUG: Property: requestData %s, %s" % (classId, propertyName)
  
      cond = [["eq", ""], ["field", "gnue_class"], ["const", classId]]
  
--- 69,75 ----
        if prop.gnue_class == classId: 
        return []
  
!     # print "DEBUG: Property: requestData %s, %s" % (classId, propertyName)
  
      cond = [["eq", ""], ["field", "gnue_class"], ["const", classId]]
  
***************
*** 108,114 ****
        return self._cache [name]
  
      # since we had no match in the cache ask for it
!     print "DEBUG: Property: REFETCH: %s, %s" % (self.klass.fullName, name)
      res = self._requestData (self.klass.gnue_id, name)
  
      if len (res) == 1:
--- 108,114 ----
        return self._cache [name]
  
      # since we had no match in the cache ask for it
!     # print "DEBUG: Property: REFETCH: %s, %s" % (self.klass.fullName, name)
      res = self._requestData (self.klass.gnue_id, name)
  
      if len (res) == 1:




reply via email to

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