Re: https://metacpan.org/pod/OpenOffice::OODoc

2024-02-09 Thread Mike
I don't. Mike On 1/31/24 16:51, hw wrote: Ok and how do you do it with OpenOffice::OODoc? -- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For additional commands, e-mail: beginners-h...@perl.org http://learn.perl.org/

Re: https://metacpan.org/pod/OpenOffice::OODoc

2024-01-31 Thread hw
On Tue, 2024-01-30 at 20:45 -0600, Mike wrote: > FWIW, in Spreadsheet::WriteExcel I do this: Ok and how do you do it with OpenOffice::OODoc? > $sheet = $book1 -> worksheets(2) -> {Name}; > $sheet = $book1 -> worksheets($sheet); > $sheet -> Activate; > > $sheet -> Range("B2") -> Activate; > $ex -

Re: https://metacpan.org/pod/OpenOffice::OODoc

2024-01-30 Thread Mike
FWIW, in Spreadsheet::WriteExcel I do this: $sheet = $book1 -> worksheets(2) -> {Name}; $sheet = $book1 -> worksheets($sheet); $sheet -> Activate; $sheet -> Range("B2") -> Activate; $ex -> ActiveWindow -> {FreezePanes} = "True"; Mike On 1/28/24 16:26, hw wrote: So how do I freeze rows/col

Re: https://metacpan.org/pod/OpenOffice::OODoc

2024-01-28 Thread hw
On Sun, 2024-01-28 at 22:44 +0100, hw wrote: > Hmm, cellValue() always puts text. How do I put numbers and formulars > instead? Ok, it's cellFormula(), and you have to change the value type of every cell that should contain anything having a type different from the default type of the sheet. Ugh

Re: https://metacpan.org/pod/OpenOffice::OODoc

2024-01-28 Thread hw
On Sun, 2024-01-28 at 12:21 -0800, Jim Gibson via beginners wrote: > Check out the OpenOffice::OODoc module on CPAN: > <https://metacpan.org/pod/OpenOffice::OODoc::Intro> > > The documentation is a little sparse, especially with regard to “spreadsheet” > mode, and I don’t ha

Re: https://metacpan.org/pod/OpenOffice::OODoc

2024-01-28 Thread Jim Gibson via beginners
Check out the OpenOffice::OODoc module on CPAN: <https://metacpan.org/pod/OpenOffice::OODoc::Intro> The documentation is a little sparse, especially with regard to “spreadsheet” mode, and I don’t have Libre Office on my system to test it out, but the following code produces an ods file th

Re: https://metacpan.org/pod/OpenOffice::OODoc

2024-01-28 Thread hw
On Thu, 2024-01-25 at 20:28 -0600, Mike wrote: > It can be done with a Perl module: > https://unix.stackexchange.com/questions/723650/editing-libreoffice-calc-spreadsheets-in-the-terminal > > I have not tested that. I do not want to edit spreadsheets in a terminal. There's some other software fo

Re: https://metacpan.org/pod/OpenOffice::OODoc

2024-01-25 Thread Mike
It can be done with a Perl module: https://unix.stackexchange.com/questions/723650/editing-libreoffice-calc-spreadsheets-in-the-terminal I have not tested that. Mike On 1/25/24 13:05, hw wrote: Hi, is there a way to create libreoffice spreadsheets (ods) similar to Excel::Writer::XLSX? Th

https://metacpan.org/pod/OpenOffice::OODoc

2024-01-25 Thread hw
Hi, is there a way to create libreoffice spreadsheets (ods) similar to Excel::Writer::XLSX? There is OpenOffice::OODoc and I don't see how to create spreadsheet documents with that. Is there still no way to do that? -- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For additional comma

Re: Local static HTML tree of Perl POD similar to perldoc.perl.com?

2013-04-04 Thread David Christensen
e/dpchrist/perl-5.10.1 --podpath=`perl -e 'print join ":", grep -e, map "../../..$_", @INC'` --htmldir=/home/dpchrist/perl-5.10.1/htdocs --htmlroot=/home/dpchrist/perl-5.10.1/htdocs --splithead=pod/perlipc --splititem=pod/perlfunc --libpods=perlfunc,perlgu

Re: Local static HTML tree of Perl POD similar to perldoc.perl.com?

2013-04-02 Thread Brian Fraser
l tool for populating the entire HTML tree from all > installed Perl modules/POD? > > If you want Perl's documentation, the distribution comes with a installhtml script that will do exactly what you want[3]. Otherwise, yes, pod2html is the usual way of of going from pod to HTML. [1] Name

