commit-gnue
[Top][All Lists]
Advanced

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

gnue-reports doc/technotes/00002.txt src/adapte...


From: Jason Cater
Subject: gnue-reports doc/technotes/00002.txt src/adapte...
Date: Wed, 26 Nov 2003 16:27:56 -0500

CVSROOT:        /cvsroot/gnue
Module name:    gnue-reports
Branch:         
Changes by:     Jason Cater <address@hidden>    03/11/26 16:27:56

Modified files:
        doc/technotes  : 00002.txt 
        src/adapters/filters/Universal/Base: ParserTypes.py 
        src/adapters/filters/Universal/Base/styles: StyleHandler.py 
        src/adapters/filters/Universal/etc: standard-styles.grs 
Added files:
        etc            : sample.report-filters.conf 

Log message:
        getting back up to speed on Universal formatter stuff; updating notes

CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/gnue/gnue-reports/doc/technotes/00002.txt.diff?tr1=1.3&tr2=1.4&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/gnue/gnue-reports/etc/sample.report-filters.conf?rev=1.1
http://savannah.gnu.org/cgi-bin/viewcvs/gnue/gnue-reports/src/adapters/filters/Universal/Base/ParserTypes.py.diff?tr1=1.3&tr2=1.4&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/gnue/gnue-reports/src/adapters/filters/Universal/Base/styles/StyleHandler.py.diff?tr1=1.4&tr2=1.5&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/gnue/gnue-reports/src/adapters/filters/Universal/etc/standard-styles.grs.diff?tr1=1.6&tr2=1.7&r1=text&r2=text

Patches:
Index: gnue-reports/doc/technotes/00002.txt
diff -c gnue-reports/doc/technotes/00002.txt:1.3 
gnue-reports/doc/technotes/00002.txt:1.4
*** gnue-reports/doc/technotes/00002.txt:1.3    Tue May 13 19:28:48 2003
--- gnue-reports/doc/technotes/00002.txt        Wed Nov 26 16:27:55 2003
***************
*** 13,59 ****
  Supported style attributes
  --------------------------
  
! font_family: <font>|serif|sans-serif|cursive|monospace[,[...]]
! font_style: normal|oblique|italics
! font_weight: normal|bold|100-900|light
! font_scale: 100%     # Horizontal scale... 80% would create tall, narrow text
! 
! text_size: 11pt
! text_underline: none|single|double
! text_underline_color: auto
! text_underline_size: 1pt
! text_overline: none|single|double
! text_overline_color: auto
! text_overline_size: 1pt
! text_strikeout: none|single|double
! text_strikeout_color: auto
! text_strikeout_size: 1pt
! text_case: normal|lower|upper|smallcaps
! text_color: color
! text_leading: auto   # Standard space between lines (defaults to font_size+3)
! text_tracking: auto|tight|loose|%  # Space between letters
! text_indent: .5in
! text_justification: left|right|center|justified
! 
! word_spacing = auto  # Space between words
! 
! line_spacing: single|double|1.5|% # based on text_leading
! 
! 
! background_color: color
! 
! margin_*: measurement
! padding_*: measurement
! 
! border_*color: color
! border_*size: measurement
! border_*:  none | dotted | dashed | solid | double | groove | ridge | inset | 
outset
             custom:?;?;?"
  
  
! *left_
! *right_
! *top_
! *bottom_
! *vert_
! *horiz_
--- 13,59 ----
  Supported style attributes
  --------------------------
  
! font-family: <font>|serif|sans-serif|cursive|monospace[,[...]]
! font-style: normal|oblique|italics
! font-weight: normal|bold|100-900|light
! font-scale: 100%     # Horizontal scale... 80% would create tall, narrow text
! 
! text-size: 11pt
! text-underline: none|single|double
! text-underline-color: auto
! text-underline-size: 1pt
! text-overline: none|single|double
! text-overline-color: auto
! text-overline-size: 1pt
! text-strikeout: none|single|double
! text-strikeout-color: auto
! text-strikeout-size: 1pt
! text-case: normal|lower|upper|smallcaps
! text-color: color
! text-leading: auto   # Standard space between lines (defaults to font-size+3)
! text-tracking: auto|tight|loose|%  # Space between letters
! text-indent: .5in
! text-justification: left|right|center|justified
! 
! word-spacing = auto  # Space between words
! 
! line-spacing: single|double|1.5|% # based on text-leading
! 
! 
! background-color: color
! 
! margin-*: measurement
! padding-*: measurement
! 
! border-*color: color
! border-*size: measurement
! border-*:  none | dotted | dashed | solid | double | groove | ridge | inset | 
outset
             custom:?;?;?"
  
  
! *left-
! *right-
! *top-
! *bottom-
! *vert-
! *horiz-
Index: gnue-reports/src/adapters/filters/Universal/Base/ParserTypes.py
diff -c gnue-reports/src/adapters/filters/Universal/Base/ParserTypes.py:1.3 
gnue-reports/src/adapters/filters/Universal/Base/ParserTypes.py:1.4
*** gnue-reports/src/adapters/filters/Universal/Base/ParserTypes.py:1.3 Tue Apr 
15 18:32:49 2003
--- gnue-reports/src/adapters/filters/Universal/Base/ParserTypes.py     Wed Nov 
26 16:27:55 2003
***************
*** 19,28 ****
  # Copyright 2002-2003 Free Software Foundation
  #
  # FILE:
