Configuring Apache on Fedora9 for codestriker.

2009-03-05 Thread anand.bhatta
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

Re: Configuring Apache on Fedora9 for codestriker.

2009-03-05 Thread Greg Jetter
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

Page Breaks

2009-03-05 Thread Bill Stephenson
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

Re: Page Breaks

2009-03-05 Thread Shaun Fryer
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/

Re: Page Breaks

2009-03-05 Thread Shaun Fryer
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

Re: Page Breaks

2009-03-05 Thread Greg Jetter
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