Re: [pgsql-advocacy] Announcement: planned open source billing system demonstration now available

2003-09-24 Thread Richard Schilling
ature version of the home listing search engine we built will eventually be released under a general open source license. Richard Schilling On 2003.09.23 18:15 Ruben Safir Secretary NYLXS wrote: > And what is the licensing? > > > On Tue, Sep 23, 2003 at 06:06:00PM -0700, Richard Sch

Announcement: planned open source billing system demonstration now available

2003-09-23 Thread Richard Schilling
n e-mail me directly, but for the benefit of the Open Source community you should also post comments, criticisms or suggestions posted to this discussion list. Thank you. Richard Schilling - To unsubscribe, e-mail: [EMAIL PROTE

A TABLE-processing-with-[$ while $]-blocks-involved question

2003-09-13 Thread Richard Schilling
t hit me: the [$ endwhile $] command needs to appear *before* the tag. So, what happened? I suspect it has to do with Embperl table processing, but am curious about the internals. Richard Schilling rsmba.biz - To unsubscribe, e

creative use of $row, $col in tables

2003-09-11 Thread Richard Schilling
Just wanted to share this technique and see how others achieve the same thing. Anyone else doing something similar or have a better trick? Here's some code that creates a nice, compact table definition around a set of tuples returned from a database (in this case gnucash). [- $oldmaxcol = $maxc

escaping and default behavior for optRawInput with spaceship operators in HTML::Embperl -vs- Embperl-2.0b9

2003-08-10 Thread Richard Schilling
ion once I'm sure as to what's going on. . . Personally, I'd like to default behavior to be optRawInput set. Since the goal of escaping seems to be aimed at dealing with WISIWIG editors, it makes more sense to me to require a sysadmin to enable escaping to deal with their pa

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 Ric

behavior of [! !]

2003-08-01 Thread Richard Schilling
!] to define a subroutine, where is the subroutine stored? [- -] blocks allow me to use variables created in them later in the page. Why does [! !] do not? T

Re: incompatible epapinit.c file error

2003-07-22 Thread Richard Schilling
httpd-2.0.47 On 2003.07.22 16:27 Cameron McBride wrote: On Tue, Jul 22, 2003 at 04:20:58PM -0700, Richard Schilling wrote: > # ../bin/apachectl start > httpd: module "epapinit.c" is not compatible with this version of > Apache (found 19990320, need 20020903). > Please cont

HTML::Embperl dependencies

2003-07-22 Thread Richard Schilling
As I'm building HTML::Embperl from CVS source, I've taken note of some PERL module dependencies. I've been installing on a clean Solaris Box. Didn't see these listed anywhere so I thought I would go ahead and post them. This may be a partial list: ExtUtils-MakeMaker ExtUtils-XSBuilder Parse-

problem with xs_generate.pl (FunctionTable.pm missing)

2003-07-22 Thread Richard Schilling
I'm trying to build HTML::Embperl from the CVS distribution. I can't get xs_generate.pl to find the file FunctionTable.pm: $ cd xsbuilder $ perl ./xs_generate.pl Parse /export/home/scotts/perl/embperl/xsbuilder/maps/_types.map... Parse /export/home/scotts/perl/embperl/xsbuilder/maps/ep_type.map.

incompatible epapinit.c file error

2003-07-22 Thread Richard Schilling
ctl start httpd: module "epapinit.c" is not compatible with this version of Apache (found 19990320, need 20020903). Please contact the vendor for the correct version. Any clues? Thanks. Richard Schilling - To un

Re: proper referencing of hashes returned by fetchrow_hashref . . .

2003-06-24 Thread Richard Schilling
l perl is that $zweeb not zweeb is the reference to use. The -> does that. This means ${$zweeb}[0] and $zweeb->[0] are the same thing. And so is ${$a}{'joe'} and $a->{'joe'} or &{$fctn}() and $fctn->(). Hope that helps. |b On Tue, 2003-06-24 at 21:05, Richard Schillin

proper referencing of hashes returned by fetchrow_hashref . . .

2003-06-24 Thread Richard Schilling
Just a quick question, and perhaps it's a Perl language question. I forget, but why do you have to reference a hash with a double "$$" when you use fetchrow_hashref? [- use DBI; # code to open connection, run query, etc . . . -] [$ if $hashed_row = $query

Re: strange Embperl behavior with INPUT tags when using DBI

2003-05-27 Thread Richard Schilling
ou do that, the values are separated by a tab. Are you using the [$ hidden $] tag in the form, but not at the end of the form? That's a common cause for this behavior. > -Original Message- > From: Richard Schilling [mailto:[EMAIL PROTECTED] > Sent: Tuesday, May 27, 2003 3

uploading files results in an empty file

2003-03-26 Thread Richard Schilling
} -] The images directory is set to owner nobody, and group nobody. The file is created, but the code dies when it tries to print to NF. After the script dies, the file size is left at 0. Can't for the life of me figure out what's missing. Anyone? Thanks. --Richard Schil