Table of Contents
Surprisingly, we have already covered a great deal of the information about spreadsheets. Spreadsheets share a great deal of their markup with tables that you find in text documents. This shouldn’t come as a surprise—a spreadsheet is just a two-dimensional table. It can have many blank rows and columns and can do calculations on the cell entries, but a spreadsheet is still just a table at heart.
However, there are things that make a spreadsheet, well, spreadsheetish. As is usual with OpenOffice.org, some of these are in the styles.xml; most in content.xml.
The styles.xml file stores information from the sheet tab of the Format Page dialog, shown in Figure 5.1, “Spreadsheet Page Options”. Specifically, this information is in the <style:properties> element that is inside the first <style:page-master> element within the <office:automatic-styles>.
Example 5.1, “Page Options” shows this markup.
Example 5.1. Page Options
<office:automatic-styles>
<style:page-master style:name="pm1">
<style:properties fo:background-color="transparent"
style:print-page-order="ttb" style:first-page-number="3"
style:scale-to-pages="1"
style:writing-mode="lr-tb"
style:print="formulas grid headers zero-values">
<style:background-image/>
</style:properties>
<!-- etc. -->
</style:page-master>
<!-- more styles -->
</office:automatic-styles>
The <office:automatic-styles> element contains
Each differently styled column in the spreadsheet gets a <style:style> whose style:family is table-column. Its child <style:properties> element specifies the width of the column (style:column-width) in the form of a length, such as 1.1inch.[7]
This next may be too much information. OpenOffice.org also adds a fo:break-before attribute with an value of auto; you may set it to page, but it does not cause a page break in OpenOffice.org 1.1.0.
The column styles are followed by <style:style> elements whose style:family is table-row. Their child <style:properties> element specifies the style:row-height. If you have chosen “optimal height” then this element will also set style:use-optimatl-row-height="true".
A <style:style> element with a style:family="table" merely serves to connect a table with a master page, and determine whether the sheet is hidden or not. Example 5.2, “Style Information for a Sheet” shows just such an element.
The other major style information deals with formatting numbers so that they show up as percentages, scientific notation, etc. In OpenOffice.org, you do this with the dialog shown in Figure 5.2, “Number Styles Dialog”. This produces XML in both the styles.xml and content.xml files. Styles that come from the existing menu go into content.xml; custom styles go into styles.xml. Will someone from OpenOffice.org please confirm this? If you are creating an OpenOffice.org document from scratch, you can just put all the information into content.xml, and OpenOffice.org will handle it just fine.
A number style must convey two pieces of information: what kind of a number it is (number, currency, percent, date, etc.); and how the number is to be displayed. This is mirrored in the XML as a <number:entity-style> element, where entity can be number, currency, percent, date, etc.
This element has a required style:name attribute that gives the style a unique identifier, and a style:family attribute with a value of data-style. The contents of this element will tell how to display the number, percent, currency, date, etc.
Let’s start with the “pure numeric” styles: numbers, percents, scientific notation, and fractions.
A plain number is contained in a <number:number-style> element with style:name and style:family attributes). Contained within this element is the description of how to display the number. In this case, we need only a simple <number:number> element that has these attributes:
Example 5.3, “Number Style for format #,##0.00” shows a number style for displaying two places to the right of the decimal, one leading zero, and a grouping separator.
Example 5.3. Number Style for format #,##0.00
<number:number-style style:name="N2" style:family="data-style">
<number:number number:decimal-places="2" number:min-integer-digits="1"
number:grouping="true"/>
</number:number-style>The decimal symbol and grouping symbol are not specified in the style; they are set in the global options for OpenOffice.org.
If you want negative numbers to be red, then things become radically different. Rather than having one style, OpenOffice.org requires two styles, with the negative being the default and a “conditional style” for positive values. Here is the XML for a number with two digits to the right of the decimal, one leading zero, a thousands separator, and negative numbers in red:
Example 5.4. Number Style for format -#,##0.00 with Negative Values in Red
<number:number-style style:name="N112P0" style:family="data-style"
style:volatile="true">
<number:number number:decimal-places="2"
number:min-integer-digits="1" number:grouping="true"/>
</number:number-style>
<number:number-style style:name="N112" style:family="data-style">
<style:properties fo:color="#ff0000"/>
<number:text>-</number:text>
<number:number number:decimal-places="2"
number:min-integer-digits="1" number:grouping="true"/>
<style:map style:condition="value()>=0"
style:apply-style-name="N112P0"/>
</number:number-style>
Scientific notation is a variant on plain numbers; the outer <number:number-style> contains a <number:scientific-number> element with these attributes: number:decimal-places and number:min-integer-digits for the mantissa, and number:min-exponent-digits for the exponent part. You don’t need to put the E in the specification. Example 5.5, “Scientific Notation for Format 0.00E+00” shows the style for scientific notation with two digits to the right of the decimal point, at least one to the left, and at least two digits in the exponent.
Fractions are also variants of plain numbers. Their <number:number-style> element contains a <number:fraction> element that has these attributes: number:min-integer-digits (number of digits in the whole number part), number:min-numerator-digits, and number:min-denominator-digits. Example 5.6, “Fraction Style for Format # ??/??” shows a style for a fraction with an optional whole number part and at least two digits in the numerator and denominator.
A percentage is represented in much the same way as a plain number; the only differences are that:
Example 5.7, “Percent Style for Format #,##0.00%” shows a percentage with two digits to the right of the decimal, at least one to the left, and a grouping symbol.
Currency styles are similar to number styles. Specifying a currency always creates two styles: one for negative values, and one for positive values. Example 5.8, “Currency in Format -$#,##0.00” shows the XML for a currency format of US Dollars with two digits after the decimal point, a minimum of one digit before the decimal, and a thousands separator.
Example 5.8. Currency in Format -$#,##0.00
<number:currency-style style:name="N102P0"style:family="data-style" style:volatile="true"> <number:currency-symbol
number:language="en" number:country="US">$</number:currency-symbol> <number:number number:decimal-places="2"
number:min-integer-digits="1" number:grouping="true"/> </number:currency-style> <number:currency-style style:name="N102" style:family="data-style"> <number:text>-</number:text>
<number:currency-symbol number:language="en" number:country="US">$</number:currency-symbol> <number:number number:decimal-places="2" number:min-integer-digits="1" number:grouping="true"/> <style:map style:condition="value()>=0" style:apply-style-name="N102P0"/>
</number:currency-style>
| The formatting for positive values appears first, contained in a <number:currency-style> element. |
| The <number:currency-symbol> ’s content is the dollar sign. The number:language and number:country allow a program to distinguish the US dollar from the New Zealand dollar or Mexican new peso symbol, which look the same but have different countries and/or languages. |
| The number portion of the display uses the same <number:number> element that we have already described[8]. |
| For negative values, the minus sign precedes the currency symbol. |
| As in Example 5.4, “Number Style for format -#,##0.00 with Negative Values in Red”, a <style:map> is used to choose whether to use the negative number format or the positive number format. |
The appearance of <number:text> elements mirrors the order in which the text appears. Example 5.9, “Currency Format for Greek Drachma” shows the negative number portion of the XML for the Greek drachma. In this format, the value is shown in red, the minus sign appears first, then the number, then a blank and the letters “Δρχ.”
Example 5.9. Currency Format for Greek Drachma
<number:currency-style style:name="N111" style:family="data-style">
<style:properties fo:color="#ff0000"/>
<number:text>-</number:text>
<number:number number:decimal-places="2"
number:min-integer-digits="1" number:grouping="true"/>
<number:text> </number:text>
<number:currency-symbol number:language="el"
number:country="GR">Δρχ</number:currency-symbol>
<style:map style:condition="value()>=0"
style:apply-style-name="N111P0"/>
</number:currency-style>
OpenOffice.org provides a large number of different formats for dates and times. Rather than explain each one in detail, it’s easier to simply compose the style you want out of parts.
For dates, the enclosing element is a <number:date-style> element, with the usual style:name and style:family attributes. Within this element are these elements, with their significant attributes:
Example 5.10, “Date Styles” shows three date styles. The first will display the fourth day of the seventh month of 2003 as Friday, July 4, 2003; the second will display it as 07/04/03, and the third as Q3 2003.
Example 5.10. Date Styles
<number:date-style style:name="N79"
style:family="data-style" number:automatic-order="true">
<number:day-of-week number:style="long"/>
<number:text>, </number:text>
<number:month number:style="long"
number:textual="true"/>
<number:text> </number:text>
<number:day/>
<number:text>, </number:text>
<number:year number:style="long"/>
</number:date-style>
<number:date-style style:name="N37" style:family="data-style">
<number:month number:style="long"/>
<number:text>/</number:text>
<number:day number:style="long"/>
<number:text>/</number:text>
<number:year/>
</number:date-style>
<number:date-style style:name="N20106" style:family="data-style">
<number:quarter/>
<number:text> </number:text>
<number:year number:style="long"/>
</number:date-style>Time values are represented by the <number:time-style> element. Its sub-elements are:
Example 5.11, “Time Style” shows the style required to display a time in the format 09:02:34 am
Example 5.11. Time Style
<number:time-style style:name="N43" style:family="data-style">
<number:hours number:style="long"/>
<number:text>:</number:text>
<number:minutes number:style="long"/>
<number:text>:</number:text>
<number:seconds number:style="long"/>
<number:text> </number:text>
<number:am-pm/>
</number:time-style>A <number:date-style> element may also specify hours, minutes, and seconds.
OpenOffice.org gets its cues for displaying numbers from the current language setting. You may set the display of a number to a specific language and country by adding the number:language and number:country attributes to a <number:entity-style> element. Thus, to make a date display in Korean format, you would do this:
<number:date-style style:name="N49" style:family="data-style"
numbr:language="ko" number:country="KR">
Finally, each different style of cell has its own <style:style> element. If the cell contains text, it will contain a <style:properties> element that describes its border, background color, font, alignment, etc. If it contains a number, then the style contains a reference to one of the previously established number styles. Example 5.12, “Style for a Numeric Cell” shows the XML for the cell containing the time style shown in Example 5.11, “Time Style”.
Let us now turn our attention to the table content, which is contained in content.xml, inside the <office:body> element. Each sheet is stored as a separate <table:table>. Its table:name attribute is the name that will appear on the spreadsheet tab, and the table:style-name attribute refers to a table style as described in the section called “Styles for the Sheet as a Whole”.
The <table:table> element contains a series of <table:table-column> elements to describe each of the columns in the table. These each have a table:style-name attribute whose value refers to a <style:style> with that name. If several consecutive columns all have the same style, then a table:number-columns-repeated attribute tells how many times it is repeated. A hidden column will have its table:visibility attribute set to collapse.
Example 5.13, “Table Columns in a Spreadsheet” shows the XML for the columns of a table with eight columns. The second and last columns have the same style, and there are three identical columns before the last one.
Example 5.13. Table Columns in a Spreadsheet
<table:table-column table:style-name="co1"
table:default-cell-style-name="ce1" />
<table:table-column table:style-name="co2"
table:default-cell-style-name="Default" />
<table:table-column table:style-name="co3"
table:default-cell-style-name="ce2" />
<table:table-column table:style-name="co4"
table:number-columns-repeated="3"
table:default-cell-style-name="Default" />
<table:table-column table:style-name="co2"
table:default-cell-style-name="Default" />
The column specifications are followed by the <table:table-row> elements. These also have a table:style-name attribute referring to a <style:style> with a style:family="table-row". If the row is duplicated, then the table:number-rows-repeated gives the repetition count. A hidden row has table:visibility set to collapse.
Within the table row are the <table:table-cell> entries. If the cell contains a string, then the cell will contain a child <text:p> element that contains the text, as in the following example:
<table:table-cell>
<text:p>Federico Gutierrez</text:p>
</table:table-cell>Cells that contain numbers also contain a <text:p> that shows the display form of the value. The actual value is stored in the <table:table-cell> element with two attributes: table:value-type and table:value. These are related as described in Table 5.1, “table:value-type and table:value”.
Table 5.1. table:value-type and table:value
| table:value-type | table:value |
|---|---|
| float | Used for pure numbers, fractions, and scientific notation. The value is stored without a decimal point if the value is an integer; otherwise . is used as the decimal point. |
| percentage | A display value of 45.6% is stored as 0.456. |
| currency | The value is stored using . as a decimal point, with no currency symbol. There is an additional table:currency attribute that contains an abbreviation such as USD or GRD. |
| date | The value is stored in a table:date-value attribute rather than a table:value. If it contains a simple date, it is stored in the form yyyy-mm-dd; if there is both a day and a time, it is stored in the form yyyy-mm-ddThh:mm:ss. |
| time | The value is stored in a table:time-value attribute rather than a table:value. The value is stored in the form PThhHmmMss,ffffS (where ffff is the fractional part of a second). |
The content of the <text:p> element is provided as a convenience for programs that wish to harvest the displayed values. OpenOffice.org will display cell contents based upon the table:value and table:value-type only, ignoring the content of the cell’s <text:p>.
Example 5.14, “Table Cell Values” shows the XML for each of these types of data, with the default language set to Dutch (Netherlands). The table:style-name attributes have been removed to improve readability.
Example 5.14. Table Cell Values
<table:table-cell table:value-type="float" table:value="11.01">
<text:p>11,01</text:p>
</table:table-cell>
<table:table-cell table:value-type="percentage" table:value="0.456">
<text:p>45,60%</text:p>
</table:table-cell>
<table:table-cell table:value-type="currency" table:value="35.22"
table:currency="EUR">
<text:p>€ 35,22</text:p>
</table:table-cell>
<table:table-cell table:value-type="date" table:date-value="2003-03-19">
<text:p>woensdag 19 maart 2003</text:p>
</table:cell>
<table:table-cell table:value-type="time" table:time-value="PT18H03M22S">
<text:p>18:03:22</text:p>
</table:table-cell>
Formula cells contain a table:formula attribute. Within the table:formula attribute, references to individual cells or cell ranges are enclosed in square brackets. Relative cell names are expressed in the form sheetname.cellname. Thus, a reference to cell A3 in the current spreadsheet will appear as [.A3], and a reference to cell G17 in a spreadsheet named Sheet2 will appear as [Sheet2.G17]. The range of cells from G3 to K7 in the current spreadsheet appear as [.G3:.K7].
Absolute cell names simply have the preceding $ on them, much as you would enter them in OpenOffice.org. Thus, an absolute reference to cell C4 in the current spreadsheet would be written as [.$C$4].
Depending upon the return type of the formula, the table cell will contain appropriate table:value and table:value-type attributes. Example 5.15, “Return Types from Formulas” shows the result of three formulas; the first returns a simple number, the second returns a string showing roman numerals, and the third produces a time value from the contents of three cells.
Example 5.15. Return Types from Formulas
<table:table-cell table:formula="=SUM([.A2:.B3])"
table:value-type="float" table:value="107">
<text:p>107</text:p>
</table:table-cell>
<table:table-cell table:formula="=ROMAN([.B4])"
table:string-value="CVII">
<text:p>CVII</text:p>
</table:table-cell>
<table:table-cell table:formula="=TIME([.E1];[.E2];[.E3])"
table:value-type="time" table:time-value="PT10H05M48S">
<text:p>10:05:48</text:p>
</table:table-cell>
The OpenOffice.org application depends only upon the formula to generate its display. A program could generate a spreadsheet that would display identically to the preceding example when opened in OpenOffice.org, using only the information shown in Example 5.16, “Minimal Formulas”.
Example 5.16. Minimal Formulas
<table:table-cell table:formula="=SUM([.A2:.B3])"/> <table:table-cell table:formula="=ROMAN([.B4])"/> <table:table-cell table:formula="=TIME([.E1];[.E2];[.E3])"/>
If you are using an array formula which would be represented in OpenOffice.org within curly braces, such as {=B6:C6*B7:C7}, you must specify the number of rows and columns that the result will occupy. The preceding formula is marked up as follows:
<table:table-cell
table:number-matrix-columns-spanned="2"
table:number-matrix-rows-spanned="1"
table:formula="=[.B6:.C6]*[.B7:.C7]"
table:value-type="float" table:value="50">
<text:p>50</text:p>
</table:table-cell>
Merging cells in spreadsheets is far easier than merging them in text tables. The first cell in the merged area will have table:number-rows-spanned and table:number-columns-spanned attributes. Their values give the number of rows and columns that have been merged. Any of the cells which have been covered by the merged cell will no longer be ordinary <table:cell> elements; they will become <table:covered-table-cell> elements, but the rest of their attributes and contents will remain unchanged.
We will use this information about spreadsheets to write a Python program do a currency conversion. All cells that are stored in one currency (such as U.S. dollars) will be converted to the equivalent values in a different currency (such as Korean Won) and saved to a new OpenOffice.org spreadsheet.
To find and change the appropriate <number:currency-style> elements, the program must know the values of number:country and number:language for the source and destination currencies. To find and change the appropriate <table:table-cell> elements, the program must know the three-letter abbreviation found in table:currency for the source and destination currencies.
Finally, we will need to provide format strings for positive and negative values in the destination currency, the currency symbol for the destination currency, and a conversion factor for multiplying the value of the numbers in the spreadsheet. We will store all this information in an ad-hoc XML file of the form shown in Example 5.17, “Money Conversion Parameters”, which converts U.S. dollars to Korean Won.
Example 5.17. Money Conversion Parameters
<convert>
<from language="en" country="US" abbrev="USD" />
<to language="kr" country="KR" abbrev="KRW"
symbol="₩"
positiveFormat="$#,##0.00"
negativeFormat="-$#,##0.00"
factor="1175.19"/>
</convert>The symbols in the format string have these meanings:
All the other characters in the format string are taken as text. This allows you to place blanks and other characters in a format.
Although Python requires functions to be defined before they are used, we are doing a top-down explanation of this program, so we will present functions in conceptual order rather than file order. Here’s the main program, which looks for three arguments on the command line: the filename of the OpenOffice.org document, the filename for the resulting document, and the filename of the parameter XML file.
import xml.dom import xml.dom.ext import xml.dom.minidom import xml.parsers.expat import sys import ooo_number from zipfile import * from StringIO import * # Open an existing OpenOffice.org file # inFile = ZipFile( sys.argv[1] ) # ...and a brand new output file # outFile = ZipFile( sys.argv[2], "w", ZIP_DEFLATED ); getParameters( sys.argv[3] ) # # modify all appropriate currency styles # fixCurrency( "styles.xml" ) fixCurrency( "content.xml" ) inFile.close outFile.close
The import statements give us access to various Python libraries. ooo_number is a module that we have written to convert format strings to XML document fragments.
Here is the code that will open the parameter file and read the data into global variables.
def getParameters( filename ):
global oldLanguage, oldCountry, oldAbbrev
global language, country, abbreviation, currencySymbol
global positiveFormatString, negativeFormatString, factor
paramFile = open( filename, "r" )
document = xml.dom.minidom.parse( paramFile )
node = document.getElementsByTagName( "from" )[0]
oldLanguage = node.getAttribute( "language" )
oldCountry = node.getAttribute( "country" )
oldAbbrev = node.getAttribute( "abbrev" )
node = document.getElementsByTagName( "to" )[0]
language = node.getAttribute( "language" )
country = node.getAttribute( "country" )
abbreviation = node.getAttribute( "abbrev" )
currencySymbol = node.getAttribute( "symbol" )
positiveFormatString = node.getAttribute( "positiveFormat" )
negativeFormatString = node.getAttribute( "negativeFormat" )
factor = float( node.getAttribute("factor") )
paramFile.close()
Take a deep breath and hold on tight; this is the largest function in the program.
def fixCurrency( filename ):
#
# Read the styles.xml file as a string file
# and create a disk file for output
#
dataSource = StringIO (inFile.read( filename ))
tempFileName = "/tmp/workfile"
dataSink = open(tempFileName, "w")
#
# Parse the document
#
document = xml.dom.minidom.parse( dataSource )
#
# Create document fragments from the format strings
#
posXML = ooo_number.OOoNumber( document, positiveFormatString,
language, country, currencySymbol )
posXML.createCurrencyStyle( )
negXML = ooo_number.OOoNumber( document, negativeFormatString,
language, country, currencySymbol )
negXML.createCurrencyStyle( )
#
# Fix number style elements
#
currencyElements = document.getElementsByTagName("number:currency-symbol")
for element in currencyElements:
if (element.getAttribute( "number:language" ) == oldLanguage and
element.getAttribute( "number:country" ) == oldCountry):
element.setAttribute( "number:language", language )
element.setAttribute( "number:country", country )
parent = element.parentNode
children = parent.childNodes
i = len(children)-1
while (i >= 0):
if (children[i].nodeName == "number:number" or
children[i].nodeName == "number:text" or
children[i].nodeName == "number:currency-symbol" or
children[i].nodeType == xml.dom.Node.TEXT_NODE):
parent.removeChild( children[i] )
i = i - 1
# select the appropriate number format markup
if ((parent.getAttribute("style:name"))[-2:] == "P0"):
fragment = posXML.getFragment()
else:
fragment = negXML.getFragment()
#
# and insert it into the <number:currency-style> element
for child in fragment.childNodes:
parent.appendChild( child.cloneNode(True) )
#
# Fix table cells (which only exist in content.xml)
#
rowElements = document.getElementsByTagName("table:table-row")
for row in rowElements:
cell = getChildElement( row, "table:table-cell" )
while (cell != None):
if (cell.getAttribute("table:currency") == oldAbbrev ):
# change the currency abbreviation
cell.setAttribute("table:currency", abbreviation )
# and the number in the cell, if there is one
valueStr = cell.getAttribute("table:value")
if (valueStr != ""):
result = float( valueStr ) * factor
cell.setAttribute("table:value", '%f' % result)
# remove any children of this cell
children = cell.childNodes
i = len(children)-1
while (i >= 0):
cell.removeChild( children[i] )
i = i - 1
# move to the next cell in the row
cell = getSiblingElement( cell, "table:table-cell" )
#
# Serialize the document tree to the output file
xml.dom.ext.Print( document, dataSink )
dataSink.close();
#
# Add the temporary file to the new .zip file, giving it
# the same name as the input file.
#
outFile.write( tempFileName, filename )
These are the utility functions that we mentioned in the preceding section. They search for the first child or next sibling of a node that has the desired element name, while avoiding any extraneous text nodes.
def getChildElement( node, name ):
node = node.firstChild;
while (node != None):
if (node.nodeType != xml.dom.Node.ELEMENT_NODE or
node.nodeName != name):
node = node.nextSibling
else:
break
return node
def getSiblingElement( node, name ):
node = node.nextSibling;
while (node != None):
if (node.nodeType != xml.dom.Node.ELEMENT_NODE or
node.nodeName != name):
node = node.nextSibling
else:
break
return node
Finally, the code for parsing the a format string to produce an XML document fragment.
I put this into a module, even though it’s not something that would be useful for any other program. I did it this way because I didn’t know of any other way to do an “include.” Hey, this is my first Python program of any size greater than “Hello, World!”
import xml.dom
import xml.dom.ext
import xml.dom.minidom
import re
class OOoNumber:
def __init__(self, document, formatString, language, country,
currencySymbol ):
self.thousands = False; # thousands separator?
self.nDecimals = 0; # number of decimal places
self.minIntegerDigits = 0; # min. integer digits
self.textStr = "" # text string being built
self.fragment = None # fragment being built
self.document = document # copy parameters to class attributes
self.language = language
self.country = country
self.currencySymbol = currencySymbol
self.formatString = formatString
def endStr( self ):
if (self.textStr != ""):
textElement = self.document.createElement( "number:text" )
textNode = self.document.createTextNode( self.textStr )
textElement.appendChild( textNode )
self.fragment.appendChild( textElement )
self.textStr = ""
def addCurrency( self ):
self.endStr()
node = self.fragment.appendChild(
self.document.createElement( "number:currency-symbol" ) )
node.setAttribute( "number:language", self.language )
node.setAttribute( "number:country", self.country )
node.appendChild( self.document.createTextNode( self.currencySymbol ) )
def addNumber( self ):
node = self.fragment.appendChild(
self.document.createElement("number:number") )
node.setAttribute( "number:min-integer-digits",
"%d" % self.minIntegerDigits )
if (self.nDecimals > 0):
node.setAttribute( "number:decimal-places",
"%d" % self.nDecimals )
if (self.thousands):
node.setAttribute( "number:grouping", "true" )
def createCurrencyStyle ( self ):
"""Scan a format string, where:
$ indicates the currency symbol
# indicates an optional digit
0 indicates a required digit
, indicates the thousands separator (no matter your locale)
. indicates the decimal point (no matter your locale)
Creates a document fragment with appropriate OpenOffice.org
markup.
"""
self.fragment = self.document.createElement("number:fragment")
hasDecimal = False
numchars = re.compile( "[#,0.]" )
i = 0
while (i < len(self.formatString)):
char = self.formatString[i]
if (char == "$"):
self.addCurrency( )
elif (re.search( numchars, char )):
self.endStr( )
while (re.search( numchars, char )):
if (char == ","):
self.thousands = True
elif (char == "0"):
if (hasDecimal):
self.nDecimals = self.nDecimals + 1
else:
self.minIntegerDigits = \
self.minIntegerDigits + 1
elif (char == "."):
hasDecimal = True;
if (i == len(self.formatString) - 1):
break;
i = i + 1
char = self.formatString[i]
self.addNumber( )
else:
self.textStr = self.textStr + char
i = i + 1
self.endStr( )
def getFragment( self ):
return self.fragment
If you wish to specify a print range for the sheet (corresponding to the dialog box shown in Figure 5.3, “Spreadsheet Print Ranges” add a table:print-ranges attribute to the <table:table> element. Its value will be in a form like Sheet1.A1:Sheet1:F9.
The <table:table-column> elements that are to be repeated will be enclosed in a <table:table-header-columns> element; the <table:table-row> elements to be repeated will be enclosed in a <table:table-header-rows> element.
Example 5.18, “Structure of Print Ranges” shows the skeleton of the XML markup for the print ranges chosen in Figure 5.1, “Spreadsheet Page Options”.
Example 5.18. Structure of Print Ranges
<table:table table:name="Sheet1" table:style-name="ta1"
table:print-ranges="Sheet1.A1:Sheet1.F9">
<table:table-header-columns>
<table:table-column table:style-name="co1"/>
<table:table-column table:style-name="co2"/>
</table:table-header-columns>
<table:table-column table:style-name="co3"/>
<table:table-column table:style-name="co4"/>
<!-- remaining non-header columns -->
<table:table-header-rows>
<table:table-row table:style-name="ro1">
<table:table-cell><text:p>Cell A1</text:p></table:table-cell>
<table:table-cell> <!-- rest of row 1 --> </table:table-cell>
</table:table-row>
<table:table-row table:style-name="ro2">
<table:table-cell><text:p>Cell A2</text:p></table:table-cell>
<table:table-cell> <!-- rest of row 2 --> </table:table-cell>
</table:table-row>
</table:table-header-rows>
<table:table-row table:style-name="ro3">
<table:table-cell><text:p>Cell A3</text:p></table:table-cell>
<table:table-cell> <!-- rest of row 1 --> </table:table-cell>
</table:table-row>
<!-- remaining non-header rows -->
</table>
Our task in this case study is to use XSLT to transform data from an XML-based student gradebook and convert it to an OpenOffice.org spreadsheet. This is the actual markup that I use for the classes that I teach, and it is the actual transformation that I use.
The source XML document’s root element is a <gradebook> element. It contains a <task-list>, which gives information about each <task> that has been assigned to a student. Each task has an id attribute, date the assignment was due, a max (maximum) possible score, a type (lab, quiz, midterm, etc.), a weight telling what percentage of the final score this task is worth, and a recorded attribute that tells whether the scores for this task have been recorded or not. For example, I always have a midterm exam which I enter in the task list at the beginning of the semester; I just don’t set its recorded flag until the midterm has been given.
Following the task list is a series of <student> elements, each of which has an id attribute (the social security number preceded by a letter S. The <student> element contains the student’s last and first names, email address, extra info, and a series of <result> elements.
Each <result> element has a score attribute and a ref attribute. This last attribute is a reference to a task id from the task list. If I have some comments about the student’s work, that becomes the text content of the <result> element. Example 5.19, “Sample Gradebook Data” shows part of a gradebook. No real students or social security numbers were harmed in creating this data.
Example 5.19. Sample Gradebook Data
<gradebook>
<task-list>
<task date="2003-02-07" id="P01" max="100" recorded="yes"
type="lab" weight="12">Program 1 (Functions)</task>
<task date="2003-02-21" id="P02" max="100" recorded="yes"
type="lab" weight="12">Program 2 (Window and Document)</task>
<task date="2003-03-07" id="P03" max="100" recorded="yes"
type="lab" weight="12">Program 3 (Forms)</task>
<task date="2003-04-04" id="M01" max="100" recorded="yes"
type="midterm" weight="26">Midterm</task>
<task date="2003-05-09" id="P04" max="100" recorded="yes"
type="lab" weight="12">Program 4 (DHTML)</task>
<task date="2003-05-24" id="F01" max="100" recorded="yes"
type="final" weight="26">Final</task>
</task-list>
<student id="S111-22-5416">
<last>Albanes</last>
<first>Ysidro</first>
<email>albanes.ysidro@example.com</email>
<info/>
<result ref="P01" score="95"/>
<result ref="P02" score="100">Good work!</result>
<result ref="P03" score="100"/>
<result ref="M01" score="89"/>
<result ref="P04" score="95"/>
<result ref="F01" score="94"/>
</student>
<student id="S111-22-3520">
<last>Berlant</last>
<first>Troy</first>
<email>berlant.troy@example.com</email>
<info/>
<result ref="P01" score="100"/>
<result ref="P02" score="100"/>
<result ref="P03" score="90"/>
<result ref="M01" score="72"/>
<result ref="P04" score=""/>
<result ref="F01" score="96"/>
</student>
<!-- etc. -->
</gradebook>
The resulting spreadsheet should look like Figure 5.4, “Result of Gradebook Transformation”. The first row has the headings, with tasks labelled by their task ID. The second row shows the weights for each task as decimals (a weight of 12 becomes 0.12), and the remaining rows show the results for each student.
The XSLT file is fairly long, so we will look at it in parts. The first part establishes namespaces, includes a file with some standard font declarations, as described in the section called “Font Declarations”, and sets the course name in a variable. This variable exists solely to make it easy to modify the file for other courses.
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:office="http://openoffice.org/2000/office"
xmlns:style="http://openoffice.org/2000/style"
xmlns:text="http://openoffice.org/2000/text"
xmlns:table="http://openoffice.org/2000/table"
xmlns:draw="http://openoffice.org/2000/drawing"
xmlns:fo="http://www.w3.org/1999/XSL/Format"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:number="http://openoffice.org/2000/datastyle"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:chart="http://openoffice.org/2000/chart"
xmlns:dr3d="http://openoffice.org/2000/dr3d"
xmlns:math="http://www.w3.org/1998/Math/MathML"
xmlns:form="http://openoffice.org/2000/form"
xmlns:script="http://openoffice.org/2000/script"
>
<xsl:output method="xml"
doctype-public="-//OpenOffice.org//DTD OfficeDocument 1.0//EN"
doctype-system="office.dtd"/>
<xsl:include href="fontdecls.xslt"/>
<xsl:variable name="courseName">CIT 041J</xsl:variable>
The next line builds a “lookup table” of all the <student> nodes in the document, indexed by the value of their id attribute. We will use this index, which has the name student-index, to access a student’s information from another node’s context.
<xsl:key name="student-index" match="student" use="@id"/>
Here’s the first template: what to output when we encounter the root node of the document. It will create all the styles and all the heading rows, leaving First, fonts and the styles. We gave the cell styles meaningful names rather than using the OpenOffice.org naming convention (ce1, ce12, etc), because it helped us keep track of which cells had which style. OpenOffice.org doesn’t care what you name your styles, as long as they are all referenced correctly.
Note the order in which the styles occur: column styles, row styles, number styles, and then cell styles.
<office:document-content office:class="spreadsheet" office:version="1.0">
<office:script/>
<xsl:call-template name="insert-font-decls"/>
<office:automatic-styles>
<!-- Column for last and first name -->
<style:style style:name="co1" style:family="table-column">
<style:properties fo:break-before="auto"
style:column-width="2.5cm"/>
</style:style>
<!-- column for final grade and percentage -->
<style:style style:name="co2" style:family="table-column">
<style:properties fo:break-before="auto"
style:column-width="2cm"/>
</style:style>
<!-- All other columns -->
<style:style style:name="co3" style:family="table-column">
<style:properties fo:break-before="auto"
style:column-width="1.25cm"/>
</style:style>
<!-- Let all the rows have optimal height -->
<style:style style:name="ro1" style:family="table-row">
<style:properties fo:break-before="auto"
style:use-optimal-row-height="true"/>
</style:style>
<!-- The table references a master-page which doesn't exist,
but that doesn't bother OpenOffice.org -->
<style:style style:name="ta1" style:family="table"
style:master-page-name="TAB_Sheet1">
<style:properties table:display="true"/>
</style:style>
<!-- Number style for a percentage -->
<number:percentage-style style:name="N01" style:family="data-style">
<number:number number:decimal-places="2"
number:min-integer-digits="1"/>
<number:text>%</number:text>
</number:percentage-style>
<!-- individual cell styles -->
<!-- style for final grade letter -->
<style:style style:name="centered" style:family="table-cell"
style:parent-style-name="Default">
<style:properties fo:text-align="center"/>
</style:style>
<!-- style for the total grade percent -->
<style:style style:name="percent" style:family="table-cell"
style:data-style-name="N01"/>
<!-- style for heading cells -->
<style:style style:name="heading" style:family="table-cell"
style:parent-style-name="Default">
<style:properties fo:text-align="center"
fo:font-weight="bold"/>
</style:style>
<!-- style for raw data cells (just use OpenOffice.org defaults) -->
<style:style style:name="normal" style:family="table-cell"
style:parent-style-name="Default"/>
</office:automatic-styles>We now proceed to the body of the document, starting with the column specifications.
<!-- calculate number of raw data columns -->
<xsl:variable name="numTasks"
select="count(gradebook/task-list/task[@recorded='yes'])"/>
<!-- start the spreadsheet -->
<table:table table:name="{$courseName} Final" table:style-name="ta1">
<!-- last name, first name, and ID are repeated when printing -->
<table:table-header-columns>
<table:table-column table:style-name="co1"
table:default-cell-style-name="normal"/>
<table:table-column table:style-name="co1"
table:default-cell-style-name="normal"/>
<table:table-column table:style-name="co1"
table:default-cell-style-name="normal"/>
</table:table-header-columns>
<!-- final grade -->
<table:table-column table:style-name="co2"
table:default-cell-style-name="centered" />
<!-- percentage -->
<table:table-column table:style-name="co2"
table:default-cell-style-name="percent" />
<!-- everyone else -->
<table:table-column table:style-name="co3"
table:default-cell-style-name="normal"
table:number-columns-repeated="{$numTasks}">
</table:table-column>
Having specified the columns, we continue to the rows, which contain the actual table data. The first row contains headings, all of which have the heading style (bold and centered).
<table:table-header-rows><table:table-row table:style-name="ro1"> <table:table-cell table:style-name="heading"> <text:p>Last Name</text:p> </table:table-cell> <table:table-cell table:style-name="heading"> <text:p>First Name</text:p> </table:table-cell> <table:table-cell table:style-name="heading"> <text:p>ID</text:p> </table:table-cell> <table:table-cell table:style-name="heading"> <text:p>Grade</text:p> </table:table-cell> <table:table-cell table:style-name="heading"> <text:p>Total %</text:p> </table:table-cell> <!-- emit heading cell for each recorded task --> <xsl:for-each
select="gradebook/task-list/task[@recorded='yes']"> <xsl:sort select="@date" order="descending"/>
<table:table-cell table:style-name="heading"> <text:p><xsl:value-of select="@id"/></text:p> </table:table-cell> </xsl:for-each> </table:table-row> </table:table-header-rows>
The next row contains the weights for each task. The first five cells will be unoccupied, and we use another <xsl:for-each> to place the weights into the remaining cells. Note that the calculation of the factor variable uses div for division. That is because the forward slash symbol is already used to separate steps in an XPath expressions, and using it for division as well would complicate life for everyone.
<table:table-row table:style-name="ro1">
<!-- five empty cells -->
<table:table-cell table:number-columns-repeated="5"/>
<xsl:for-each select="gradebook/task-list/task[@recorded='yes']">
<xsl:sort select="@date" order="descending"/>
<xsl:variable name="factor" select="@weight div @max"/>
<table:table-cell table:value-type="float"
table:value="{$factor}">
<text:p><xsl:value-of select="$factor"/></text:p>
</table:table-cell>
</xsl:for-each>
</table:table-row>The only remaining job is to create the rows for each student; we will handle this by applying a template to all the <student> elements.
<!-- Create one row for each student -->
<xsl:apply-templates select="gradebook/student">
<xsl:sort select="last"/>
<xsl:sort select="first"/>
<xsl:with-param name="numCols" select="$numTasks+5"/>
</xsl:apply-templates>
</table:table>
</office:body>
</office:document-content>
</xsl:template>
Now we provide the template that handles the processing of the <student> element selected in the preceding code.
<xsl:template match="student">
<xsl:param name="numCols"/>
<!-- generate the column letter for the last column -->
<xsl:variable name="lastCol">
<xsl:call-template name="generate-col">
<xsl:with-param name="n" select="$numCols"/>
</xsl:call-template>
</xsl:variable>
The code for the first name, last name, and student ID cells is quite straightforward; it uses the substring() function to eliminate the letter S from the student ID.
In XSLT, the first character in a string is character number one, not number zero, as you would find in most programming languages.
<!-- cells for last name, first name, and student ID -->
<table:table-cell>
<text:p><xsl:value-of select="last"/></text:p>
</table:table-cell>
<table:table-cell>
<text:p><xsl:value-of select="first"/></text:p>
</table:table-cell>
<table:table-cell>
<text:p><xsl:value-of select="substring(@id,2)"/></text:p>
</table:table-cell>The next columns are the final letter grade and the total percentage. Extra whitespace has been inserted into the following listing to make things easier to read.
<!-- formula for final grade letter -->
<table:table-cell
table:formula=
"=MID("FFFFFFDCBAA"; INT([.E{position()+2}]*10)+1; 1)"/>
<!-- formula for final grade as a percentage -->
<table:table-cell
table:number-matrix-columns-spanned="1"
table:number-matrix-rows-spanned="1"
table:formula=
"=SUM([.F{position()+2}:.{$lastCol}{position()+2}] *
[.$F$2:.${$lastCol}$2])/100"
table:value-type="float"/>
The letter grade formula works by looking at the column to its right (the percentage), multiplying it by 10 to give a number between 0 and 10, then grabbing the corresponding letter from the string FFFFFFDCBAA. It uses the position() function to figure out which row number is being output. Here’s how that function works: <xsl:apply-templates> has selected a set of student nodes and <xsl:sort> has sorted them. Each one in turn is being processed by the current <xsl:template>. The first one to be processed has a position() equal to 1, the second has a position of 2, etc. Since there are two rows of headings in the spreadsheet, the row number being output is the position() plus two. Thus, for the first student, the formula works out to =MID("FFFFFFDCBAA";INT([.E3]*10)+1;1), as displayed in OpenOffice.org.
The next cell also uses the position() function and the lastCol variable to create the correct formula. Because the cell contains an array formula, it needs the table:number-matrix-columns-spanned and table:number-matrix-rows-spanned attributes to specify the dimensions of the resulting array. If the template is processing the first student and there are six tasks, then the XSLT creates the formula {=SUM([.F3:.K3]*[.$F$2:.$K$2])/100}, as displayed in OpenOffice.org.
The following is the remainder of the template for handling a student. The lines have been numbered for reference.
1 <!-- save the student's id -->
2 <xsl:variable name="id" select="@id"/>
3
4 <!-- insert a cell for each recorded score -->
5 <xsl:for-each select="/gradebook/task-list/task[@recorded='yes']">
6 <xsl:sort select="@date" order="descending"/>
7 <xsl:variable name="taskID" select="@id"/>
8 <xsl:call-template name="insert_score">
9 <xsl:with-param name="n"
10 select="key('student-index', $id)/result[@ref=$taskID]/@score"/>
11 </xsl:call-template>
12 </xsl:for-each>
13 </table:table-row>
14 </xsl:template>That takes care of the major templates. Now we write the named templates (subroutines) that we referred to earlier. First is the insert-score template, which creates a table cell whose value is the passed parameter n. If a null value has been passed (in case someone does not have a score for a task), then we insert an empty cell.
<xsl:template name="insert_score">
<xsl:param name="n"/>
<xsl:choose>
<xsl:when test="$n != ''">
<table:table-cell table:value-type="float" table:value="{$n}">
<text:p><xsl:value-of select="$n"/></text:p>
</table:table-cell>
</xsl:when>
<xsl:otherwise>
<table:table-cell><text:p/></table:table-cell>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
Finally, we have the template to figure out the column letter corresponding to the last column for each row. The pseudo-code is as follows:
<xsl:template name="generate-col">
<xsl:param name="n"/>
<xsl:variable name="letters">ABCDEFGHIJKLMNOPQRSTUVWXYZ</xsl:variable>
<xsl:choose>
<xsl:when test="$n <= 26">
<xsl:value-of select="substring($letters, $n, 1)"/>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="concat(
substring($letters, floor(($n - 1) div 26) + 1, 1),
substring($letters, (($n - 1) mod 26) + 1, 1))"/>
</xsl:otherwise>
</xsl:choose>
</xsl:template>The actual code for two-letter columns has to subtract one from the column number before dividing (so that the math works out right), and must add one to the result, because characters are numbered starting at one.
Content licensed under a
Creative Commons
License.