Hello,
I am not able to configure codestriker. My configuration is Fedora 9,
Apache 2.2.
If I give the complete path of codestriker.pl
(/codestriker/codestriker-1.9.8/cgi-bin/codestriker.pl) in the browser
then I get the error window that the codestriker.js was not found and I
need to check the
On Thursday 05 March 2009 4:36:19 am anand.bha...@wipro.com wrote:
> Hello,
>
>
>
> I am not able to configure codestriker. My configuration is Fedora 9,
> Apache 2.2.
>
> If I give the complete path of codestriker.pl
> (/codestriker/codestriker-1.9.8/cgi-bin/codestriker.pl) in the browser
> then I
Does anyone know where I can learn how to make smooth page breaks in
dynamically created HTML documents.
Most of the document is contained in a table and the number of rows is
a variable as well as the number of lines of text in each row.
I'd like to be able to know when a document has exceed
This shouldn't be that difficult if you know how many lines/rows you
want on each page. How are you generating the HTML? Are you doing it
via CGI.pm, Template::Toolkit, HTML::Template, something else? That
will be the defining factor as to how you'd go about it.
--
Shaun Fryer
http://sourcery.ca/
Without providing actual code, the approach I'd recommend is to
accumulate in a data structure something such as the following.
my $tables = [
[ # table/page 0
[ # row 0
q| line 0 of row 0 |, # this just represents a line of
user-input, presumably as obtained from Text::Wrap
On Thursday 05 March 2009 10:25:44 am Bill Stephenson wrote:
> Does anyone know where I can learn how to make smooth page breaks in
> dynamically created HTML documents.
>
> Most of the document is contained in a table and the number of rows is
> a variable as well as the number of lines of text in