[Gnucash-changes] Make consistent/simple.

Joshua Sled jsled at cvs.gnucash.org
Wed Oct 12 20:24:47 EDT 2005


Log Message:
-----------
Make consistent/simple.

Tags:
----
gnucash-gnome2-dev

Modified Files:
--------------
    gnucash/src/report/report-system:
        html-scatter.scm
        html-piechart.scm
        html-barchart.scm

Revision Data
-------------
Index: html-piechart.scm
===================================================================
RCS file: /home/cvs/cvsroot/gnucash/src/report/report-system/html-piechart.scm,v
retrieving revision 1.1
retrieving revision 1.1.6.1
diff -Lsrc/report/report-system/html-piechart.scm -Lsrc/report/report-system/html-piechart.scm -u -r1.1 -r1.1.6.1
--- src/report/report-system/html-piechart.scm
+++ src/report/report-system/html-piechart.scm
@@ -23,11 +23,19 @@
 
 (define <html-piechart>
   (make-record-type "<html-piechart>"
-                    '(width height title subtitle data colors labels
-                            button-1-slice-urls button-2-slice-urls 
-                            button-3-slice-urls
-                            button-1-legend-urls button-2-legend-urls 
-                            button-3-legend-urls)))
+                    '(width
+                      height
+                      title
+                      subtitle
+                      data
+                      colors
+                      labels
+                      button-1-slice-urls
+                      button-2-slice-urls 
+                      button-3-slice-urls
+                      button-1-legend-urls
+                      button-2-legend-urls 
+                      button-3-legend-urls)))
 
 
 (define gnc:html-piechart? 
Index: html-barchart.scm
===================================================================
RCS file: /home/cvs/cvsroot/gnucash/src/report/report-system/html-barchart.scm,v
retrieving revision 1.1
retrieving revision 1.1.6.1
diff -Lsrc/report/report-system/html-barchart.scm -Lsrc/report/report-system/html-barchart.scm -u -r1.1 -r1.1.6.1
--- src/report/report-system/html-barchart.scm
+++ src/report/report-system/html-barchart.scm
@@ -21,7 +21,6 @@
 ;; Boston, MA  02111-1307,  USA       gnu at gnu.org
 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 
-
 (define <html-barchart>
   (make-record-type "<html-barchart>"
                     '(width 
@@ -37,9 +36,11 @@
                       row-labels-rotated?
 		      stacked?
                       data
-		      button-1-bar-urls button-2-bar-urls 
+		      button-1-bar-urls
+                      button-2-bar-urls 
 		      button-3-bar-urls
-		      button-1-legend-urls button-2-legend-urls 
+		      button-1-legend-urls
+                      button-2-legend-urls 
 		      button-3-legend-urls)))
 
 (define gnc:html-barchart? 
Index: html-scatter.scm
===================================================================
RCS file: /home/cvs/cvsroot/gnucash/src/report/report-system/html-scatter.scm,v
retrieving revision 1.1
retrieving revision 1.1.6.1
diff -Lsrc/report/report-system/html-scatter.scm -Lsrc/report/report-system/html-scatter.scm -u -r1.1 -r1.1.6.1
--- src/report/report-system/html-scatter.scm
+++ src/report/report-system/html-scatter.scm
@@ -26,24 +26,27 @@
 
 (define <html-scatter>
   (make-record-type "<html-scatter>"
-                    '(width height title subtitle 
-			    x-axis-label y-axis-label
-
-			    ;; a list of x-y-value lists.
-			    data 
-			    ;; Valid marker names are: 
-			    ;; "none", "circle", "diamond", "cross", "x",
-			    ;; "square", "asterisk", "filled circle",
-			    ;; "filled square", "filled diamond"
-			    ;; The full list can be found in
-			    ;; guppi3/src/libguppiplot/guppi-marker.c in
-			    ;; guppi_marker_info_array[]
-			    marker
-			    ;; The color of the marker. Should be a rgba
-			    ;; value as a hex string, as returned by
-			    ;; gnc:color-option->hex-string
-			    markercolor 
-			    )))
+                    '(width
+                      height
+                      title
+                      subtitle 
+                      x-axis-label
+                      y-axis-label
+                      ;; a list of x-y-value lists.
+                      data 
+                      ;; Valid marker names are: 
+                      ;; "none", "circle", "diamond", "cross", "x",
+                      ;; "square", "asterisk", "filled circle",
+                      ;; "filled square", "filled diamond"
+                      ;; The full list can be found in
+                      ;; guppi3/src/libguppiplot/guppi-marker.c in
+                      ;; guppi_marker_info_array[]
+                      marker
+                      ;; The color of the marker. Should be a rgba
+                      ;; value as a hex string, as returned by
+                      ;; gnc:color-option->hex-string
+                      markercolor 
+                      )))
 
 (define gnc:html-scatter? 
   (record-predicate <html-scatter>))


More information about the gnucash-changes mailing list