Search the web
Sign In
New User? Sign Up
Bivio-bOP · bivio OLTP Platform Discussion (bOP)
? 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.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 1 - 30 of 801   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1
We ran across a problem today with an acceptance test. The code looked roughly like: test_setup('BlaProject'); follow_link('Reports'); foreach my $year...
Rob Nagler
robnagler
Offline Send Email
Jan 24, 2004
3:07 am
2
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...
Rob Nagler
robnagler
Offline Send Email
Jan 31, 2004
4:54 am
3
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....
Tom Vilot
tom@...
Send Email
Feb 4, 2004
8:14 pm
4
... 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...
Rob Nagler
robnagler
Offline Send Email
Feb 5, 2004
3:16 am
5
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...
david farber
david@...
Send Email
Feb 9, 2004
9:56 pm
6
... 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...
Rob Nagler
robnagler
Offline Send Email
Feb 9, 2004
10:18 pm
7
... 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...
david farber
david@...
Send Email
Feb 9, 2004
10:43 pm
8
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...
david farber
david@...
Send Email
Feb 9, 2004
10:58 pm
9
... 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...
Paul Moeller
moellep
Offline Send Email
Feb 9, 2004
11:04 pm
10
_execute_init is not being called before internal_pre_execute in all cases. This means the list model isn't always available. Rob...
Rob Nagler
robnagler
Offline Send Email
Feb 10, 2004
1:47 pm
11
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...
Rob Nagler
robnagler
Offline Send Email
Feb 10, 2004
1:47 pm
12
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...
david farber
david@...
Send Email
Feb 13, 2004
5:45 pm
13
... Try: Grid([[ [$pop, vs_form_field('SomeForm.some_field')], ]]); But I think you really want: Grid([[ FormField('SomeForm.some_field'), ]]); vs_form_field...
Rob Nagler
robnagler
Offline Send Email
Feb 13, 2004
6:34 pm
14
Here's another square bracket oddity. I understand how the expression for the following row control works: Link('Download campaign statistics in spreadsheet', ...
david farber
david@...
Send Email
Feb 18, 2004
3:51 am
15
... [snip] ... The semantics of ['->bla'] and [sub {}] say that the rest of the widget value is unrolled and passed as arguments to the method or closure. By...
Rob Nagler
robnagler
Offline Send Email
Feb 18, 2004
3:25 pm
16
When I say: internal_initialize( ... where => [ 'RealmUser.user_id', '=', 'Email.realm_id', 'AND', 'RealmOwner.realm_id', '=', 'RealmUser.realm_id' ], it...
david farber
david@...
Send Email
Feb 19, 2004
12:56 am
17
... 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...
Rob Nagler
robnagler
Offline Send Email
Feb 19, 2004
2:01 am
18
... 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...
david farber
david@...
Send Email
Feb 19, 2004
3:55 am
19
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?...
Tom Vilot
tom@...
Send Email
Feb 19, 2004
5:53 am
20
... This might work: map([ map(+{ name => $_, in_select => 0, }, @$_), ], ['RealmUser.user_id', 'Email.realm_id'], ['RealmOwner.realm_id',...
Rob Nagler
robnagler
Offline Send Email
Feb 19, 2004
1:28 pm
21
... 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...
Rob Nagler
robnagler
Offline Send Email
Feb 19, 2004
1:31 pm
22
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...
david farber
david@...
Send Email
Feb 20, 2004
4:09 am
23
... 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',...
Paul Moeller
moellep
Offline Send Email
Feb 20, 2004
4:49 am
24
... 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...
david farber
david@...
Send Email
Feb 20, 2004
4:36 pm
25
... 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...
Rob Nagler
robnagler
Offline Send Email
Feb 20, 2004
9:18 pm
26
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...
david farber
david@...
Send Email
Feb 20, 2004
11:11 pm
27
... 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...
Rob Nagler
robnagler
Offline Send Email
Feb 21, 2004
1:59 pm
28
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...
Rob Nagler
robnagler
Offline Send Email
Feb 24, 2004
11:59 am
29
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...
Tom Vilot
tvilot
Offline Send Email
Feb 24, 2004
7:28 pm
30
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...
Tom Vilot
tvilot
Offline Send Email
Feb 25, 2004
6:03 am
Messages 1 - 30 of 801   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

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