Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

Bivio-bOP · bivio OLTP Platform Discussion (bOP)

The Yahoo! Groups Product Blog

Check it out!

Group Information

  • Members: 42
  • Category: Open Source
  • Founded: Jan 22, 2004
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Messages

Advanced
Messages Help
Messages 1 - 30 of 808   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
1 Rob Nagler
robnagler Send Email
Jan 24, 2004
3:07 am
We ran across a problem today with an acceptance test. The code looked roughly like: test_setup(&#39;BlaProject&#39;); follow_link('Reports&#39;); foreach my $year...
2 Rob Nagler
robnagler Send Email
Jan 31, 2004
4:54 am
Revision 2.4 2004/01/31 04:45:35 nagler * Bivio::SQL::Connection::Postgres handles SELECT.*AS with outer (left) joins * Bivio::SQL::Support improved some die...
3 Tom Vilot
tom@... Send Email
Feb 4, 2004
8:14 pm
Has anyone tried running bOP on SuSE 9? I have SuSE and I'm thinking it's time to move to it, in place of RedHat....
4 Rob Nagler
robnagler Send Email
Feb 5, 2004
3:16 am
... It's been on my list of things to do. I'm typing on a SUSE 9.0 desktop. You should be able to simply install the tar.gz file. I don't think 5.8 broke...
5 david farber
david@... Send Email
Feb 9, 2004
9:56 pm
Rob - It is my understanding that we added the want_only_one_order_by option to ListQuery because extraneous columns in the ORDER BY clause was degrading...
6 Rob Nagler
robnagler Send Email
Feb 9, 2004
10:18 pm
... Correct. ... Great name! ... As I looked at the code in SQL::Support for another reason, I realize how stupid it is to cache all this stuff. I think this...
7 david farber
david@... Send Email
Feb 9, 2004
10:43 pm
... It definitely belongs on ListQuery, but I still think it would be worthwhile to be able to originate the option in internal_initialize--it localizes...
8 david farber
david@... Send Email
Feb 9, 2004
10:58 pm
There doesn't appear to be a Bivio::UI::HTML::Widget that lets you select multiple values from a list. Am I missing something? david...
9 Paul Moeller
moellep Send Email
Feb 9, 2004
11:04 pm
... I think the HTML multi-select lists are really kludgy. I don't know of any real sites which use them. Using ListFormModel with a checkbox is easier for...
10 Rob Nagler
robnagler Send Email
Feb 10, 2004
1:47 pm
_execute_init is not being called before internal_pre_execute in all cases. This means the list model isn't always available. Rob...
11 Rob Nagler
robnagler Send Email
Feb 10, 2004
1:47 pm
When you test a task with b-test task MY_TASK and there's a form_model on the task, it doesn't get listed as the primary form. UserLoginForm is being executed...
12 david farber
david@... Send Email
Feb 13, 2004
5:45 pm
I'm still getting tripped up a lot with views. I understand that I've still got a lot to learn in this area--I've only just internalized the whole square...
13 Rob Nagler
robnagler Send Email
Feb 13, 2004
6:34 pm
... Try: Grid([[ [$pop, vs_form_field('SomeForm.some_field&#39;)], ]]); But I think you really want: Grid([[ FormField(&#39;SomeForm.some_field&#39;), ]]); vs_form_field...
14 david farber
david@... Send Email
Feb 18, 2004
3:51 am
Here's another square bracket oddity. I understand how the expression for the following row control works: Link('Download campaign statistics in spreadsheet&#39;, ...
15 Rob Nagler
robnagler Send Email
Feb 18, 2004
3:25 pm
... [snip] ... The semantics of ['->bla&#39;] and [sub {}] say that the rest of the widget value is unrolled and passed as arguments to the method or closure. By...
16 david farber
david@... Send Email
Feb 19, 2004
12:56 am
When I say: internal_initialize( ... where => [ 'RealmUser.user_id&#39;, '=', 'Email.realm_id', 'AND', 'RealmOwner.realm_id&#39;, '=', 'RealmUser.realm_id&#39; ], it...
17 Rob Nagler
robnagler Send Email
Feb 19, 2004
2:01 am
... Feature. The mapping only knows about what you tell it about in the rest of the config in internal_initialize. This prevents mapping what you don't...
18 david farber
david@... Send Email
Feb 19, 2004
3:55 am
... This isn't an option because I'm trying to do a SELECT DISTINCT and I want to keep these values out of the SELECT clause. david...
19 Tom Vilot
tom@... Send Email
Feb 19, 2004
5:53 am
Considering a new server. One of the servers I am looking at comes with Apache 2.0.46. Will bOP run with Apache 2.0?...
20 Rob Nagler
robnagler Send Email
Feb 19, 2004
1:28 pm
... This might work: map([ map(+{ name => $_, in_select => 0, }, @$_), ], ['RealmUser.user_id&#39;, 'Email.realm_id'], ['RealmOwner.realm_id&#39;,...
21 Rob Nagler
robnagler Send Email
Feb 19, 2004
1:31 pm
... Maybe. bOP is loosely coupled with Apache so if it doesn't, it should be easy to fix. You might try it and see what happens. The mod_perl 2.0 APIs are...
22 david farber
david@... Send Email
Feb 20, 2004
4:09 am
Here's a feature I'd like to see. When I define a form field that uses a Select in a view, I'd like to be able to pass it an array of column names in the...
23 Paul Moeller
moellep Send Email
Feb 20, 2004
4:49 am
... How about allowing list_display_field to be a Widget, so you could render the items however you like, ex: list_display_field => Join([ ['Model.PersonList&#39;,...
24 david farber
david@... Send Email
Feb 20, 2004
4:36 pm
... Excellent--and we should extend that to the display/label fields of the other form widgets too. ... I've done that too, but last night I was looking at a...
25 Rob Nagler
robnagler Send Email
Feb 20, 2004
9:18 pm
... Would unsafe_render_value do the right thing? I think all of the widgets should be using unsafe_render_value (or render_attr, etc), and not rendering...
26 david farber
david@... Send Email
Feb 20, 2004
11:11 pm
Do I need a hall pass to go to the bathroom too? # _assert_class_name(string class) # # Ensures that the class conforms to the naming conventions. # sub...
27 Rob Nagler
robnagler Send Email
Feb 21, 2004
1:59 pm
... The objection you are making (confirmed off list :-) is that it is Wrong to enforce naming conventions in code. Andy mentioned that he'd like to know the...
28 Rob Nagler
robnagler Send Email
Feb 24, 2004
11:59 am
NOTE: This release contains changes to the automatic login redirect and widget values, which may affect your application. Read on: Revision 2.9 2004/02/24...
29 Tom Vilot
tvilot Send Email
Feb 24, 2004
7:28 pm
Attempting to install bOP on RedHat Enterprise. My first problem is CPAN, installing Bundle::Apache. The first problem I am encountering is that it appears I...
30 Tom Vilot
tvilot Send Email
Feb 25, 2004
6:03 am
If this is all too much, I suppose I could go without Apache 2.0. But .... I can install Apache 2.0 from source. I can install mod_perl 1.99 from source. But...
Messages 1 - 30 of 808   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

Copyright © 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines NEW - Help