Skip Menu |

This queue is for tickets about the App-XUL CPAN distribution.

Report information
The Basics
Id: 66579
Status: open
Priority: 0/
Queue: App-XUL

People
Owner: KITOMER [...] cpan.org
Requestors: metaperl@gmail.com (no email address)
Cc:
AdminCc:

Bug Information
Severity: Important
Broken in: (no value)
Fixed in: (no value)



Subject: SYNOPSIS example has syntactic and parametric bug
There is a semicolon in the nested parentheses in the SYNOPSIS example that causes it to fail: [thequietcenter@ubuntu ~/prg/xul/first] diff -u first.p* --- first.pl 2011-03-12 16:37:53.654370995 -0500 +++ first.pl~ 2011-03-12 16:32:33.169947970 -0500 @@ -11,8 +11,8 @@ Button(label => 'click', oncommand => sub { ID('container')->style('background:red'); }), - ) + ); ) ); Next, even after fixing that, the utilspath is not provided to the bundle call, causing it to fail: [thequietcenter@ubuntu ~/prg/xul/first] perl first.pl Error: no utils path given - bundle(utilspath => <string>)
Thank you for the bug report! I will fix this issue soon. For now, here is a quick fix: - download the App-XUL archive from CPAN - extract the archive - use the folder "misc" inside the archive as the urilspath: e.g. bundle(utilspath => "/path/to/folder/misc", ...) -Tom