gzz-commits
[Top][All Lists]
Advanced

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

[Gzz-commits] gzz ./TODO test/testutil.py test/gzz/impl/mirro...


From: Benja Fallenstein
Subject: [Gzz-commits] gzz ./TODO test/testutil.py test/gzz/impl/mirro...
Date: Wed, 09 Oct 2002 04:46:04 -0400

CVSROOT:        /cvsroot/gzz
Module name:    gzz
Changes by:     Benja Fallenstein <address@hidden>      02/10/09 04:46:04

Modified files:
        .              : TODO 
        test           : testutil.py 
        test/gzz/impl/mirror: mirror.test 

Log message:
        more info printed out

CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/gzz/gzz/TODO.diff?tr1=1.259&tr2=1.260&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/gzz/gzz/test/testutil.py.diff?tr1=1.15&tr2=1.16&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/gzz/gzz/test/gzz/impl/mirror/mirror.test.diff?tr1=1.1&tr2=1.2&r1=text&r2=text

Patches:
Index: gzz/TODO
diff -c gzz/TODO:1.259 gzz/TODO:1.260
*** gzz/TODO:1.259      Wed Oct  9 02:50:26 2002
--- gzz/TODO    Wed Oct  9 04:46:04 2002
***************
*** 91,101 ****
            - textured, colored frames
            - directory into global map?
            - speedups 
!       - help Benja fixing AWT client [deadline: 7.10]
              - Fix connections: currently from ul corner to ul corner
                of cells because of the way coordsys work now
                - needs defining, won't make it tonight unless 
                  can talk with Benja
        - nadir as a new coordinate system type!
          - overall document about the goals and visions for the project
        - MPEG animation-making code
--- 91,102 ----
            - textured, colored frames
            - directory into global map?
            - speedups 
!       - help Benja fixing AWT client [deadline: 7.10!]
              - Fix connections: currently from ul corner to ul corner
                of cells because of the way coordsys work now
                - needs defining, won't make it tonight unless 
                  can talk with Benja
+             - Clipping
        - nadir as a new coordinate system type!
          - overall document about the goals and visions for the project
        - MPEG animation-making code
***************
*** 132,142 ****
        - docxx new additions to gfx/
        - clean GzzGL-jni, doc GL.java
      benja:
-         - Fix AWT client [deadline: 7.10] [mostly done]
-             - Clipping
        - ZZ vanishingview cell size for pagespans and linebroken
          paragraphs, as well as libpaper backgrounds
          - show pagespans in client better
          + the containment mechanism
              + Ted's bindings for it
      anybody:
--- 133,142 ----
        - docxx new additions to gfx/
        - clean GzzGL-jni, doc GL.java
      benja:
        - ZZ vanishingview cell size for pagespans and linebroken
          paragraphs, as well as libpaper backgrounds
          - show pagespans in client better
+         - hunt the link saving bug
          + the containment mechanism
              + Ted's bindings for it
      anybody:
Index: gzz/test/gzz/impl/mirror/mirror.test
diff -c gzz/test/gzz/impl/mirror/mirror.test:1.1 
gzz/test/gzz/impl/mirror/mirror.test:1.2
*** gzz/test/gzz/impl/mirror/mirror.test:1.1    Tue Sep  3 06:14:11 2002
--- gzz/test/gzz/impl/mirror/mirror.test        Wed Oct  9 04:46:04 2002
***************
*** 10,23 ****
  spacemaster = gzz.impl.ModularDeltaSpace(*tools.deltaspaceArgList())
  home = spacemaster.getHomeCell()
  home.setText("Foo")
! d1 = spacemaster.getDim(home)
! nc = home.N(d1)
  nc.setText("Bar")
  
  spacemirror1 = gzz.impl.ModularDeltaSpace(*tools.deltaspaceArgList())
  spacemirror2 = gzz.impl.ModularDeltaSpace(*tools.deltaspaceArgList())
  
  master = mirror.MasterImpl(spacemaster)
  
  def testSimple():
      home = spacemirror1.getHomeCell()
--- 10,31 ----
  spacemaster = gzz.impl.ModularDeltaSpace(*tools.deltaspaceArgList())
  home = spacemaster.getHomeCell()
  home.setText("Foo")
! d_1_master = spacemaster.getDim(gzz.zzutil.Ids.d_1)
! nc = home.N(d_1_master)
  nc.setText("Bar")
  
  spacemirror1 = gzz.impl.ModularDeltaSpace(*tools.deltaspaceArgList())
  spacemirror2 = gzz.impl.ModularDeltaSpace(*tools.deltaspaceArgList())
  
+ d_1_mirror1 = spacemirror1.getDim(gzz.zzutil.Ids.d_1)
+ d_1_mirror2 = spacemirror2.getDim(gzz.zzutil.Ids.d_1)
+ 
  master = mirror.MasterImpl(spacemaster)
+ 
+ def testGetChanges():
+     tap = master.getTap()
+     chg = tap.getChanges()
+     print chg
  
  def testSimple():
      home = spacemirror1.getHomeCell()
Index: gzz/test/testutil.py
diff -c gzz/test/testutil.py:1.15 gzz/test/testutil.py:1.16
*** gzz/test/testutil.py:1.15   Wed Oct  9 04:18:36 2002
--- gzz/test/testutil.py        Wed Oct  9 04:46:04 2002
***************
*** 103,109 ****
      testcode = '''
          def %s(self):
              %s
!             self.module.%s()
      '''
  
      testcodes = [testcode % (t, docstring(tests[t]), t) for t in testnames]
--- 103,113 ----
      testcode = '''
          def %s(self):
              %s
!             try:
!                 self.module.%s()
!             except java.lang.Throwable, t:
!                 t.printStackTrace()
!                 raise t
      '''
  
      testcodes = [testcode % (t, docstring(tests[t]), t) for t in testnames]




reply via email to

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