Local static HTML tree of Perl POD similar to perldoc.perl.com?

2013-04-02 Thread David Christensen
the path? 3. Is pod2html the canonical tool for creating the HTML files? If not, what tool? 4. Is there a canonical tool for populating the entire HTML tree from all installed Perl modules/POD? I use Debian GNU/Linux, Perl 5.10.1, and ExtUtils::MakeMaker. TIA, David -- To unsubscribe

Re: POD and Perldoc

2012-09-14 Thread John Penkethman
On Sep 13, 2012, at 10:57 AM, David Precious wrote: > On Wed, 12 Sep 2012 12:01:31 -0400 > "Weidner, Ron" wrote: > >> I'm looking at documenting perl code I'm working on. I'm considering >> POD but I don't think it can do what I want. Exampl

Re: POD and Perldoc

2012-09-13 Thread David Precious
On Wed, 12 Sep 2012 12:01:31 -0400 "Weidner, Ron" wrote: > I'm looking at documenting perl code I'm working on. I'm considering > POD but I don't think it can do what I want. Example of what I would > like... > > [code] > > # here I would

Re: POD and Perldoc

2012-09-13 Thread Brandon McCaig
On Wed, Sep 12, 2012 at 12:01:31PM -0400, Weidner, Ron wrote: > I'm looking at documenting perl code I'm working on. I'm considering POD but > I don't > think it can do what I want. Example of what I would like... > > [code] > > # here I would put POD

POD and Perldoc

2012-09-13 Thread Weidner, Ron
I'm looking at documenting perl code I'm working on. I'm considering POD but I don't think it can do what I want. Example of what I would like... [code] # here I would put POD synopsis etc. # here I want to put POD that describes this function sub my_echo {

Re: POD, and coding techniqes

2009-06-18 Thread Chas. Owens
#(since they would be defined in the pod for that class) =head2 gledger_add(EagleUser, PAYMENTS) Adds a list of payments to the ledger for a given EagleUser object. PAYMENTS is an a list of payments. Each payment should be a hash reference containing the keys payment_method, quantity, item_

POD, and coding techniqes

2009-06-17 Thread Steve Bertrand
Hi all, One of the things that came out of my last thread was my lack of documentation, so now I'm keeping the documentation up-to-date as I make code changes. I'm trying to come up with a decent layout for this. Tentatively, it looks like [1]. Does this appear to be acceptable? Could you recomme

Re: Pod Usage Example

2008-12-23 Thread Stealth
On Tuesday 23 December 2008 10:05:24 am Mr. Shawn H. Corey wrote: > On Tue, 2008-12-23 at 20:16 +0530, Kelvin Philip wrote: > > When I call pod2usage(verbose => 2); the terminal is getting > > stuck. When I > > press CTRL+4, it comes out and displays the whole man page. > > Would you pls > > sugges

Re: Pod Usage Example

2008-12-23 Thread Mr. Shawn H. Corey
On Tue, 2008-12-23 at 20:16 +0530, Kelvin Philip wrote: > When I call pod2usage(verbose => 2); the terminal is getting stuck. > When I > press CTRL+4, it comes out and displays the whole man page. Would you > pls > suggest a solution for this issue? This sounds like a problem with your terminal em

Re: Pod Usage Example

2008-12-23 Thread Kelvin Philip
ote: > On Tue, 2008-12-23 at 13:29 +0530, Kelvin Philip wrote: > > Hi, > > > > Would someone guide me with a simple example for perl documentation using > > Pod :: Usage? > > # Documentation levels > my $DOC_USAGE = 0; > my $DOC_HELP = 1

Re: Pod Usage Example

2008-12-23 Thread Mr. Shawn H. Corey
On Tue, 2008-12-23 at 13:29 +0530, Kelvin Philip wrote: > Hi, > > Would someone guide me with a simple example for perl documentation using > Pod :: Usage? # Documentation levels my $DOC_USAGE = 0; my $DOC_HELP = 1; my $DOC_VER = 2; my $D

Re: Pod Usage Example

2008-12-23 Thread Chas. Owens
On Tue, Dec 23, 2008 at 02:59, Kelvin Philip wrote: > Hi, > > Would someone guide me with a simple example for perl documentation using > Pod :: Usage? snip #!/usr/bin/perl use Getopt::Long; use Pod::Usage; my %opts; GetOptions( 'a' => \$opts{a}, &#x

Pod Usage Example

2008-12-22 Thread Kelvin Philip
Hi, Would someone guide me with a simple example for perl documentation using Pod :: Usage? Regards, Kelvin Philip

