mirror of
https://git.freebsd.org/ports.git
synced 2025-07-12 06:49:18 -04:00
- Changes between 0.3.7 and 0.3.8 * Corrected endless loop if area won't fit on page * Added handling 'overflow' property of fo:region-body * xmlroff stops at first error instead of continuing - Changes between 0.3.6 and 0.3.7 * Corrected placement of fo:external-graphic if not first on line * Added setting pixels-per-inch (for graphics without intrinsic size) as configure option * Working on averting endless loop if area won't fit on page. - Changes between 0.3.5 and 0.3.6 * Resolves relative URIs for fo:external-graphic 'src' property values (Stefan Seefeld) * Added 'content-type' to libfo-compat.xsl * Stopped requiring 'content-height' and 'content-width' * Supporting percentages for 'content-height' and 'content-width' * Improved Cygwin support (Gerrit Haase) - Changes between 0.3.4 and 0.3.5 * fo:external-graphic works (but requires 'content-height' and 'content-width') * Stopped removing 'fo:external-graphic' in libfo-compat.xsl (Tim Waugh) * Able to build in separate directory (Matthew Daniel) * Default 'auto' output format determines format from output file extension * Added conformance section to documentation - Changes between 0.3.3 and 0.3.4 * Add '--format' parameter for PDF or PostScript output * Reduced memory leakage * Partially re-implemented fo:external-graphic support * Corrected whitespace handling in libfo-compat.xsl (Tim Waugh) * Corrected "url()" handling * 86% symbol docs coverage
19 lines
649 B
C
19 lines
649 B
C
--- fo/fo-table.c.orig Mon Jan 30 21:59:46 2006
|
|
+++ fo/fo-table.c Mon Jan 30 22:00:08 2006
|
|
@@ -1700,6 +1700,7 @@
|
|
FoDatatype *column_proportional = NULL;
|
|
FoContext *parent_context = NULL;
|
|
GError *tmp_error = NULL;
|
|
+ gchar *string_value = NULL;
|
|
|
|
g_return_val_if_fail (error == NULL || *error == NULL, NULL);
|
|
|
|
@@ -1715,7 +1716,7 @@
|
|
parent_context =
|
|
fo_fo_get_context (FO_FO (fo_node_parent (FO_NODE (table_column))));
|
|
|
|
- gchar *string_value = fo_string_get_value (column_width_string);
|
|
+ string_value = fo_string_get_value (column_width_string);
|
|
column_proportional =
|
|
fo_expr_eval (string_value,
|
|
"column-width",
|