You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@jspwiki.apache.org by "Terry Steichen (JIRA)" <ji...@apache.org> on 2008/09/02 22:11:44 UTC

[jira] Created: (JSPWIKI-370) CSS setting prevents proper printing

CSS setting prevents proper printing
------------------------------------

                 Key: JSPWIKI-370
                 URL: https://issues.apache.org/jira/browse/JSPWIKI-370
             Project: JSPWiki
          Issue Type: Bug
          Components: Default template
    Affects Versions: 2.6.2
         Environment: Linux/Fedora 6 with Firefox 1.5
            Reporter: Terry Steichen
            Priority: Minor


Though my display looks fine, when I print it (basically a large table), the first couple of pages were blank.  To the best of my knowledge, this only happens on one particular page.  I searched and searched through the code, convinced there was some open tag someplace.

However I just discovered the source of the problem.  In jspwiki.css there is the following entry:
/* inspired by http://meyerweb.com/eric/thoughts/2007/05/01/reset-reloaded/ and yui reset */
        html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre,
        a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp,
        small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li,
        fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
        margin:0;
        padding:0;
        border:0;
        outline:0;
        vertical-align:baseline;
        }
        It turns out that the last item ("vertical-align:baseline") was the source of the problem.  Comment it out, and the printing anomaly disappears.

I'm uploading a html file (generated from JSPWiki) along with the associated JS and CSS files.  As it is now configured, it should display and print fine (because that item is commented out).  Remove the comment, and the first three pages will print with blank entries.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (JSPWIKI-370) CSS setting prevents proper printing

Posted by "Dirk Frederickx (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/JSPWIKI-370?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12628440#action_12628440 ] 

Dirk Frederickx commented on JSPWIKI-370:
-----------------------------------------

Terry,

The 'vertical-align:baseline' rule is actually a "reset" rule. This means it makes sure that the default value of this rule is consistent across all browsers and according to the css specs. Most modern browsers have correct default values and don't need this rule. However, older or 'buggy' browsers require these reset rules to ensure consistent rendering of your pages.

Removing the rule seemed to resolve the problem. However, I am not convinced that there is no other hidden issue causing the print err., as I can't reproduce the issue.


Anyway, this is a minor issue.

dirk

> CSS setting prevents proper printing
> ------------------------------------
>
>                 Key: JSPWIKI-370
>                 URL: https://issues.apache.org/jira/browse/JSPWIKI-370
>             Project: JSPWiki
>          Issue Type: Bug
>          Components: Default template
>    Affects Versions: 2.6.2
>         Environment: Linux/Fedora 6 with Firefox 1.5
>            Reporter: Terry Steichen
>            Priority: Minor
>             Fix For: 2.8
>
>         Attachments: jspwiki-common.js, jspwiki.css, jspwiki_print.css, mootools.js, prettify.js, print_test2.html
>
>
> Though my display looks fine, when I print it (basically a large table), the first couple of pages were blank.  To the best of my knowledge, this only happens on one particular page.  I searched and searched through the code, convinced there was some open tag someplace.
> However I just discovered the source of the problem.  In jspwiki.css there is the following entry:
> /* inspired by http://meyerweb.com/eric/thoughts/2007/05/01/reset-reloaded/ and yui reset */
>         html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre,
>         a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp,
>         small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li,
>         fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
>         margin:0;
>         padding:0;
>         border:0;
>         outline:0;
>         vertical-align:baseline;
>         }
>         It turns out that the last item ("vertical-align:baseline") was the source of the problem.  Comment it out, and the printing anomaly disappears.
> I'm uploading a html file (generated from JSPWiki) along with the associated JS and CSS files.  As it is now configured, it should display and print fine (because that item is commented out).  Remove the comment, and the first three pages will print with blank entries.
> This submitted at the suggestion of Dirk Fredrickx.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (JSPWIKI-370) CSS setting prevents proper printing

Posted by "Dirk Frederickx (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/JSPWIKI-370?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12628426#action_12628426 ] 

Dirk Frederickx commented on JSPWIKI-370:
-----------------------------------------


Terry,

I ran the tests based on the attached files on a Mac OSX, with FF3x or Safari.  Both printings were rendered successfully.
Could  it be a limitation of the 'older' FF versions you are running ?

dirk