RE: POD question

2007-09-11 Thread Moon, John
Thank you... -Original Message- From: Chas Owens [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 11, 2007 1:53 PM To: Moon, John Cc: beginners@perl.org Subject: Re: POD question On 9/11/07, Moon, John <[EMAIL PROTECTED]> wrote: > I'm trying to single space lines in a P

Re: POD question

2007-09-11 Thread Chas Owens
On 9/11/07, Moon, John <[EMAIL PROTECTED]> wrote: > I'm trying to single space lines in a POD but without success... > Removing the blank lines yields one line of text. Any help will be > appreciated. snip Add a space (or spaces) before the lines =item d. The file looks like:

POD question

2007-09-11 Thread Moon, John
I'm trying to single space lines in a POD but without success... Removing the blank lines yields one line of text. Any help will be appreciated. =item d. The file looks like:$ $ =back$ $ =back$ $ =pod$ $ 200708_200709101429$ $ 10-09-07 14:29$ $ L1$ $ =cut$ gives d. The file looks

Re: search POD about AUTOLOAD

2006-09-21 Thread chen li
--- Jeff Pang <[EMAIL PROTECTED]> wrote: > > >I want to read some information about AUTOLOAD in > POD. > > Hi, > > Got these pieces from Schwartz's book and hope it > helps. Hi Jeff, Thank you very much, Li _

Re: search POD about AUTOLOAD

2006-09-21 Thread chen li
--- "John W. Krahn" <[EMAIL PROTECTED]> wrote: > > I want to read some information about AUTOLOAD in > POD. > > But I get nothing when I type "perldoc -f/-q > > AUTOLOAD". > > Any comments? > > perlsub has an "Autoloading"

Re: search POD about AUTOLOAD

2006-09-20 Thread John W. Krahn
chen li wrote: > Hi all, Hello, > I want to read some information about AUTOLOAD in POD. > But I get nothing when I type "perldoc -f/-q > AUTOLOAD". > Any comments? perlsub has an "Autoloading" section: perldoc perlsub Also the "AUTOLOAD: Proxy Met

Re: search POD about AUTOLOAD

2006-09-20 Thread Jeff Pang
>I want to read some information about AUTOLOAD in POD. Hi, Got these pieces from Schwartz's book and hope it helps. After Perl searches the inheritance tree and UNIVERSAL for a method, it doesn't just stop there if the search is unsuccessful. Perl repeats the search through

search POD about AUTOLOAD

2006-09-20 Thread chen li
Hi all, I want to read some information about AUTOLOAD in POD. But I get nothing when I type "perldoc -f/-q AUTOLOAD". Any comments? Thanks, Li __ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection ar

Re: How to search POD

2006-09-12 Thread Ken Foskey
er trick I use is pod2wiki for my internal modules and use twiki for my documentation. I then use the twiki search function to search my pod text. -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] <http://learn.perl.org/> <http://learn.perl.org/first-response>

Re: How to search POD

2006-09-12 Thread Ken Foskey
On Mon, 2006-09-11 at 06:37 -0700, chen li wrote: > Dear all, > > There are several methods to search POD on window I found podbrowser it is excellent for finding and reviewing pod documents that are installed. http://jodrell.net/projects/podbrowser Thanks Ken Foskey -- To unsub

Re: How to search POD

2006-09-11 Thread chen li
n as well. > > Cheers! > > --Tom Phoenix > Stonehenge Perl Training Thank you very much, Tom. After I read perldoc perldoc I find the solution to my question: use the -T option. And this is how I do (use CGI POD as an example): C:\> perldoc -T CGI > CGI.txt After that I

Re: How to search POD

2006-09-11 Thread Tom Phoenix
On 9/11/06, chen li <[EMAIL PROTECTED]> wrote: sometimes some PODs are very long I can't go back once I read to the end. The only way I can go back is to issue the line code again. Is there any way around this problem under window prompt? Generally, the perldoc command sends its output to a p

How to search POD

