http://qs321.pair.com?node_id=766853


in reply to Supressing page breaks in format/write output

Are you writing to a file, a web page, a screen, an Oracle form, ... before it goes to a browswer? The answer really depends. Really, the best thing would be to just write the thing and not worry about the formatting. HTML and the browser are the right tools to do that. (Well, assuming you're not using IE6, of course.)

--
tbone1, YAPS (Yet Another Perl Schlub)
And remember, if he succeeds, so what.
- Chick McGee

Replies are listed 'Best First'.
Re^2: Supressing page breaks in forms
by yaconsult (Acolyte) on May 29, 2009 at 17:25 UTC
    Sorry, I should have provided more detail.

    I am outputting nicely formatted text files with tables of data and statistics.

    These get emailed to people and are also available by going to report pages on web pages that contain statistics and reports.

    So all I want to do is not have page breaks inserted into my formatted output. In both email and on the web pages that people will see the columns of output, they can just scroll.

    So the problem simply is, how can I write out many lines of formatted output without having page breaks automatically inserted?

    I tried setting $- to 200 after each write, as suggested by Albannach above, but that doesn't seem to be doing the trick either. I'm still getting page breaks with headers repeats.

    This must be possible to do. If I were printing on legal-size paper instead of letter, I'd want more lines on the page between breaks. How can I set the number of lines in the output I'm generating with format/write?

      $- is the number of lines left to print for the default file handle. Does resetting it change anything? $=, on the other hand, is the current page length for the default file handle. You could try setting $= to something absolutely massive (5000?) depending on the data. You would need to know and understand the data to come up with a suitable value. Have tried setting it to undef? Just a (dangerous) thought.

      --
      tbone1, YAPS (Yet Another Perl Schlub)
      And remember, if he succeeds, so what.
      - Chick McGee

        I tried setting $= = 5000 before each write withn the loop. It didn't seem to have any effect as I still get the page breaks.

        When I tried undefing it I got an error about unitialized value $= in scalara assignment.

      <Update: Root Node has been revised since this was posted /update>

      Let me repeat: web pages do NOT have intrinsic page breaks. When printed to dead trees, the print routine inserts them, but when viewed on a monitor they have no need to paginate.

      Think of the rendered web page as appearing on a long (very long!) roll of paper, with each end attached to a roller, viewed through a window frame. Scrolling moves the paper (use "vertically" for your mental model); changes which portion of the text you can see. Web pages are NOT analagous to cut sheets of paper, be those 8.5x11, A4, Legal, or 6 inches wide by a mile high.

      So, assuming your "nicely formatted text files" are, indeed, pure text and not some form of word-processing format, you need do no more than this:

      You can practically use the content above as an element of a home-brew templating system. The step-by-step below is sub-optimal, but should work until you learn more about html, perl, and the templating systems cited in previous responses.

      1. Save the template above to a local file.
      2. Read (see open among others) the template into a variable in your script).
      3. Read the "nicely formatted text" into another variable.
      4. Use substitution (see perlretut) on the first variable to replace the content above between ** and ** with the contents of your second variable.
      5. Hand tweak the <meta....>s above, replacing the ##...## with appropriate content, or remove them before step one if you're not worried about search engine rankings.
      6. Write (see"open" above and perldoc -f print) the modified second variable to a file, name.htm.
      7. Move or copy the name.htm to a web server (if some viewers will be on-line) or simply distribute it to interested parties as an attachment to email, by sneaker net or whatever.

      There will be no page breaks. And, FWIW, you can simply paste (remember, we're assuming your source files are truly pure "text," not word processor documents, .pdfs, Latex, or some other format using markup) the source document into an email to distribute it. Same deal: no page breaks.

      If, however, your source file is a wp document, note that wp documents do, typically, contain page break codes. You may have to remove those. But you will also have a strip whatever markup the creator_application inserted to organize the tables and then recreate those with .html or even .xml markup (for which, you'll need to spend a few minutes learning the fundamentals).

        It is NOT a web page. It is a simple text file. It gets emailed to people via a script.

        Coincidentally, there is a web page somewhere that, when a link is clicked on it, displays the contents of this text file in the browser.

        The only problem is that the text gets broken in "pages" when there are many lines and I don't want it to.

        ...
        2009-03-15 04 143 oconnorn
        ^L Date Hour Requests UID
        -----------------------------------------------
        2009-03-15 04 121 rdreyer
        ...

        That is what happens every so many lines - a ^L and a reprinting of the header. I just want those breaks to disappear.