commit-gnue
[Top][All Lists]
Advanced

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

gnue/reports doc/report-notes.txt src/GRLayout.py


From: Jason Cater
Subject: gnue/reports doc/report-notes.txt src/GRLayout.py
Date: Tue, 17 Dec 2002 18:41:41 -0500

CVSROOT:        /cvsroot/gnue
Module name:    gnue
Changes by:     Jason Cater <address@hidden>    02/12/17 18:41:40

Modified files:
        reports/doc    : report-notes.txt 
        reports/src    : GRLayout.py 

Log message:
        * Misc convenience changes for Designer

CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/gnue/gnue/reports/doc/report-notes.txt.diff?tr1=1.2&tr2=1.3&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/gnue/gnue/reports/src/GRLayout.py.diff?tr1=1.46&tr2=1.47&r1=text&r2=text

Patches:
Index: gnue/reports/doc/report-notes.txt
diff -c gnue/reports/doc/report-notes.txt:1.2 
gnue/reports/doc/report-notes.txt:1.3
*** gnue/reports/doc/report-notes.txt:1.2       Mon Dec 16 19:06:10 2002
--- gnue/reports/doc/report-notes.txt   Tue Dec 17 18:41:40 2002
***************
*** 1,4 ****
! GNUe:Reports:Standard goals: 
  
   * Templating/Styles
   * Relational positioning
--- 1,4 ----
! GNUe:Reports:Standard goals:
  
   * Templating/Styles
   * Relational positioning
***************
*** 34,44 ****
  
    <columnar columns="2">
  
!   <image relativepos="groupbelow|groupright|marginleft|margintop"
           relativeto="<groupname>|<measurement>"
  
!   <group relativepos="groupbelow|groupright|marginleft|margintop"
!          relativeto="<groupname>|<measurement>"
           break="never|always|conditional"
           style="none|tabular|crosstab|chart"
           tabcolumns="2"
--- 34,44 ----
  
    <columnar columns="2">
  
!   <image relativepos="groupbelow|groupright|marginleft|margintop|absolute"
           relativeto="<groupname>|<measurement>"
  
!   <group relativeto="groupbelow|groupright|marginleft|margintop|absolute"
!          relativeref="<groupname>|<measurement>"
           break="never|always|conditional"
           style="none|tabular|crosstab|chart"
           tabcolumns="2"
***************
*** 91,93 ****
--- 91,94 ----
  
  
  
+ <group style="chart" substyle="barchart"
\ No newline at end of file
Index: gnue/reports/src/GRLayout.py
diff -c gnue/reports/src/GRLayout.py:1.46 gnue/reports/src/GRLayout.py:1.47
*** gnue/reports/src/GRLayout.py:1.46   Wed Nov 20 22:11:52 2002
--- gnue/reports/src/GRLayout.py        Tue Dec 17 18:41:40 2002
***************
*** 82,93 ****
        raise GRExceptions.NoLayoutDefined, \
          "The layout section does not contain any instructions. What do I do?"
  
!     self._xmlchildnamespace = self._findNamespace(self)
      self._parent._namespace = self._xmlchildnamespace
  
  
    # Find the xml namespace in use by any child passthru objects
!   def _findNamespace(self, object):
      for child in object._children:
        try:
          if child._xmlnamespace:
--- 82,94 ----
        raise GRExceptions.NoLayoutDefined, \
          "The layout section does not contain any instructions. What do I do?"
  
!     self._xmlchildnamespace = self._findNamespace()
      self._parent._namespace = self._xmlchildnamespace
  
  
    # Find the xml namespace in use by any child passthru objects
!   def _findNamespace(self, object=None):
!     if object==None: object = self
      for child in object._children:
        try:
          if child._xmlnamespace:



reply via email to

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