cgi-wml-devel Mailing List for CGI::WML
Status: Beta
Brought to you by:
amurren
You can subscribe to this list here.
2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2004 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: <ben...@id...> - 2004-05-22 12:54:53
|
Dear Open Source developer I am doing a research project on "Fun and Software Development" in which I kindly invite you to participate. You will find the online survey under http://fasd.ethz.ch/qsf/. The questionnaire consists of 53 questions and you will need about 15 minutes to complete it. With the FASD project (Fun and Software Development) we want to define the motivational significance of fun when software developers decide to engage in Open Source projects. What is special about our research project is that a similar survey is planned with software developers in commercial firms. This procedure allows the immediate comparison between the involved individuals and the conditions of production of these two development models. Thus we hope to obtain substantial new insights to the phenomenon of Open Source Development. With many thanks for your participation, Benno Luthiger PS: The results of the survey will be published under http://www.isu.unizh.ch/fuehrung/blprojects/FASD/. We have set up the mailing list fa...@we... for this study. Please see http://fasd.ethz.ch/qsf/mailinglist_en.html for registration to this mailing list. _______________________________________________________________________ Benno Luthiger Swiss Federal Institute of Technology Zurich 8092 Zurich Mail: benno.luthiger(at)id.ethz.ch _______________________________________________________________________ |
From: Craig T. <ct...@qu...> - 2003-06-16 20:40:27
|
Hi, I'm trying to get the compressed size of my data, using the example from the man page for CGI::WML but I can't figure out how to set the $buffer, to get a valid size: my $wml_buffer; my $buffer; print $wml_cgi->header(), $wml_cgi->start_wml(), $wml_cgi->card(-id=>"first_card", -title=>"Press Release", -content=>$content), $wml_cgi->end_wml(); print $wml_cgi->wml_to_wmlc(-wml=>$wml_buffer, -errorcontext=>2); my ($page_title,$content) = $wml_cgi->html_to_wml($buffer); my $size = length ($wml_cgi->wml_to_wmlc(-wml=>$buffer, -errorcontext=>0)); print STDERR "\nsize of compressed record: $size\n"; It seems like the $buffer and $wml_buffer are being used before they are set with a value. Thanks, Craig -- Politics is supposed to be the second-oldest profession. I have come to realize that it bears a very close resemblance to the first. --Ronald Reagan |