> CSS setting prevents proper printing
> ------------------------------------
>
>                 Key: JSPWIKI-370
>                 URL: https://issues.apache.org/jira/browse/JSPWIKI-370
>             Project: JSPWiki
>          Issue Type: Bug
>          Components: Default template
>    Affects Versions: 2.6.2
>         Environment: Linux/Fedora 6 with Firefox 1.5
>            Reporter: Terry Steichen
>            Priority: Minor
>             Fix For: 2.8
>
>         Attachments: jspwiki-common.js, jspwiki.css, jspwiki_print.css, mootools.js, prettify.js, print_test2.html
>
>
> Though my display looks fine, when I print it (basically a large table), the first couple of pages were blank.  To the best of my knowledge, this only happens on one particular page.  I searched and searched through the code, convinced there was some open tag someplace.
> However I just discovered the source of the problem.  In jspwiki.css there is the following entry:
> /* inspired by http://meyerweb.com/eric/thoughts/2007/05/01/reset-reloaded/ and yui reset */
>         html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre,
>         a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp,
>         small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li,
>         fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
>         margin:0;
>         padding:0;
>         border:0;
>         outline:0;
>         vertical-align:baseline;
>         }
>         It turns out that the last item ("vertical-align:baseline") was the source of the problem.  Comment it out, and the printing anomaly disappears.
> I'm uploading a html file (generated from JSPWiki) along with the associated JS and CSS files.  As it is now configured, it should display and print fine (because that item is commented out).  Remove the comment, and the first three pages will print with blank entries.
> This submitted at the suggestion of Dirk Fredrickx.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (JSPWIKI-370) CSS setting prevents proper printing

Posted by "Terry Steichen (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/JSPWIKI-370?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12628183#action_12628183 ] 

Terry Steichen commented on JSPWIKI-370:
----------------------------------------

Dirk,

It wasn't WikiMarkup - it was a JSP page with all sorts of SQL lookups and such.  The output of this JSP page (generating standard HTML tags) is the print_test2.html that I provided.

Terry

> CSS setting prevents proper printing
> ------------------------------------
>
>                 Key: JSPWIKI-370
>                 URL: https://issues.apache.org/jira/browse/JSPWIKI-370
>             Project: JSPWiki
>          Issue Type: Bug
>          Components: Default template
>    Affects Versions: 2.6.2
>         Environment: Linux/Fedora 6 with Firefox 1.5
>            Reporter: Terry Steichen
>            Priority: Minor
>             Fix For: 2.8
>
>         Attachments: jspwiki-common.js, jspwiki.css, jspwiki_print.css, mootools.js, prettify.js, print_test2.html
>
>
> Though my display looks fine, when I print it (basically a large table), the first couple of pages were blank.  To the best of my knowledge, this only happens on one particular page.  I searched and searched through the code, convinced there was some open tag someplace.
> However I just discovered the source of the problem.  In jspwiki.css there is the following entry:
> /* inspired by http://meyerweb.com/eric/thoughts/2007/05/01/reset-reloaded/ and yui reset */
>         html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre,
>         a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp,
>         small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li,
>         fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
>         margin:0;
>         padding:0;
>         border:0;
>         outline:0;
>         vertical-align:baseline;
>         }
>         It turns out that the last item ("vertical-align:baseline") was the source of the problem.  Comment it out, and the printing anomaly disappears.
> I'm uploading a html file (generated from JSPWiki) along with the associated JS and CSS files.  As it is now configured, it should display and print fine (because that item is commented out).  Remove the comment, and the first three pages will print with blank entries.
> This submitted at the suggestion of Dirk Fredrickx.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (JSPWIKI-370) CSS setting prevents proper printing

Posted by "Terry Steichen (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/JSPWIKI-370?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Terry Steichen updated JSPWIKI-370:
-----------------------------------

    Description: 
Though my display looks fine, when I print it (basically a large table), the first couple of pages were blank.  To the best of my knowledge, this only happens on one particular page.  I searched and searched through the code, convinced there was some open tag someplace.

However I just discovered the source of the problem.  In jspwiki.css there is the following entry:
/* inspired by http://meyerweb.com/eric/thoughts/2007/05/01/reset-reloaded/ and yui reset */
        html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre,
        a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp,
        small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li,
        fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
        margin:0;
        padding:0;
        border:0;
        outline:0;
        vertical-align:baseline;
        }
        It turns out that the last item ("vertical-align:baseline") was the source of the problem.  Comment it out, and the printing anomaly disappears.

I'm uploading a html file (generated from JSPWiki) along with the associated JS and CSS files.  As it is now configured, it should display and print fine (because that item is commented out).  Remove the comment, and the first three pages will print with blank entries.

This submitted at the suggestion of Dirk Fredrickx.

  was:
Though my display looks fine, when I print it (basically a large table), the first couple of pages were blank.  To the best of my knowledge, this only happens on one particular page.  I searched and searched through the code, convinced there was some open tag someplace.

However I just discovered the source of the problem.  In jspwiki.css there is the following entry:
/* inspired by http://meyerweb.com/eric/thoughts/2007/05/01/reset-reloaded/ and yui reset */
        html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre,
        a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp,
        small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li,
        fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
        margin:0;
        padding:0;
        border:0;
        outline:0;
        vertical-align:baseline;
        }
        It turns out that the last item ("vertical-align:baseline") was the source of the problem.  Comment it out, and the printing anomaly disappears.

