Search found 3 matches

by jbermejo
Wed Feb 13, 2008 11:48 am
Forum: TestLink 1.7 (Closed)
Topic: Printing to Word
Replies: 3
Views: 4990

I've just found a workaround for printing the correct hirearchical structure of the "Table of Contents" in ms-word documents. I've changed 'padding-left' to 'margin-left' on both renderTestSuiteNodeForPrinting (line 214) and renderTestCaseForPrinting functions (line 289) of the print.inc.p...
by jbermejo
Wed Feb 13, 2008 10:09 am
Forum: TestLink 1.7 (Closed)
Topic: General performance of Testlink 1.7+
Replies: 20
Views: 30288

I had a project with more than than 3000 test cases; however, I had to change the $g_tree_type variable in config.inc.pho from 'LAYERSMENU' to 'JTREE' because it took more than 30 seconds to render the testcase tree when accessing the TL application from a remote dsl/vpn connection.
by jbermejo
Wed Feb 13, 2008 9:46 am
Forum: TestLink 1.7 (Closed)
Topic: Printing to Word
Replies: 3
Views: 4990

Adding spaces between test cases in word documents

I changed line 247 of the print.inc.php file from: $code .= "</table></div>"; to: $code .= "</table></div><br />"; this adds an extra line after each test case is printed and it also fixes the tc table mis-alignment problem displayed when printing to ms-word documents. I still ne...