Again, this is RHEL. Perl 5.8.0. mod_perl version 1.29 (I think). Apache 1.3.29. I ran h2ph several times, but I keep getting errors like below. I'd *really*...
... Well .... how would I know? %c( I don't understand exactly what h2ph is doing, and I don't know how to debug this. I suppose I could try using Perl 5.6.1....
I'm getting rusty with bOP! :c( Trying to build a simple workflow management system for my PaintedSnapshot site back-end. I want a list form where I can define...
... It tells you the line in /usr/lib/.... so edit that file? Try starting with: perl -e 'require "syscall.ph";' And work from there. ... I was going to get...
... What does this do? ... You might want to look at Bivio::Biz::ExpandableListFormModel. You need to have an EMPTY_KEY_VALUE which makes sense, but that's...
... Loads the list of tasks associated with an "application" workflow. Currently, the table is empty. But even if I put a dummy entry manually in there using...
... No, and that's good. initial_state isn't in the list, but something outside, no? I don't have enough context to know what the problem is. You are getting...
... Correction. It is in the list: visible => [ { name => 'delete_check', type => 'Boolean', constraint => 'NONE', in_list => 1, }, map({ { name => $_, in_list...
Chalk this one up to "big fat DUH!!!" My view consisted of a Grid. No Table!! =:co I think this head cold I have has really knocked me out more than I...
Revision 2.13 2004/03/09 21:31:34 nagler * Bivio::Biz::ExpandableListFormModel saves itself on request instead of just rows. Allows all fields to be saved...
... I've found it to be more logical to get the selected button from the form properties, rather than the method parameter in execute_ok/cancel/other. This way...
I seem to be having a HELL of an easier time installing bOP on FreeBSD vs my experience with Red Hat Enterprise. Understand that when *I* say "install bOP" I...
I think we finally cleaned up compare/is_equal's handling of undef. The code is simpler. We also added a lot more unit tests to verify this is the case. ...
I've hit this a couple of times now, so I thought I'd share. In Perl 5.6.1, the following will generate an error: sort( {... To avoid the error, you have to...
david farber
david@...
Mar 24, 2004 7:31 pm
56
... I couldn't reproduce this. It would be good to test on 5.8, too. Rob...
Actually, it looks like it is not just sort, but grep and map as well--I had the same problem with grep today too. All the pieces of code that I've hit this...
david farber
david@...
Mar 24, 2004 11:26 pm
58
... I did one more test, and even the {} don't matter--I get the error with @$list. david...
david farber
david@...
Mar 24, 2004 11:30 pm
59
... The problem is {} being interpreted as a block. If you remove the () from the sort, it works fine. It's very surprising Perl treats whitespace in this...
... Er, it is a block. And sort, unlike map and grep, only takes blocks. My guess is that when the perl parser sees "sort(\n" it guesses sort LIST. In other...
david farber
david@...
Mar 25, 2004 7:55 pm
61
Revision 2.19 2004/04/08 20:20:39 nagler * Bivio::UI::Task->parse_uri uses $r->hostname if available and if the facade isn't explicitly set with /*<facade> *...
... Actually, it is the @x->[] form that is deprecated. @x[] should only give you a warning saying that $x[] is the better write @x[]. david...
david farber
david@...
Apr 9, 2004 6:37 pm
63
Revision 2.20 2004/04/16 03:42:28 nagler * Bivio::ShellUtil->main will return the result as a string_ref if called from an array context and there is output....
One of the drawbacks of the current implementation of bOP is that you have to restart the server if you change model or system code. One way to get around...
david farber
david@...
Apr 20, 2004 10:51 pm
65
... neat little trick. I would *really* like it if bOP was dynamic the way Zope is ......