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/
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 -
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
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
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
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
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
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
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
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
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
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
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
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
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
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
{
#(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_
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
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
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
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
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
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},
Hi,
Would someone guide me with a simple example for perl documentation using
Pod :: Usage?
Regards,
Kelvin Philip
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
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:
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
--- 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
_
--- "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"
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
>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
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
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>
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
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
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
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
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
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.*
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
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\"
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
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
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
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
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.
> >
>
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
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
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
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>
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
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
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
> >
>
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
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
* 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(
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
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
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
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
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
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
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
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/
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
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
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
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
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
[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]
-
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
[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
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
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
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
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
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
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
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
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/>
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
[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
[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
[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
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
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>
> 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
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
> > 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
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
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
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 ...'
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
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
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
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.
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
"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
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
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 - 100 of 111 matches
Mail list logo