I'm uploading a html file (generated from JSPWiki) along with the associated JS and CSS files.  As it is now configured, it should display and print fine (because that item is commented out).  Remove the comment, and the first three pages will print with blank entries.


> CSS setting prevents proper printing
> ------------------------------------
>
>                 Key: JSPWIKI-370
>                 URL: https://issues.apache.org/jira/browse/JSPWIKI-370
>             Project: JSPWiki
>          Issue Type: Bug
>          Components: Default template
>    Affects Versions: 2.6.2
>         Environment: Linux/Fedora 6 with Firefox 1.5
>            Reporter: Terry Steichen
>            Priority: Minor
>         Attachments: jspwiki-common.js, jspwiki.css, jspwiki_print.css, mootools.js, prettify.js, print_test2.html
>
>
> Though my display looks fine, when I print it (basically a large table), the first couple of pages were blank.  To the best of my knowledge, this only happens on one particular page.  I searched and searched through the code, convinced there was some open tag someplace.
> However I just discovered the source of the problem.  In jspwiki.css there is the following entry:
> /* inspired by http://meyerweb.com/eric/thoughts/2007/05/01/reset-reloaded/ and yui reset */
>         html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre,
>         a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp,
>         small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li,
>         fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
>         margin:0;
>         padding:0;
>         border:0;
>         outline:0;
>         vertical-align:baseline;
>         }
>         It turns out that the last item ("vertical-align:baseline") was the source of the problem.  Comment it out, and the printing anomaly disappears.
> I'm uploading a html file (generated from JSPWiki) along with the associated JS and CSS files.  As it is now configured, it should display and print fine (because that item is commented out).  Remove the comment, and the first three pages will print with blank entries.
> This submitted at the suggestion of Dirk Fredrickx.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (JSPWIKI-370) CSS setting prevents proper printing

Posted by "Terry Steichen (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/JSPWIKI-370?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12628432#action_12628432 ] 

Terry Steichen commented on JSPWIKI-370:
----------------------------------------

Dirk,

Could be, I guess.  I'll check it out later when I have more time.  But
if this param doesn't do anything for us, and causes problems with older
(but still in use browsers), it would seem a good candidate to deal with
as you have apparently already done (by removing the CSS param).

Terry





> CSS setting prevents proper printing
> ------------------------------------
>
>                 Key: JSPWIKI-370
>                 URL: https://issues.apache.org/jira/browse/JSPWIKI-370
>             Project: JSPWiki
>          Issue Type: Bug
>          Components: Default template
>    Affects Versions: 2.6.2
>         Environment: Linux/Fedora 6 with Firefox 1.5
>            Reporter: Terry Steichen
>            Priority: Minor
>             Fix For: 2.8
>
>         Attachments: jspwiki-common.js, jspwiki.css, jspwiki_print.css, mootools.js, prettify.js, print_test2.html
>
>
> Though my display looks fine, when I print it (basically a large table), the first couple of pages were blank.  To the best of my knowledge, this only happens on one particular page.  I searched and searched through the code, convinced there was some open tag someplace.
> However I just discovered the source of the problem.  In jspwiki.css there is the following entry:
> /* inspired by http://meyerweb.com/eric/thoughts/2007/05/01/reset-reloaded/ and yui reset */
>         html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre,
>         a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp,
>         small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li,
>         fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
>         margin:0;
>         padding:0;
>         border:0;
>         outline:0;
>         vertical-align:baseline;
>         }
>         It turns out that the last item ("vertical-align:baseline") was the source of the problem.  Comment it out, and the printing anomaly disappears.
> I'm uploading a html file (generated from JSPWiki) along with the associated JS and CSS files.  As it is now configured, it should display and print fine (because that item is commented out).  Remove the comment, and the first three pages will print with blank entries.
> This submitted at the suggestion of Dirk Fredrickx.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Resolved: (JSPWIKI-370) CSS setting prevents proper printing

Posted by "Dirk Frederickx (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/JSPWIKI-370?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Dirk Frederickx resolved JSPWIKI-370.
-------------------------------------

       Resolution: Fixed
    Fix Version/s: 2.8

Resolved in v2.7.0-alpha-37.

Actually, I just removed the suggested css-style for now.

I didn't have time to reproduce the issue -- so if still possible could you provide me with the source of the wiki-page (wiki-markup). That's much easier to validate.

dirk



