Re: making user definable variables really global

Derek Robert Price <[email protected]> Tue, 17 Jun 2003 15:22:17 -0400
Newsgroups gmane.comp.tex.texi2html.devel
Organization Ximbiot <http://ximbiot.com>
Message-ID <[email protected]>
Dumas Patrice wrote:

>Does it work well with functions ? As here a lot of the configuration
>is done with functions in texi2html.init, like
>
>$T2H_print_section            = \&T2H_DEFAULT_print_section;
>
>sub T2H_DEFAULT_print_section
>{
>    my $fh = shift;
>    my $buttons = \@T2H_SECTION_BUTTONS;
>    if ($T2H_SECTION_NAVIGATION)
>    {
>        &$T2H_print_head_navigation($fh, $buttons);
>....
>}
>  
>

It should:

%Texi2HTML::Config = {
    'T2H_DEFAULT_print_section' = sub { a subroutine };
};

works.  It is then called as 
&$Texi2HTML::Config{'T2H_DEFAULT_print_section'}(@args);, IIRC.  The 
parens may even render the leading "&" irrelevant.

I think I prefer the package syntax to the anonymous routine references, 
but I'm not sure I've considered all the issues yet and the anonymous 
references are simpler for now.

Derek

-- 
                *8^)

Email: [email protected]

Get CVS support at <http://ximbiot.com>!
-- 
Hamlet:  To be or not to be - that is the question;
Whether 'tis nobler in the mind to suffer
The slings and arrows of outrageous fortune
Or to take arms against a sea of troubles
And by opposing end them.  To die, to sleep -
No more - and by a sleep to say we end
The heartache and the thousand natural shocks
That flesh is heir to.  'Tis a consummation
Devoutly to be wished.  To die, to sleep -
To sleep - perchance to dream.  Ay, there's the rub.
For in that sleep of death what dreams may come
When we have shuffled off this mortal coil
Must give us pause.  There's the respect
That makes calamity of so long life.
For who would bear the whips and scorns of time,
Th' oppressor's wrong, the proud man's contumely,
The pangs of despised love, the law's delay,
The insolence of office, and the spurns
That patient merit of the unworthy takes,
When he himself might his quietus make
With a bare bodkin?  Who would fardels bear,
To grunt and sweat under a weary life,
But that the dread of something after death,
The undiscovered country, from whose bourn
No traveller returns, puzzles the will,
And makes us rather bear those ills we have
Than fly to others we know not of?
Thus conscience does make cowards of us all;
And thus the native hue of resolution
Is sicklied o'er with the pale cast of thought,
And enterprises of great pitch and moment
With this regard their currents turn awry
And lose the name of action.  Soft you now,
The fair Ophelia! - Nymph, in thy orisons
Be all my sins remembered.

     - Hamlet, Act III, Scene 1, Lines 56-89