Re: [Bug-apl] HTML∆Assert Value Error

2015-05-21 Thread Kacper Gutowski
On Fri, May 22, 2015 at 4:03 AM, wrote: > Is there any reason HTML∆attr does not like single characters? It's because 'a' in APL is not a single-element vector as one might expect, but a scalar value. Use: 'left' HTML∆attr ,'a' -k

[Bug-apl] HTML∆Assert Value Error

2015-05-21 Thread alexweiner
Hi bug-apl, Is there any reason HTML∆attr does not like single characters? I would assume that 'left' HTML∆attr 'a ' would return left="a" Instead it prints: *** Assertion (sert 1 ≡ ≡xB) failed at HTML∆attr[2] ≡ xB: 0┏━┓ ⍴⍴ xB: 0┃a┃ ⍴ xB:

[Bug-apl] Some CGI example scripts

2015-05-21 Thread alexweiner
Hi Bug bug-apl, I wrote up some examples of CGI in gnuapl, in case anyone needs some help getting started. (When called as a CGI script) This one makes an html file that contains a form with some fields and a submit button https://github.com/alexcweiner/AWPL/blob/master/cgindex.apl (When ca

Re: [Bug-apl] Best way to compile after a SVN update

2015-05-21 Thread Blake McBride
Change: cp -rp ../gnu-apl.svn/* . To: cp -rp ../gnu-apl.svn/. . On Thu, May 21, 2015 at 9:50 AM, Louis Chretien wrote: > If i run the script, how come the resulting apl says “Unversioned > directory” as to the SVN number? > > > On 2015-05-13, at 07:20, Blake McBride wrote: > > Here is a sa

Re: [Bug-apl] Best way to compile after a SVN update

2015-05-21 Thread Louis Chretien
If i run the script, how come the resulting apl says “Unversioned directory” as to the SVN number? > On 2015-05-13, at 07:20, Blake McBride wrote: > > Here is a safer version: > > # > cd ~/Backup > rm -rf apl > mkdir apl > cd apl > cp -rp ../gnu-apl.svn/* . > ./configure > make > sudo make in