Custom Search
|
Date: December 31, 2006
From: Steve Knoblock <knoblock_private@xxxxxxxxxxxxxxxx>
I am having trouble with an upload form. I define the form and on submitted and valid, process an image, resizing and thumbnailing it. In the process, I create hashed directories based on the user id, and to create them cd foo mkdir bar cd bar mkdir baz like that. But after I come back from this sub, and try to render the confirmation page using $form->render() it fails on the template file not found. I know the template file is there with correct permissions and ownership and have traced the problem to this sub call. The confirm page renders before the call and fails after it. The only think I can think is C::FB or HTML::Template is depending on the original CWD and when I change it, it loses its place. Should I be saving the CWD and restoring it on return from the sub? Thanks, Steve _______________________________________________ FBusers mailing list FBusers@xxxxxxxxxxxxxxx http://www.formbuilder.org/mailman/listinfo/fbusers
Date: December 28, 2006
From: a256 b200 <a256b200@xxxxxxxxx>
Send instant messages to your online friends http://uk.messenger.yahoo.com
_______________________________________________ FBusers mailing list FBusers@xxxxxxxxxxxxxxx http://www.formbuilder.org/mailman/listinfo/fbusers
Date: December 28, 2006
From: "Rohit Bhute" <rbhute@xxxxxxxxxxxxx>
How can I control the layout of fields in FB? The form contains N rows
- each having a field for a serial number and brand.
This is how I generate the fields list:
for ($i = 1; $i <= $tyre_qty; $i++){
$fields[$#fields] = 'tyre_' . $i;
$fields[$#fields] = 'brand_' . $i;
}
I would like th tyre id and brand id for each $i to be on the same row.
_______________________________________________
FBusers mailing list
FBusers@xxxxxxxxxxxxxxx
http://www.formbuilder.org/mailman/listinfo/fbusers
Date: December 25, 2006
From: "Nate Wiger" <nwiger@xxxxxxxxx>
In-reply-to:
<1a9662e00612241747w1f18b9b3l328fec1790a7f84a@xxxxxxxxxxxxxx>
References:
<1a9662e00612241747w1f18b9b3l328fec1790a7f84a@xxxxxxxxxxxxxx>
FB->new(title => "Whatever") http://www.formbuilder.org/download/CGI-FormBuilder-3.0401/docs/CGI/FormBuilder.html#quick_reference On 12/24/06, just some bloke <allenjb1@xxxxxxxxx> wrote: > > Can I change the form title in the same way, or is it too late for > formbuilder to do it here? > _______________________________________________ > FBusers mailing list > FBusers@xxxxxxxxxxxxxxx > http://www.formbuilder.org/mailman/listinfo/fbusers > _______________________________________________ FBusers mailing list FBusers@xxxxxxxxxxxxxxx http://www.formbuilder.org/mailman/listinfo/fbusers
Date: December 25, 2006
From: "just some bloke" <allenjb1@xxxxxxxxx>
IN fb::Multi
Just as I can do
if ($multi->page == 2) {
$form->field(name => 'BB_BusinessName', label => 'Name of
Company/Trust', validate => 'VALUE', message => 'Company/Trust Name is
required', required => 1);
}
and override the defaults supplied in the form setup,
The question is...
Can I change the form title in the same way, or is it too late for
formbuilder to do it here?
_______________________________________________
FBusers mailing list
FBusers@xxxxxxxxxxxxxxx
http://www.formbuilder.org/mailman/listinfo/fbusers
Date: December 23, 2006
From: "Nate Wiger" <nwiger@xxxxxxxxx>
In-reply-to:
<200612231153.59611.andrew@xxxxxxxxxxx>
References:
<200612231153.59611.andrew@xxxxxxxxxxx>
On 12/22/06, Andrew Martin <andrew@xxxxxxxxxxx> wrote: > Hi > > I'm new to FormBuilder so please forgive me if this a stupid question. I want > to have a multiline text field. I can't see how to achieve this in the > documentation. Is it possible? You mean an HTML textarea input? $form->field(name => 'details', type => 'textarea', cols => 60, rows => 5) -Nate _______________________________________________ FBusers mailing list FBusers@xxxxxxxxxxxxxxx http://www.formbuilder.org/mailman/listinfo/fbusers
Date: December 23, 2006
From: Andrew Martin <andrew@xxxxxxxxxxx>
Hi I'm new to FormBuilder so please forgive me if this a stupid question. I want to have a multiline text field. I can't see how to achieve this in the documentation. Is it possible? Regards -- Andrew Martin _______________________________________________ FBusers mailing list FBusers@xxxxxxxxxxxxxxx http://www.formbuilder.org/mailman/listinfo/fbusers
Date: December 21, 2006
From: "just some bloke" <allenjb1@xxxxxxxxx>
the following
for $key ( $session->param() ) {
debug 0, "session->param($key) is $session->param('$key')";
}
produces the following line in the logs
(debug0) session->param(name) is
CGI::Session::File=HASH(0x8d84e0)->param('name') in the log
What is the best way to get the value of the name field out of the session?
_______________________________________________
FBusers mailing list
FBusers@xxxxxxxxxxxxxxx
http://www.formbuilder.org/mailman/listinfo/fbusers
Date: December 21, 2006
From: "just some bloke" <allenjb1@xxxxxxxxx>
Move along, nothing to see here...
$session->param('fieldname') is the answer...
Stooopid me....
On 12/21/06, just some bloke <allenjb1@xxxxxxxxx> wrote:
> given a fb::Multi based form using CGI::Session as per the
> FormBuilder::Multi POD
>
> What is the best way to access the prior 1 or 2 pages form elements content?
>
> Is there some sort of global space they are put?
>
> $form->field('fieldname') is erratic, and does not seem to be there 2
> pages on in the multi form.
>
> What I am saying is, based on the example script, how do I access
> prior (all previous) forms filled data?
>
> Sorry if I sound incoherent, but I never was able to express myself in
> english (native english speaker - go figure)
>
> TIA
>
> Aj
>
_______________________________________________
FBusers mailing list
FBusers@xxxxxxxxxxxxxxx
http://www.formbuilder.org/mailman/listinfo/fbusers
Date: December 20, 2006
From: "just some bloke" <allenjb1@xxxxxxxxx>
given a fb::Multi based form using CGI::Session as per the
FormBuilder::Multi POD
What is the best way to access the prior 1 or 2 pages form elements content?
Is there some sort of global space they are put?
$form->field('fieldname') is erratic, and does not seem to be there 2
pages on in the multi form.
What I am saying is, based on the example script, how do I access
prior (all previous) forms filled data?
Sorry if I sound incoherent, but I never was able to express myself in
english (native english speaker - go figure)
TIA
Aj
_______________________________________________
FBusers mailing list
FBusers@xxxxxxxxxxxxxxx
http://www.formbuilder.org/mailman/listinfo/fbusers
Date: December 19, 2006
From: "Nate Wiger" <nwiger@xxxxxxxxx>
In-reply-to:
<1a9662e00612182206u66cff7a2m6398c5c201876f00@xxxxxxxxxxxxxx>
References:
<1a9662e00612182206u66cff7a2m6398c5c201876f00@xxxxxxxxxxxxxx>
Yup, the correct patch is a fix to both Builtin.pm and Div.pm. I made these changes to trunk when I got your original email yesterday. They'll be rolled into 3.0501, which I would guess will be out early next year. -Nate On 12/18/06, just some bloke <allenjb1@xxxxxxxxx> wrote: > The problem with that patch, is that it only works for Builtin.pm. and > breaks things when you use other template styles. > > What is happening is that the header is generated twice, and this is > the only place I can find it being injected. > > So by removing the injection as per the patch I supplied, we remove > the second injection from builtin.pm, but remove all headers from > other template styles. > > Allen > _______________________________________________ > FBusers mailing list > FBusers@xxxxxxxxxxxxxxx > http://www.formbuilder.org/mailman/listinfo/fbusers > _______________________________________________ FBusers mailing list FBusers@xxxxxxxxxxxxxxx http://www.formbuilder.org/mailman/listinfo/fbusers
Date: December 19, 2006
From: "just some bloke" <allenjb1@xxxxxxxxx>
The problem with that patch, is that it only works for Builtin.pm. and breaks things when you use other template styles. What is happening is that the header is generated twice, and this is the only place I can find it being injected. So by removing the injection as per the patch I supplied, we remove the second injection from builtin.pm, but remove all headers from other template styles. Allen _______________________________________________ FBusers mailing list FBusers@xxxxxxxxxxxxxxx http://www.formbuilder.org/mailman/listinfo/fbusers
Date: December 18, 2006
From: "just some bloke" <allenjb1@xxxxxxxxx>
In-reply-to:
<1a9662e00612172207h3c472994q61dd0f8f0167d7e9@xxxxxxxxxxxxxx>
References:
<1a9662e00612172207h3c472994q61dd0f8f0167d7e9@xxxxxxxxxxxxxx>
On 12/18/06, just some bloke <allenjb1@xxxxxxxxx> wrote: > > The secret lies hidden in the man page for FomBuilder::Multi located at > http://www.formbuilder.org/download/CGI-FormBuilder-3.0401/docs/CGI/FormBuilder/Multi.html > > - what it shows is... > > if ($multi->page == 3) { > $form->field(name => 'same_as_billing', > > type => 'checkbox', > options => 'Yes', > jsclick => 'this.form.submit()'); > > Which, by doing a required=>1 or required=>0 in this routine for each page, > based on results from previous pages, we can make further fields required. > > } > I have this working where the Multi based form is 2 pages. If I try to refer to a form item from the first form from the 3rd form, it is undef. How can I access previous pages form items from local forms? Aj _______________________________________________ FBusers mailing list FBusers@xxxxxxxxxxxxxxx http://www.formbuilder.org/mailman/listinfo/fbusers
Date: December 18, 2006
From: "just some bloke" <allenjb1@xxxxxxxxx>
The following patch appears to RESOLVE the double header problem I
have been experiencing.
@@ -1447,7 +1447,9 @@
# dispatch to engine, prepend header
debug 1, "returning $tmpl->render($self->{prepare})";
- return $self->header . $tmpl->render($self->{prepare});
+ #removed the following line as it doubles up the html
header stuffs
+ #return $self->header . $tmpl->render($self->{prepare});
+ return $tmpl->render($self->{prepare});
}
# These routines should be moved to ::Mail or something since they're
rarely used
_______________________________________________
FBusers mailing list
FBusers@xxxxxxxxxxxxxxx
http://www.formbuilder.org/mailman/listinfo/fbusers
Date: December 18, 2006
From: "Nate Wiger" <nwiger@xxxxxxxxx>
Fieldsets, Catalyst support, table-free <div> rendering, and bugfixes. http://www.formbuilder.org/download/CGI-FormBuilder-3.05.tgz Happy Holidays, Nate _______________________________________________ FBusers mailing list FBusers@xxxxxxxxxxxxxxx http://www.formbuilder.org/mailman/listinfo/fbusers
Date: December 18, 2006
From: "just some bloke" <allenjb1@xxxxxxxxx>
In-reply-to:
<1a9662e00612180215w566b323cp15da73ef8f952693@xxxxxxxxxxxxxx>
References:
<1a9662e00612180215w566b323cp15da73ef8f952693@xxxxxxxxxxxxxx>
On 12/18/06, just some bloke <allenjb1@xxxxxxxxx> wrote: > was there any answer to this? > > I am now being hit by this, and while firefox is fine with it, IE borks. > I suspect this may be caused bu FB::Multi - maybe it is calling the header business twice - once for the meta form, and again for the individual pages? _______________________________________________ FBusers mailing list FBusers@xxxxxxxxxxxxxxx http://www.formbuilder.org/mailman/listinfo/fbusers
Date: December 18, 2006
From: "just some bloke" <allenjb1@xxxxxxxxx>
was there any answer to this? I am now being hit by this, and while firefox is fine with it, IE borks. _______________________________________________ FBusers mailing list FBusers@xxxxxxxxxxxxxxx http://www.formbuilder.org/mailman/listinfo/fbusers
Date: December 18, 2006
From: "Rohit Bhute" <rbhute@xxxxxxxxxxxxx>
I have to create cascaded popup menus or select lists - like shown here http://www.javascriptkit.com/javatutors/selectcontent2.shtml The contents will be prefectched from a database. Is it possible to do it in Formbuilder? Regards, Rohit _______________________________________________ FBusers mailing list FBusers@xxxxxxxxxxxxxxx http://www.formbuilder.org/mailman/listinfo/fbusers
Date: December 18, 2006
From: "just some bloke" <allenjb1@xxxxxxxxx>
Hi there
I am a newbie with Formbuilder, It is FANTASTIC - Good work
anyway
I have a rather large form, and fields farther down the form may depend on what the value of the field above it is.
ie:
Do you own a car? [ Yes/No ]
if Yes, then I want to make the following 5 fields, which are dependant on the first field, become Required, otherwise I do not want to have them even show up (if possible)
Is there a simple way to do this?
if not, how are people doing it?
if ($multi->page == 3) {
$form->field(name => 'same_as_billing',
type => 'checkbox',
options => 'Yes',
jsclick => 'this.form.submit()');
Which, by doing a required=>1 or required=>0 in this routine for each page, based on results from previous pages, we can make further fields required.
}_______________________________________________ FBusers mailing list FBusers@xxxxxxxxxxxxxxx http://www.formbuilder.org/mailman/listinfo/fbusers
Date: December 11, 2006
From: "Nate Wiger" <nwiger@xxxxxxxxx>
In-reply-to:
<20061211053643.GB26778@xxxxxxxxxxxxxxxxxxxxxxxx>
References:
<20061211053643.GB26778@xxxxxxxxxxxxxxxxxxxxxxxx>
Fixed; Text.pm was wrong too. Thanks Geoff. -Nate On 12/10/06, Geoff Simmons <gsimmons@xxxxxxxxxxxx> wrote: > Hi, > > Noticed a small error in the documentation for the 'engine' method in > CGI::FormBuilder::Template::TT2. It actually returns a Template object > (not a HTML::Template object). > > I've provided a patch inline. > > Geoff _______________________________________________ FBusers mailing list FBusers@xxxxxxxxxxxxxxx http://www.formbuilder.org/mailman/listinfo/fbusers
Date: December 11, 2006
From: Geoff Simmons <gsimmons@xxxxxxxxxxxx>
Hi, Noticed a small error in the documentation for the 'engine' method in CGI::FormBuilder::Template::TT2. It actually returns a Template object (not a HTML::Template object). I've provided a patch inline. Geoff Index: trunk/lib/CGI/FormBuilder/Template/TT2.pm =================================================================== --- trunk/lib/CGI/FormBuilder/Template/TT2.pm (revision 89) +++ trunk/lib/CGI/FormBuilder/Template/TT2.pm (working copy) @@ -95,7 +95,7 @@ =head2 engine -Returns a reference to the C<HTML::Template> object +Returns a reference to the C<Template> object =head2 prepare _______________________________________________ FBusers mailing list FBusers@xxxxxxxxxxxxxxx http://www.formbuilder.org/mailman/listinfo/fbusers
Date: December 08, 2006
From: "not your business" <allenjb1@xxxxxxxxx>
In-reply-to:
<1a9662e00612081408w1570641co9ee90d59f24ccd16@xxxxxxxxxxxxxx>
References:
<1a9662e00612080226k9df1602w4ba6e732911f9ba3@xxxxxxxxxxxxxx> <5c7f90850612081155m2dca2404iefcf31f044a7ad49@xxxxxxxxxxxxxx> <1a9662e00612081403u2c4cda05ga8f3bd691f331315@xxxxxxxxxxxxxx> <1a9662e00612081408w1570641co9ee90d59f24ccd16@xxxxxxxxxxxxxx>
move along, nothing to see here -
found the dependancies section in DATA::FormValidator
- must remember caffeine b4 emailing...
AjOn 12/9/06, not your business <allenjb1@xxxxxxxxx> wrote:On 12/9/06, Nate Wiger <nwiger@xxxxxxxxx> wrote:Glad you like FormBuilder - there are two issues here
1) Conditional validation: You could use a sub ref, or check out
Data::FormValidator, which is supported by FormBuilder. It supports
conditional validation.
You say Conditional Validation here.... - Just to help my 6am , pre coffee brain let me verify....
So this will help me to do Conditional requires? -
ie: Only require field COLOUR if CAR=YES
OR to say it another way
I dont care about the Colour field if CAR is NO, however if CAR is YES, then COLOR absolutely MUST to be filled in.
I suspect that because the field definition is done before the script runs, I might have to create multiple forms (without FormBuilder::Multi) which start at the top - ie asking all the Conditions on the First Page, and then based on those, send back the form they need?
eg:
page 1 asks
Do you have a car?
Do you have a bike?
Do you have a ball of string?
How Many Children do you have?
and then based on those answers, send back a form which asks the next lot of questions.
ie: Color of car
Color of Bike
Length of string
and 6 fields for the ages of the 6 children. (this one not so important)
I could not find anything in your EXCELLENT documentation which describes the best way to do this. I would prefer to allow Formbuilder to do it's work in keeping track of stuff as it does in FB::multi, than reinventing the wheel2) Not making them appear: This is a client browser issue, so you'll
have to use "jsclick" and point it to an group of fields to hide. What
I would do is wrap them in a fieldset, give that its own id, then use
display:none via CSS to hide that dynamically. Check out jquery.com
for its functions, specifically "toggle" and "show/hide" that will
save you alot of work.
This looks simple enough if I could just get point 1 working.
thanks again for one of the best documented perl modules i have ever seen!!!
_______________________________________________ FBusers mailing list FBusers@xxxxxxxxxxxxxxx http://www.formbuilder.org/mailman/listinfo/fbusers
Date: December 08, 2006
From: "not your business" <allenjb1@xxxxxxxxx>
In-reply-to:
<1a9662e00612081403u2c4cda05ga8f3bd691f331315@xxxxxxxxxxxxxx>
References:
<1a9662e00612080226k9df1602w4ba6e732911f9ba3@xxxxxxxxxxxxxx> <5c7f90850612081155m2dca2404iefcf31f044a7ad49@xxxxxxxxxxxxxx> <1a9662e00612081403u2c4cda05ga8f3bd691f331315@xxxxxxxxxxxxxx>
On 12/9/06, Nate Wiger <nwiger@xxxxxxxxx> wrote:Glad you like FormBuilder - there are two issues here
1) Conditional validation: You could use a sub ref, or check out
Data::FormValidator, which is supported by FormBuilder. It supports
conditional validation.
You say Conditional Validation here.... - Just to help my 6am , pre coffee brain let me verify....
So this will help me to do Conditional requires? -
ie: Only require field COLOUR if CAR=YES
OR to say it another way
I dont care about the Colour field if CAR is NO, however if CAR is YES, then COLOR absolutely MUST to be filled in.
I suspect that because the field definition is done before the script runs, I might have to create multiple forms (without FormBuilder::Multi) which start at the top - ie asking all the Conditions on the First Page, and then based on those, send back the form they need?
eg:
page 1 asks
Do you have a car?
Do you have a bike?
Do you have a ball of string?
How Many Children do you have?
and then based on those answers, send back a form which asks the next lot of questions.
ie: Color of car
Color of Bike
Length of string
and 6 fields for the ages of the 6 children. (this one not so important)
I could not find anything in your EXCELLENT documentation which describes the best way to do this. I would prefer to allow Formbuilder to do it's work in keeping track of stuff as it does in FB::multi, than reinventing the wheel2) Not making them appear: This is a client browser issue, so you'll
have to use "jsclick" and point it to an group of fields to hide. What
I would do is wrap them in a fieldset, give that its own id, then use
display:none via CSS to hide that dynamically. Check out jquery.com
for its functions, specifically "toggle" and "show/hide" that will
save you alot of work.
This looks simple enough if I could just get point 1 working.
thanks again for one of the best documented perl modules i have ever seen!!!
_______________________________________________ FBusers mailing list FBusers@xxxxxxxxxxxxxxx http://www.formbuilder.org/mailman/listinfo/fbusers
Date: December 08, 2006
From: "not your business" <allenjb1@xxxxxxxxx>
In-reply-to:
<5c7f90850612081155m2dca2404iefcf31f044a7ad49@xxxxxxxxxxxxxx>
References:
<1a9662e00612080226k9df1602w4ba6e732911f9ba3@xxxxxxxxxxxxxx> <5c7f90850612081155m2dca2404iefcf31f044a7ad49@xxxxxxxxxxxxxx>
Glad you like FormBuilder - there are two issues here
1) Conditional validation: You could use a sub ref, or check out
Data::FormValidator, which is supported by FormBuilder. It supports
conditional validation.
2) Not making them appear: This is a client browser issue, so you'll
have to use "jsclick" and point it to an group of fields to hide. What
I would do is wrap them in a fieldset, give that its own id, then use
display:none via CSS to hide that dynamically. Check out jquery.com
for its functions, specifically "toggle" and "show/hide" that will
save you alot of work.
_______________________________________________ FBusers mailing list FBusers@xxxxxxxxxxxxxxx http://www.formbuilder.org/mailman/listinfo/fbusers
Date: December 08, 2006
From: "Nate Wiger" <nwiger@xxxxxxxxx>
In-reply-to:
<1a9662e00612080226k9df1602w4ba6e732911f9ba3@xxxxxxxxxxxxxx>
References:
<1a9662e00612080226k9df1602w4ba6e732911f9ba3@xxxxxxxxxxxxxx>
Glad you like FormBuilder - there are two issues here 1) Conditional validation: You could use a sub ref, or check out Data::FormValidator, which is supported by FormBuilder. It supports conditional validation. 2) Not making them appear: This is a client browser issue, so you'll have to use "jsclick" and point it to an group of fields to hide. What I would do is wrap them in a fieldset, give that its own id, then use display:none via CSS to hide that dynamically. Check out jquery.com for its functions, specifically "toggle" and "show/hide" that will save you alot of work. -Nate On 12/8/06, not your business <allenjb1@xxxxxxxxx> wrote: > Hi there > > I am a newbie with Formbuilder, It is FANTASTIC - Good work > > anyway > > I have a rather large form, and fields farther down the form may depend on > what the value of the field above it is. > > ie: > > Do you own a car? [ Yes/No ] > if Yes, then I want to make the following 5 fields, which are dependant on > the first field, become Required, otherwise I do not want to have them even > show up (if possible) > > Is there a simple way to do this? > > if not, how are people doing it? > > > if it is covered anyware, i have looked most of this afternoon without > finding it, maybe you could point me to it? > > thanks > > _______________________________________________ > FBusers mailing list > FBusers@xxxxxxxxxxxxxxx > http://www.formbuilder.org/mailman/listinfo/fbusers > > _______________________________________________ FBusers mailing list FBusers@xxxxxxxxxxxxxxx http://www.formbuilder.org/mailman/listinfo/fbusers
Date: December 08, 2006
From: "not your business" <allenjb1@xxxxxxxxx>
_______________________________________________ FBusers mailing list FBusers@xxxxxxxxxxxxxxx http://www.formbuilder.org/mailman/listinfo/fbusers
Date: December 07, 2006
From: Guy Parker <gparker@xxxxxxxxxxxxxxxxx>
In-reply-to:
<20061206105213.M57076@xxxxxxxxxxxxxxxx>
References:
<E6B05BFE-7DD3-41A3-973B-11E2916A7522@xxxxxxxxxxxxxxxxx> <20061206105213.M57076@xxxxxxxxxxxxxxxx>
>> >> I want to use a hashref for a validate option so I can set different >> validation for javascript and perl. It's more convenient for me to >> apply this via the field method rather than the new method. The >> documentation implies that the field method only really supports a >> standard regex but I've found that a hashref works just fine too. So, >> the question is: is there any reason I should not use a hasref for >> the validate option of the field method? >> > > That worked fine for me, but if you do it in pieces after some > logic, you have to get the value first, add to that hash, then > assign back. Thanks Mark. I'm not sure I follow what you mean exactly. Could you expand just a little? Guy _______________________________________________ FBusers mailing list FBusers@xxxxxxxxxxxxxxx http://www.formbuilder.org/mailman/listinfo/fbusers
Date: December 06, 2006
From: Mark Hedges <hedges@xxxxxxxx>
In-reply-to:
<E6B05BFE-7DD3-41A3-973B-11E2916A7522@xxxxxxxxxxxxxxxxx>
References:
<E6B05BFE-7DD3-41A3-973B-11E2916A7522@xxxxxxxxxxxxxxxxx>
> > I want to use a hashref for a validate option so I can set different > validation for javascript and perl. It's more convenient for me to > apply this via the field method rather than the new method. The > documentation implies that the field method only really supports a > standard regex but I've found that a hashref works just fine too. So, > the question is: is there any reason I should not use a hasref for > the validate option of the field method? > That worked fine for me, but if you do it in pieces after some logic, you have to get the value first, add to that hash, then assign back. Mark _______________________________________________ FBusers mailing list FBusers@xxxxxxxxxxxxxxx http://www.formbuilder.org/mailman/listinfo/fbusers