2006-09-11 Thread chen li
Dear all, There are several methods to search POD on window prompt by issuing the lines below: perldoc perl(get overview of Perl) perldoc -f map( search a function called map) perldoc -q regular expression (search a question about regular expression ) perldoc CGI( information about module CGI

Re: extracting NAME and DESCRIPTION sections from pod text file

2006-08-13 Thread Ken Foskey
On Sun, 2006-08-13 at 10:48 -0500, Mumia W. wrote: > On 08/13/2006 08:36 AM, Ken Perl wrote: > > what's correct regular expression on extracting only NAME and > > DESCRIPTION section from pod text file? > > I have tried this, but failed! > > > > perl -e

Re: extracting NAME and DESCRIPTION sections from pod text file

2006-08-13 Thread Dr.Ruud
Mumia W. schreef: > Ken: >> what's correct regular expression on extracting only NAME and >> DESCRIPTION section from pod text file? >> I have tried this, but failed! >> >> perl -e '$c=`pod2text /data/WebGUI/lib/WebGUI/User.pm`;$c =~ >> s/(NAME.*

Re: extracting NAME and DESCRIPTION sections from pod text file

2006-08-13 Thread Mumia W.
On 08/13/2006 08:36 AM, Ken Perl wrote: what's correct regular expression on extracting only NAME and DESCRIPTION section from pod text file? I have tried this, but failed! perl -e '$c=`pod2text /data/WebGUI/lib/WebGUI/User.pm`;$c =~ s/(NAME.*)SYNOPSIS/$1/;print $c' foreac

extracting NAME and DESCRIPTION sections from pod text file

2006-08-13 Thread Ken Perl
what's correct regular expression on extracting only NAME and DESCRIPTION section from pod text file? I have tried this, but failed! perl -e '$c=`pod2text /data/WebGUI/lib/WebGUI/User.pm`;$c =~ s/(NAME.*)SYNOPSIS/$1/;print $c' -- perl -e 'print unpack(u,"62V5N\"

solved - Re: POD rendering - was Re: POD: force line break?

2006-08-08 Thread Gary Stainburn
On Tuesday 08 August 2006 12:16, Mumia W. wrote: > On 08/08/2006 04:19 AM, Gary Stainburn wrote: > > [ snipped ] > > What's the best way to force the formatting similar to the original > > layout? > > Did you read the perlpod document (perldoc perlpod)? yes > Did you read Ken Foskey's response in

Re: POD rendering - was Re: POD: force line break?

2006-08-08 Thread Mumia W.
On 08/08/2006 04:19 AM, Gary Stainburn wrote: [ snipped ] What's the best way to force the formatting similar to the original layout? Did you read the perlpod document (perldoc perlpod)? Did you read Ken Foskey's response in the thread? -- To unsubscribe, e-mail: [EMAIL PROTECTED] For addit

POD rendering - was Re: POD: force line break?

2006-08-08 Thread Gary Stainburn
On a similar note. I have: =head2 version history 2006-07-12 Went live with version 1. 2006-07-25 Updated now to now() in uploads update to fix problem with not marking as complete 2006-08-03 changed all references to now() to use $now and initialised at sta

Re: POD: force line break?

2006-08-07 Thread Ken Foskey
On Sun, 2006-08-06 at 17:40 +0200, Peter Daum wrote: > Hi, > > Is there any way, to force a line break in POD, > without starting a new paragraph? easy way is to indent 1 space then it does not get formatted. Kind of link tag in html. -- To unsubscribe, e-mail: [EMAIL PR

Re: POD: force line break?

2006-08-06 Thread D. Bolliger
Peter Daum am Sonntag, 6. August 2006 19:34: > Tom Phoenix wrote: > > If the renderer you're using supports it, you can produce a newline > > character with the formatting code E<10>. But older renderers (and > > maybe even some newer ones) may not give you the effect you're looking > > for. > > >

Re: POD: force line break?

2006-08-06 Thread Tom Phoenix
On 8/6/06, Peter Daum <[EMAIL PROTECTED]> wrote: What I am looking for is a way to force a new line at a certain place, pretty much like '' in HTML, but independent of the context and the output format. Using verbatim paragraphs would mean doing without any formatting. Actually, I was trying t

Re: POD: force line break?

2006-08-06 Thread Peter Daum
Tom Phoenix wrote: > If the renderer you're using supports it, you can produce a newline > character with the formatting code E<10>. But older renderers (and > maybe even some newer ones) may not give you the effect you're looking > for. > > What are you trying to do? You can have direct control o

Re: POD: force line break?

2006-08-06 Thread Tom Phoenix
On 8/6/06, Peter Daum <[EMAIL PROTECTED]> wrote: Is there any way, to force a line break in POD, without starting a new paragraph? If the renderer you're using supports it, you can produce a newline character with the formatting code E<10>. But older renderers (and maybe eve

POD: force line break?

2006-08-06 Thread Peter Daum
Hi, Is there any way, to force a line break in POD, without starting a new paragraph? Regards, Peter Daum -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] <http://learn.perl.org/> <http://learn.perl.org/first-response>

Re: Test::Pod::Coverage

2006-06-05 Thread Peter Scott
On Sun, 04 Jun 2006 16:57:13 +1000, Ken Foskey wrote: > For example how do I ensure that there is a SYNOPSIS and DESCRIPTION > section? Ah, you want something entirely different for that. Specifically, the tests performed by the Perl::Critic::Policy::Documentation::RequirePodSections class in the

Re: Test::Pod::Coverage

2006-06-03 Thread Ken Foskey
AFter a nights sleep, this works... for my $module (glob("*.pm")) { $module =~ s/.pm$//; pod_coverage_ok( $module, "$module test" ); } I still do not understand the parms. I think it can give me the audit check I want but I am not sure. For example how do I ensure that there is

Re: Test::Pod::Coverage

2006-06-03 Thread Ken Foskey
On Sat, 2006-06-03 at 06:25 -0700, Peter Scott wrote: > On Sat, 03 Jun 2006 20:53:35 +1000, Ken Foskey wrote: > > I cannot figure out the how to make this work, this succeeds with no > > documentation in the modules. > > > > #!/usr/bin/perl > > >

Re: Test::Pod::Coverage

2006-06-03 Thread Peter Scott
On Sat, 03 Jun 2006 20:53:35 +1000, Ken Foskey wrote: > I cannot figure out the how to make this work, this succeeds with no > documentation in the modules. > > #!/usr/bin/perl > > # Ensure POD is set up correctly. > > use Test::More; > eval "use Test::Pod 1.00

Re: Test::Pod::Coverage

2006-06-03 Thread Ken Foskey
lib, which is where they should be in > a > standard dist. Problem is that it does not work the way I want... $ t/pod.t 1..16 ...snip... ok 16 - Xcomlog_sql.pm but podchecker: $ podchecker Xcomlog_sql.pm Xcomlog_sql.pm does not contain any pod commands. I would also like to ensure complian

Re: Test::Pod::Coverage

2006-06-03 Thread Ricardo SIGNES
* Ken Foskey <[EMAIL PROTECTED]> [2006-06-03T06:53:35] > #!/usr/bin/perl > # Ensure POD is set up correctly. > use Test::More; > eval "use Test::Pod 1.00"; > plan skip_all => "Test::Pod 1.00 required for testing POD" if $@; > all_pod_files_ok( map(

Test::Pod::Coverage

2006-06-03 Thread Ken Foskey
I cannot figure out the how to make this work, this succeeds with no documentation in the modules. #!/usr/bin/perl # Ensure POD is set up correctly. use Test::More; eval "use Test::Pod 1.00"; plan skip_all => "Test::Pod 1.00 required for testing POD" if $@; all_pod_fil

Re: Simple Issues with Pod (on verbose and help page without param).

2006-04-03 Thread Tom Phoenix
On 4/3/06, Edward WIJAYA <[EMAIL PROTECTED]> wrote: > 1. How can I make the code below return man page when I simpy do: > $ perl mycode.pl > > Namely no param is passed here. unless (@ARGV) { # no command-line args pod2usage(-verbose => 2); exit; } > 2. Ve

Simple Issues with Pod (on verbose and help page without param).

2006-04-03 Thread Edward WIJAYA
no param is passed here. 2. Verbose 1 status below doesn't return anything when I do: $ perl mycode.pl -help. What's wrong with it? === mycode.pl == !/usr/bin/perl -w use strict; use Data::Dumper; use Getopt::Long; use Pod::Usage; my $some_param = 5; #Default value my $hel

POD for Win32::GUI?

2005-04-13 Thread Octavian Rasnita
Hi, Does anyone know where I can get some help for using Win32::GUI? I have seen that module doesn't have POD documentation inside (or outside). Thank you. Teddy -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] <http://learn.perl.org

Re: Good examples of POD for newbies?

2004-12-09 Thread Jonathan Paton
Dear Kevin, There are thousands of examples of POD on CPAN. E.g. http://search.cpan.org/src/DCONWAY/Parse-RecDescent-1.94/lib/Parse/RecDescent.pod Jonathan Paton On Thu, 09 Dec 2004 09:17:50 -0500, KEVIN ZEMBOWER <[EMAIL PROTECTED]> wrote: > Can anyone suggest a small mod

RE: Good examples of POD for newbies?

2004-12-09 Thread KEVIN ZEMBOWER
ssage- From: KEVIN ZEMBOWER [mailto:[EMAIL PROTECTED] Sent: Thursday, December 09, 2004 10:18 AM To: [EMAIL PROTECTED] Subject: Good examples of POD for newbies? Can anyone suggest a small module which demonstrate good usage of POD, to use as an example for someone who would like to write POD c

RE: Good examples of POD for newbies?

2004-12-09 Thread Shaw, Matthew
perldoc perlpod is pretty comprehensive. Have you checked that out? -Original Message- From: KEVIN ZEMBOWER [mailto:[EMAIL PROTECTED] Sent: Thursday, December 09, 2004 10:18 AM To: [EMAIL PROTECTED] Subject: Good examples of POD for newbies? Can anyone suggest a small module which

Re: Good examples of POD for newbies?

2004-12-09 Thread Edward Wijaya
On Thu, 09 Dec 2004 09:17:50 -0500, KEVIN ZEMBOWER <[EMAIL PROTECTED]> wrote: Can anyone suggest a small module which demonstrate good usage of POD, to use as an example for someone who would like to write POD correctly for the first time? Check this out: http://www.perlmonks.org/

Good examples of POD for newbies?

2004-12-09 Thread KEVIN ZEMBOWER
Can anyone suggest a small module which demonstrate good usage of POD, to use as an example for someone who would like to write POD correctly for the first time? Looking at CPAN for POD tutorials or examples didn't show up anything directly. Reading through the Camel book was helpful

Favorite Templates for POD?

2004-10-06 Thread Siegfried Heintze
I'm using POD for the first time. Unlike POD's counterparts for C# and Java programming, POD is pretty unstructured. (1) Are there some favorite examples to follow? For example, I learned from looking at CGI.pm, but was surprised that there was not set of comments preceding each fun

Re: POD on new module to make sure it looks right before uploading to CPAN

2004-09-01 Thread JupiterHost.Net
Seems the module docs are incorrect. This seems to work for me: Sorry for the delay :) pod2html("d:\\perl\\site\\lib\\$pmfile", "--title=$pmfile pod2html", '--backlink=Back to Top', '--css=http://search.cpan.org/s/style.css', "--cachedir=c:\\temp", ); That is it seems the first paramete

Re: POD on new module to make sure it looks right before uploading to CPAN

2004-08-26 Thread JupiterHost.Net
Jenda Krynicky wrote: From: "JupiterHost.Net" <[EMAIL PROTECTED]> Jenda Krynicky wrote: From: "JupiterHost.Net" <[EMAIL PROTECTED]> Is there an easy way to view the POD from a local module in a browser to see what it will look like in CPAN? I would generate the

Re: POD on new module to make sure it looks right before uploading to CPAN

2004-08-26 Thread Jenda Krynicky
From: "JupiterHost.Net" <[EMAIL PROTECTED]> > Jenda Krynicky wrote: > > From: "JupiterHost.Net" <[EMAIL PROTECTED]> > > > >>Is there an easy way to view the POD from a local module in a > >>browser to see what it will look like in C

Re: POD on new module to make sure it looks right before uploading to CPAN

2004-08-26 Thread JupiterHost.Net
[EMAIL PROTECTED] wrote: Ok well sorry about that I must have missed your earlier post. Good luck on the other module, it looked simpler to me. Thanks, if I run into problems I'll be posting back :) -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: POD on new module to make sure it looks right before uploading to CPAN

2004-08-26 Thread christopher . l . hood
- From: JupiterHost.Net [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 25, 2004 5:41 PM To: Christopher L. Hood Cc: [EMAIL PROTECTED] Subject: Re: POD on new module to make sure it looks right before uploading to CPAN [EMAIL PROTECTED] wrote: > Well I don't know if it is possible, how

Re: POD on new module to make sure it looks right before uploading to CPAN

2004-08-25 Thread JupiterHost.Net
[EMAIL PROTECTED] wrote: Well I don't know if it is possible, however the POD::HTML module is very skimpy on documentation, so try this one instead. http://search.cpan.org/~sburke/Pod-Simple-3.02/lib/Pod/Simple/HTML.pm it appears to be very easy to use, however I cannot test. Just give it

Re: POD on new module to make sure it looks right before uploading to CPAN

2004-08-25 Thread JupiterHost.Net
Jenda Krynicky wrote: From: "JupiterHost.Net" <[EMAIL PROTECTED]> Is there an easy way to view the POD from a local module in a browser to see what it will look like in CPAN? I would generate the HTML file by the pod2html script and then look at the created file. pod2h

Re: POD on new module to make sure it looks right before uploading to CPAN

2004-08-25 Thread Jenda Krynicky
From: "JupiterHost.Net" <[EMAIL PROTECTED]> > Is there an easy way to view the POD from a local module in a browser > to see what it will look like in CPAN? I would generate the HTML file by the pod2html script and then look at the created file. pod2html --infile=T

Re: POD on new module to make sure it looks right before uploading to CPAN

2004-08-25 Thread JupiterHost.Net
Hmm, no takers eh? :) Does anyone know if its possible to use Pod::Html to view a .pm file with pod documentation in it as a web page? If not that module does anyone know any other modules/methods to do that? Thanks :) Lee.M - JupiterHost.Net -- To unsubscribe, e-mail: [EMAIL PROTECTED] For

Re: POD on new module to make sure it looks right before uploading to CPAN

2004-08-19 Thread JupiterHost.Net
s in the example) It gives: Can't open pod2html: No such file or directory at /System/Library/Perl/5.8.1/Pod/Html.pm line 371. So I'm assuming it needs to be the path to the pd2html program, correct? When I use that, it gives me an html page (pod2html POD page) via CLI but still no

POD on new module to make sure it looks right before uploading to CPAN

2004-08-19 Thread JupiterHost.Net
Howdy group, I'm getting ready to add a module or two to CPAN. I'm working on the POD documentation now. I'd like to make sure it looks right and the links work and all before I upload it to CPAN. Is there an easy way to view the POD from a local module in a browser to see wh

Re: POD anyone with a good example???

2004-06-28 Thread Randy W. Sims
Bastian Angerstein wrote: Hello there, does anyone have a good example for pod documented sourcecode. I would like to have some sort of example where I can start with. A good example of inline doc is in the Pod::Parser module, take a look at it with: perldoc -m Pod::Parser (A usefull trick, BTW

Re: POD anyone with a good example???

2004-06-28 Thread Gunnar Hjalmarsson
Bastian Angerstein wrote: does anyone have a good example for pod documented sourcecode. I would like to have some sort of example where I can start with. perldoc perlnewmod includes a couple of example hints, together with other useful suggestions. -- Gunnar Hjalmarsson Email: http

POD anyone with a good example???

2004-06-28 Thread Bastian Angerstein
Hello there, does anyone have a good example for pod documented sourcecode. I would like to have some sort of example where I can start with. Thanks, Bastian -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] <http://learn.perl.org/>

RE: printing pod

2004-04-23 Thread Charles K. Clarkson
WC -Sx- Jones <[EMAIL PROTECTED]> wrote: : : [EMAIL PROTECTED] wrote: : : > I would like to be able to print pod sections to the : screen, like have an : > option to print out my revision history. I'm sure there : must be an easy way : > to handle thisbut how? : : Hmm

Re: printing pod

2004-04-23 Thread WC -Sx- Jones
[EMAIL PROTECTED] wrote: I would like to be able to print pod sections to the screen, like have an option to print out my revision history. I'm sure there must be an easy way to handle thisbut how? Hmm, the system you are on doesn't have perldoc ? perldoc -qa.a | perl -l

RE: printing pod

2004-04-23 Thread Bob Showalter
[EMAIL PROTECTED] wrote: > I would like to be able to print pod sections to the screen, like > have an option to print out my revision history. I'm sure there must > be an easy way to handle thisbut how? The Pod::Usage module comes close to doing what you want; perhaps you c

Re: printing pod

2004-04-23 Thread WC -Sx- Jones
[EMAIL PROTECTED] wrote: I would like to be able to print pod sections to the screen, like have an option to print out my revision history. I'm sure there must be an easy way to handle thisbut how? I use DocSet and related Template Toolkit items... That way the pod is browserable wit

printing pod

2004-04-23 Thread Green_Bob
I have started using pod to document things like revision history, usage and help info within my programs. I need to keep everything self contained within one script so I can easily distribute the utilities...no read.me's. I would like to be able to print pod sections to the screen, like

POD

2004-03-14 Thread Malloc7c3
Is there any GUI POD Creator? Thanks, Dave -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] <http://learn.perl.org/> <http://learn.perl.org/first-response>

RE: links in POD

2004-03-06 Thread Freimuth,Robert
> You know, this is all sort of like using > > DocSet 0.16 from CPAN > http://search.cpan.org/~stas/DocSet-0.16/ > > Have you seen it? Not until you just mentioned it. Looks interesting - thanks for the suggestion! Bob -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-ma

Re: links in POD

2004-03-05 Thread WC -Sx- Jones
Freimuth,Robert wrote: ... < snip > ... You know, this is all sort of like using DocSet 0.16 from CPAN http://search.cpan.org/~stas/DocSet-0.16/ Have you seen it? -Bill- __Sx__ http://youve-reached-the.endoftheinternet.org/ -- To unsubscribe, e-mail: [EMAIL

RE: links in POD

2004-03-05 Thread Freimuth,Robert
> > I'm trying to use POD to document my application. I have about 5 > > different doc files, and I'd like to create links between them when > > they are translated from POD to HTML. For example, in doc > file 1 I'd > > like to say '...using the fo

RE: links in POD

2004-03-03 Thread Bob Showalter
Freimuth,Robert wrote: > Hi all, > > I'm trying to use POD to document my application. I have about 5 > different doc files, and I'd like to create links between them when > they are translated from POD to HTML. For example, in doc file 1 I'd > like to s

Re: links in POD

2004-03-03 Thread Randy W. Sims
On 03/02/04 21:54, Freimuth,Robert wrote: Hi all, I'm trying to use POD to document my application. I have about 5 different doc files, and I'd like to create links between them when they are translated from POD to HTML. For example, in doc file 1 I'd like to say '...using

links in POD

2004-03-03 Thread Freimuth,Robert
Hi all, I'm trying to use POD to document my application. I have about 5 different doc files, and I'd like to create links between them when they are translated from POD to HTML. For example, in doc file 1 I'd like to say '...using the foo function, as described in ...'

Re: pod::usage example help

2004-01-09 Thread R. Joseph Newton
nfact if nothing is passed then the entire pod documents should > be displayed > GetOptions('help|?' => \$help, man => \$man) or pod2usage(2); > Which to me read if help or man is undefined then pod2usage(-verbose => 2) > Which is called before this line which state

pod::usage example help

2004-01-09 Thread Paul Kraus
if nothing is passed then the entire pod documents should be displayed GetOptions('help|?' => \$help, man => \$man) or pod2usage(2); Which to me read if help or man is undefined then pod2usage(-verbose => 2) Which is called before this line which states to display just the no

Re: POD, Faq and tradition - Re: extracting email addys.

2003-11-24 Thread Jason Dusek
On Sunday, November 23, 2003, at 10:39 PM, R. Joseph Newton wrote: We newbies could just send the thing out to the list, and everyone could ignore it in good conscience. If the FAQ didn't help us, we could always repost with a note about "BadFAQ" in the subject line. That is actually what peldo

Re: POD, Faq and tradition - Re: extracting email addys.

2003-11-23 Thread R. Joseph Newton
Jason Dusek wrote: > Begin forwarded message: > > > From: Jason Dusek <[EMAIL PROTECTED]> > > Date: Sat Nov 22, 2003 10:10:27 PM US/Central > > To: drieux <[EMAIL PROTECTED]> > > > Subject: Re: POD, Faq and tradition - Re: extracting email addys.

Re: POD, Faq and tradition - Re: extracting email addys.

2003-11-23 Thread drieux
On Sunday, Nov 23, 2003, at 16:24 US/Pacific, R. Joseph Newton wrote: [..] [blush] ...uh, and make sure your'e looking at the headers for the right post. [/blush] Joseph dude, we all have those little decaf moments trust me on that 8-) It is possible that you can 'deja news' the article

Re: POD, Faq and tradition - Re: extracting email addys.

2003-11-23 Thread R. Joseph Newton
"R. Joseph Newton" wrote: > drieux wrote: > > > On Sunday, Nov 23, 2003, at 11:22 US/Pacific, R. Joseph Newton wrote: > Sorry, I was reading the headers for the wrong post. Nevertheless, the opther point remains. Thee is a difference between a flat thread and well-referenced one in terms of cog

Re: POD, Faq and tradition - Re: extracting email addys.

2003-11-23 Thread drieux
On Sunday, Nov 23, 2003, at 12:06 US/Pacific, R. Joseph Newton wrote: [..] Please reread the standard, start using full header view to analyse the pathways, and set a good example for newbies. why? On Sunday, Nov 23, 2003, at 12:10 US/Pacific, Wiggins d'Anconia wrote: [..] Now does someone have a

Re: POD, Faq and tradition - Re: extracting email addys.

2003-11-23 Thread Wiggins d'Anconia
R. Joseph Newton wrote: Can we dispense with the nit-picky mail client BS and get back to discussing issues related to Perl. I realize some of the older more experienced gurus on the list may have lived in a utopian world where everyone used a client that worked well for all postings on USENET

  1   2   >