> CSS setting prevents proper printing
> ------------------------------------
>
>                 Key: JSPWIKI-370
>                 URL: https://issues.apache.org/jira/browse/JSPWIKI-370
>             Project: JSPWiki
>          Issue Type: Bug
>          Components: Default template
>    Affects Versions: 2.6.2
>         Environment: Linux/Fedora 6 with Firefox 1.5
>            Reporter: Terry Steichen
>            Priority: Minor
>             Fix For: 2.8
>
>         Attachments: jspwiki-common.js, jspwiki.css, jspwiki_print.css, mootools.js, prettify.js, print_test2.html
>
>
> Though my display looks fine, when I print it (basically a large table), the first couple of pages were blank.  To the best of my knowledge, this only happens on one particular page.  I searched and searched through the code, convinced there was some open tag someplace.
> However I just discovered the source of the problem.  In jspwiki.css there is the following entry:
> /* inspired by http://meyerweb.com/eric/thoughts/2007/05/01/reset-reloaded/ and yui reset */
>         html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre,
>         a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp,
>         small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li,
>         fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
>         margin:0;
>         padding:0;
>         border:0;
>         outline:0;
>         vertical-align:baseline;
>         }
>         It turns out that the last item ("vertical-align:baseline") was the source of the problem.  Comment it out, and the printing anomaly disappears.
> I'm uploading a html file (generated from JSPWiki) along with the associated JS and CSS files.  As it is now configured, it should display and print fine (because that item is commented out).  Remove the comment, and the first three pages will print with blank entries.
> This submitted at the suggestion of Dirk Fredrickx.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (JSPWIKI-370) CSS setting prevents proper printing

Posted by "Terry Steichen (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/JSPWIKI-370?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Terry Steichen updated JSPWIKI-370:
-----------------------------------

    Attachment: jspwiki.css
                prettify.js
                print_test2.html

These are the first three example files - need the rest - have to try to get Jira to take more than 3

> CSS setting prevents proper printing
> ------------------------------------
>
>                 Key: JSPWIKI-370
>                 URL: https://issues.apache.org/jira/browse/JSPWIKI-370
>             Project: JSPWiki
>          Issue Type: Bug
>          Components: Default template
>    Affects Versions: 2.6.2
>         Environment: Linux/Fedora 6 with Firefox 1.5
>            Reporter: Terry Steichen
>            Priority: Minor
>         Attachments: jspwiki.css, prettify.js, print_test2.html
>
>
> Though my display looks fine, when I print it (basically a large table), the first couple of pages were blank.  To the best of my knowledge, this only happens on one particular page.  I searched and searched through the code, convinced there was some open tag someplace.
> However I just discovered the source of the problem.  In jspwiki.css there is the following entry:
> /* inspired by http://meyerweb.com/eric/thoughts/2007/05/01/reset-reloaded/ and yui reset */
>         html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre,
>         a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp,
>         small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li,
>         fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
>         margin:0;
>         padding:0;
>         border:0;
>         outline:0;
>         vertical-align:baseline;
>         }
>         It turns out that the last item ("vertical-align:baseline") was the source of the problem.  Comment it out, and the printing anomaly disappears.
> I'm uploading a html file (generated from JSPWiki) along with the associated JS and CSS files.  As it is now configured, it should display and print fine (because that item is commented out).  Remove the comment, and the first three pages will print with blank entries.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (JSPWIKI-370) CSS setting prevents proper printing

Posted by "Terry Steichen (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/JSPWIKI-370?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Terry Steichen updated JSPWIKI-370:
-----------------------------------

    Attachment: mootools.js
                jspwiki_print.css
                jspwiki-common.js

The rest

> CSS setting prevents proper printing
> ------------------------------------
>
>                 Key: JSPWIKI-370
>                 URL: https://issues.apache.org/jira/browse/JSPWIKI-370
>             Project: JSPWiki
>          Issue Type: Bug
>          Components: Default template
>    Affects Versions: 2.6.2
>         Environment: Linux/Fedora 6 with Firefox 1.5
>            Reporter: Terry Steichen
>            Priority: Minor
>         Attachments: jspwiki-common.js, jspwiki.css, jspwiki_print.css, mootools.js, prettify.js, print_test2.html
>
>
> Though my display looks fine, when I print it (basically a large table), the first couple of pages were blank.  To the best of my knowledge, this only happens on one particular page.  I searched and searched through the code, convinced there was some open tag someplace.
> However I just discovered the source of the problem.  In jspwiki.css there is the following entry:
> /* inspired by http://meyerweb.com/eric/thoughts/2007/05/01/reset-reloaded/ and yui reset */
>         html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre,
>         a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp,
>         small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li,
>         fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
>         margin:0;
>         padding:0;
>         border:0;
>         outline:0;
>         vertical-align:baseline;
>         }
>         It turns out that the last item ("vertical-align:baseline") was the source of the problem.  Comment it out, and the printing anomaly disappears.
> I'm uploading a html file (generated from JSPWiki) along with the associated JS and CSS files.  As it is now configured, it should display and print fine (because that item is commented out).  Remove the comment, and the first three pages will print with blank entries.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.