Re: Embperl Book (was: Embperl Wishes and comments)

2003-08-14 Thread Gerald Richter
> > I had started with a book about Embperl in german, but this project is > > on halt at the moment for two reason: 1.) my limited time, 2.) Embperl > > is to special that many people will buy such a book and the O'Reilly > > don't excepted to sell much books at the moment, because they sell >

Re: Embperl Book (was: Embperl Wishes and comments)

2003-08-14 Thread Gerald Richter
> > Alternatively, you could write the book in English and then do a German > translation ;-) > Yes, but doing a translation is still a lot of work (I have translated two pocket guides for O'Reilly in the past, so I know what I am talking about, and the Embperl book will surely longer then a poc

Re: Embperl Wishes and comments

2003-08-14 Thread Gerald Richter
> > Yes. Imports and library loads in general are not inherited. That's > also true in EmbperlObject and I find it somewhat of a pain there as > well. I'd like to keep those components as simple as possible, which > means not having to say things like: > [$ var $this $][- $this = shift; us

Re: Embperl Book (was: Embperl Wishes and comments)

2003-08-14 Thread David Lloyd
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Gerald, > Several people told me they would help to write a book. The problem is > I have a contract to write a book in german (which maybe will be > tranlated into english later), so we would need people who are able to > write in german... Alterna

RE: Embperl Wishes and comments

2003-08-04 Thread Justin Harrison
D]; [EMAIL PROTECTED] > Subject: Re: Embperl Wishes and comments > > Gerald: > > > > I had started with a book about Embperl in german, but this > project is > > on halt at the moment for two reason: 1.) my limited time, 2.) > > Embperl is to special that m

Re: Embperl Wishes and comments

2003-08-04 Thread ckassab
Gerald: > I had started with a book about Embperl in german, but this project is > on halt at the moment for two reason: 1.) my limited time, 2.) Embperl > is to special that many people will buy such a book and the O'Reilly > don't excepted to sell much books at the moment, because they sell

Re: Embperl Wishes and comments

2003-08-04 Thread Angus Lees
At Sun, 3 Aug 2003 10:28:13 -0400, Kee Hinckley wrote: > At 10:37 PM -0700 8/2/03, <[EMAIL PROTECTED]> wrote: > >- Embperlobject is great but, is it posible to have for embperl 2 > > the feature to call subs from other files without using embperl > > object? maybe it is good to avoid the file sea

Re: Embperl Wishes and comments

2003-08-03 Thread Richard Schilling
As time permits, my employees and I will be adding our notes, findings, tips/tricks/traps as well. We're slow at it though, but it's something we like to do because it helps us answer our own questions and build in-house knowledge. Richard Schilling On 2003.08.03 12:19 Gerald Richter wrote:

Re: Embperl Wishes and comments

2003-08-03 Thread Cameron McBride
On Sun, Aug 03, 2003 at 03:23:57PM -0400, Kee Hinckley wrote: > Yes. Imports and library loads in general are not inherited. That's > also true in EmbperlObject and I find it somewhat of a pain there as > well. I'd like to keep those components as simple as possible, which > means not having

Re: Embperl Wishes and comments

2003-08-03 Thread Kee Hinckley
At 10:42 AM -0700 8/3/03, <[EMAIL PROTECTED]> wrote: file index1.epl: [- Execute ({ inputfile => 'subs.epl', import=>1 }) -] test here some body text [- Execute ({ inputfile => 'footer.epl'}) -] file footer.epl: [- &mysub(); -] I get the again: Undefined subroutine &Embperl::__3::mysub If it

Re: Embperl Wishes and comments

2003-08-03 Thread Gerald Richter
> > file subs.epl: > [- sub mysub {print OUT "hello"; } -] > write [! sub mysub {print OUT "hello"; } !] because [- -] blocks are not executed on import Gerald - To unsubscribe, e-mail: [EMAIL PROTECTED] For addition

Re: Embperl Wishes and comments

2003-08-03 Thread Gerald Richter
> > - Actual documentation is good but I would want to have a best explained > documentation and to have examples Yes this would be great, but writing docs takes a lot of time. I try to do my best, but my time is very limited. Would be great if people could submit patches to the documentation if

Re: Embperl Wishes and comments

2003-08-03 Thread ckassab
Hi: > What happens if you use > > [$ sub mysub $] > [- print OUT "hello"; -] > [$ endsub $] > > instead? > it works now but if do something more complex like this: file subs.epl: [$ sub mysub $] [- print OUT "hello"; -] [$ endsub $] file index1.epl: [- Execute ({ inputfile => '

Re: Embperl Wishes and comments

2003-08-03 Thread Kee Hinckley
At 8:26 AM -0700 8/3/03, <[EMAIL PROTECTED]> wrote: > At 10:37 PM -0700 8/2/03, <[EMAIL PROTECTED]> wrote: I know nobody ask for it but i would want to say my wishes. - Embperlobject is great but, is it posible to have for embperl 2 the feature to call subs from other files without using embperl

Re: Embperl Wishes and comments

2003-08-03 Thread ckassab
> At 10:37 PM -0700 8/2/03, <[EMAIL PROTECTED]> wrote: >>I know nobody ask for it but i would want to say my wishes. >> >>- Embperlobject is great but, is it posible to have for embperl 2 the >>feature to call subs from other files without using embperl object? >>maybe it is good to avoid the file

Re: Embperl Wishes and comments

2003-08-03 Thread Kee Hinckley
At 10:37 PM -0700 8/2/03, <[EMAIL PROTECTED]> wrote: I know nobody ask for it but i would want to say my wishes. - Embperlobject is great but, is it posible to have for embperl 2 the feature to call subs from other files without using embperl object? maybe it is good to avoid the file search used

Embperl Wishes and comments

2003-08-02 Thread ckassab
I know nobody ask for it but i would want to say my wishes. - Embperlobject is great but, is it posible to have for embperl 2 the feature to call subs from other files without using embperl object? maybe it is good to avoid the file search used in embperlobject using the base file base.epl. - Ac