-
Type:
Bug
-
Resolution: Fixed
-
Priority:
Medium
-
Affects Version/s: 2.2.9
-
Component/s: Page - Export / Import
-
Environment:
System Information
System Date Dienstag, 09 Jan 2007
System Time 09:01:48
System Favourite Color Taupe
Java Version 1.4.2_13
Java Vendor Sun Microsystems Inc.
JVM Version 1.0
JVM Vendor Sun Microsystems Inc.
JVM Implementation Version 1.4.2_13-b06
Java Runtime Java(TM) 2 Runtime Environment, Standard Edition
Java VM Java HotSpot(TM) Client VM
User Name SMT_Admin
User Timezone Europe/Berlin
Operating System Windows XP 5.1
OS Architecture x86
Filesystem Encoding Cp1252Java VM Memory Statistics
Total Memory 152 MB
Free Memory 69 MB
Used Memory 83 MB
Memory Graph
[Used Memory ( 55 %)] [Free Memory ( 45 %)]
45 % FreeRuntime Information
Database Dialect net.sf.hibernate.dialect.HSQLDialect
Database Connection URL jdbc:hsqldb:C:\WikiDaten/database/confluencedb
Database Driver Name org.hsqldb.jdbcDriver
Database Driver Version 1.8
Application Server Apache Tomcat/5.5.15
Servlet Version 2.4
Confluence Home C:\WikiDaten
Uptime 16 Stunden, 32 Minuten, 50 Sekunden
Version 2.2.9
Build Number 527System Information System Date Dienstag, 09 Jan 2007 System Time 09:01:48 System Favourite Color Taupe Java Version 1.4.2_13 Java Vendor Sun Microsystems Inc. JVM Version 1.0 JVM Vendor Sun Microsystems Inc. JVM Implementation Version 1.4.2_13-b06 Java Runtime Java(TM) 2 Runtime Environment, Standard Edition Java VM Java HotSpot(TM) Client VM User Name SMT_Admin User Timezone Europe/Berlin Operating System Windows XP 5.1 OS Architecture x86 Filesystem Encoding Cp1252 Java VM Memory Statistics Total Memory 152 MB Free Memory 69 MB Used Memory 83 MB Memory Graph [Used Memory ( 55 %)] [Free Memory ( 45 %)] 45 % Free Runtime Information Database Dialect net.sf.hibernate.dialect.HSQLDialect Database Connection URL jdbc:hsqldb:C:\WikiDaten/database/confluencedb Database Driver Name org.hsqldb.jdbcDriver Database Driver Version 1.8 Application Server Apache Tomcat/5.5.15 Servlet Version 2.4 Confluence Home C:\WikiDaten Uptime 16 Stunden, 32 Minuten, 50 Sekunden Version 2.2.9 Build Number 527
Whenever I use a sql macro producing a table as its ouput, I find the following lines in the exported PDF file. The following sql-macros behave correctly. You can find the html-output in the zip-file, the exported PDF is attached and the markup is contained in the .wiki file
If you need further information, do not hesitate to contact me at oswald@schwermetall.de
val2) return 1; if (val1 == val2) return 0; return -1; } function trimLeft(string) { var start; for (start = 0;
(start < string.length) && (string.charAt(start) == ' '); start++) { } return string.substring(start); }
function inCellIntSorter(value1, value2)
function inCellFloatSorter(value1, value2)
{ var val1 = parseFloat(getElementInnerText(value1)); var val2 = parseFloat(getElementInnerText(value2)); if (isNaN(val1) || (val1 > val2)) return 1; // NaN is bigger than all if (val1 == val2) return 0; return -1; }function customizeMacroTable(table, columnTyps, firstDataRowIndex, highLightMouseOverRow) { table =
(typeof(table) == "string") ? document.getElementById(table) : table; if (table) { var lastClickableRow =
firstDataRowIndex - 1; if (lastClickableRow < 0)
for (rowIndex = 0; rowIndex <= lastClickableRow; rowIndex++) { var header =
table.rows[rowIndex]; for(i=0; i