! # TextUtils.py
  #
  # DESCRIPTION:
! # Report-specific Parser types
  #
  # NOTES:
  #
--- 19,28 ----
  # Copyright 2002-2003 Free Software Foundation
  #
  # FILE:
! # ParserTypes.py
  #
  # DESCRIPTION:
! # Universal Report-specific Parser types
  #
  # NOTES:
  #
Index: gnue-reports/src/adapters/filters/Universal/Base/styles/StyleHandler.py
diff -c 
gnue-reports/src/adapters/filters/Universal/Base/styles/StyleHandler.py:1.4 
gnue-reports/src/adapters/filters/Universal/Base/styles/StyleHandler.py:1.5
*** gnue-reports/src/adapters/filters/Universal/Base/styles/StyleHandler.py:1.4 
Tue May 13 14:58:25 2003
--- gnue-reports/src/adapters/filters/Universal/Base/styles/StyleHandler.py     
Wed Nov 26 16:27:56 2003
***************
*** 46,55 ****
  
  
  if __name__ == '__main__':
-   def _(msg): return msg
-   import __builtin__
-   __builtin__._ = _
  
  
    s = StyleHandler()
    
s.addDefinition('/home/jason/cvs/gnue/reports/src/adapters/filters/Universal/etc/standard-styles.grs')
--- 46,53 ----
  
  
  if __name__ == '__main__':
  
+   import gnue.common.apps
  
    s = StyleHandler()
    
s.addDefinition('/home/jason/cvs/gnue/reports/src/adapters/filters/Universal/etc/standard-styles.grs')
Index: gnue-reports/src/adapters/filters/Universal/etc/standard-styles.grs
diff -c gnue-reports/src/adapters/filters/Universal/etc/standard-styles.grs:1.6 
gnue-reports/src/adapters/filters/Universal/etc/standard-styles.grs:1.7
*** gnue-reports/src/adapters/filters/Universal/etc/standard-styles.grs:1.6     
Tue May 13 14:51:20 2003
--- gnue-reports/src/adapters/filters/Universal/etc/standard-styles.grs Wed Nov 
26 16:27:56 2003
***************
*** 6,59 ****
    <textstyle
        name="default"
        objects="*"
!       font_family="Helvetica,Arial,SanSerif"
!       font_style="normal"
!       font_weight="normal"
!       font_scale="1"
!       text_underline="none"
!       text_underline_color="black"
!       text_underline_size="auto"
!       text_overline="none"
!       text_overline_color="black"
!       text_overline_size="auto"
!       text_strikeout="none"
!       text_strikeout_color="black"
!       text_strikeout_size="auto"
!       text_case="normal"
!       text_color="black"
!       text_size="11pt"
!       text_leading="auto"
!       text_tracking="normal"
!       text_indent=".5in"
!       text_justification="left"
!       word_spacing="auto"
!       line_spacing="single"
!       background_color="transparent"
!       background_fill="solid"
        margin="1em"
!       margin_left="1em"
!       margin_right="1em"
!       margin_top="1em"
!       margin_bottom="1em"
        padding="0"
        border="none"
!       border_color="black"
!       border_size="1pt"
!       border_horiz_size=".5pt"
!       border_vert_size=".5pt"
    />
  
    <textstyle name="bold"
        objects="*"
!       font_weight="bold" />
  
    <textstyle name="italics"
        objects="*"
!       font_style="italics" />
  
    <textstyle name="default"
        objects="freeflow"
!       font_family="serif" />
  
   </styleset>
  
--- 6,59 ----
    <textstyle
        name="default"
        objects="*"
!       font-family="Helvetica,Arial,SanSerif"
!       font-style="normal"
!       font-weight="normal"
!       font-scale="1"
!       text-underline="none"
!       text-underline-color="black"
!       text-underline-size="auto"
!       text-overline="none"
!       text-overline-color="black"
!       text-overline-size="auto"
!       text-strikeout="none"
!       text-strikeout-color="black"
!       text-strikeout-size="auto"
!       text-case="normal"
!       text-color="black"
!       text-size="11pt"
!       text-leading="auto"
!       text-tracking="normal"
!       text-indent=".5in"
!       text-justification="left"
!       word-spacing="auto"
!       line-spacing="single"
!       background-color="transparent"
!       background-fill="solid"
        margin="1em"
!       margin-left="1em"
!       margin-right="1em"
!       margin-top="1em"
!       margin-bottom="1em"
        padding="0"
        border="none"
!       border-color="black"
!       border-size="1pt"
!       border-horiz-size=".5pt"
!       border-vert-size=".5pt"
    />
  
    <textstyle name="bold"
        objects="*"
!       font-weight="bold" />
  
    <textstyle name="italics"
        objects="*"
!       font-style="italics" />
  
    <textstyle name="default"
        objects="freeflow"
!       font-family="serif" />
  
   </styleset>
  




reply via email to

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