<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:syn="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/">
  <channel rdf:about="http://blog.gmane.org/gmane.comp.java.openlaszlo.user">
    <title>gmane.comp.java.openlaszlo.user</title>
    <link>http://blog.gmane.org/gmane.comp.java.openlaszlo.user</link>
    <description/>
    <syn:updatePeriod>hourly</syn:updatePeriod>
    <syn:updateFrequency>1</syn:updateFrequency>
    <syn:updateBase>1901-01-01T00:00+00:00</syn:updateBase>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.java.openlaszlo.user/5063"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.java.openlaszlo.user/5062"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.java.openlaszlo.user/5061"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.java.openlaszlo.user/5060"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.java.openlaszlo.user/5059"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.java.openlaszlo.user/5058"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.java.openlaszlo.user/5057"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.java.openlaszlo.user/5056"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.java.openlaszlo.user/5055"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.java.openlaszlo.user/5054"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.java.openlaszlo.user/5053"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.java.openlaszlo.user/5052"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.java.openlaszlo.user/5051"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.java.openlaszlo.user/5050"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.java.openlaszlo.user/5049"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.java.openlaszlo.user/5048"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.java.openlaszlo.user/5047"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.java.openlaszlo.user/5046"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.java.openlaszlo.user/5045"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.java.openlaszlo.user/5044"/>
      </rdf:Seq>
    </items>
    <image rdf:resource="http://gmane.org/img/gmane-25t.png"/>
    <textinput rdf:resource=""/>
  </channel>
  <image rdf:about="http://gmane.org/img/gmane-25t.png">
    <title>Gmane</title>
    <url>http://gmane.org/img/gmane-25t.png</url>
    <link>http://gmane.org</link>
  </image>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.java.openlaszlo.user/5063">
    <title>Re: cannot set text color of a dynamically generated&lt;text&gt;</title>
    <link>http://permalink.gmane.org/gmane.comp.java.openlaszlo.user/5063</link>
    <description>Ah, well,

In my experience color names are specified using 0x?????? for colors  
in tag attributes, and you seem to be using #?????? sucessfully which  
is not my experience. Regardless, try removing the '#' from the  
oninit handler, to get:

&lt;handler name="oninit" args=""&gt;
&lt;![CDATA[
/* this text color is black !! */
textComponent = new
lz.text(this,{x:"10",y:"35",fgcolor:"FFFFFF",fontsize:"18"});
textComponent.setText("Test");
]]&gt;
&lt;/handler&gt;

see if that helps.

On Aug 29, 2008, at 6:29 AM, Marc Bachstein wrote:


</description>
    <dc:creator>James Robey</dc:creator>
    <dc:date>2008-08-29T18:20:06</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.java.openlaszlo.user/5062">
    <title>cannot set text color of a dynamically generated&lt;text&gt;</title>
    <link>http://permalink.gmane.org/gmane.comp.java.openlaszlo.user/5062</link>
    <description>Hello,

I cannot set the text color of a &lt;text&gt; component, which is created
dynamically. In DHTML runtime it works. SWF8 runtime fails.

&lt;canvas&gt;
&lt;view name="mainView" width="800" height="300" bgcolor="#DDDDDD"&gt;
&lt;!-- this text color is white --&gt;
&lt;text x="10" y="10" fgcolor="#FFFFFF"
fontsize="18"&gt;Test&lt;/text&gt;

&lt;handler name="oninit" args=""&gt;&lt;![CDATA[
/* this text color is black !! */
textComponent = new
lz.text(this,{x:"10",y:"35",fgcolor:"#FFFFFF",fontsize:"18"});
textComponent.setText("Test");
]]&gt;
&lt;/handler&gt;
&lt;/view&gt;
&lt;/canvas&gt;

Does anybody know a work around for this?

Kind Regards,
Marc



</description>
    <dc:creator>Marc Bachstein</dc:creator>
    <dc:date>2008-08-29T13:29:42</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.java.openlaszlo.user/5061">
    <title>Re: absolute x,y (relative to canvas)</title>
    <link>http://permalink.gmane.org/gmane.comp.java.openlaszlo.user/5061</link>
    <description>Andy Humphries escreveu:
Ouch! on the nail, thanks Andy.

LzView.getAttributeRelative will do the job.

I just wrote something like this, but I think it has the same bug as 3.3:

  &lt;method name="getGlobal" args="obj,attr"&gt;
    var rv = obj[attr];
    while(true) {
      if(obj instanceof lz.canvas) {
        return(rv);
      }
      obj = obj.parent;
      rv += obj[attr];
    }
  &lt;/method&gt;




</description>
    <dc:creator>Paulo Scardine</dc:creator>
    <dc:date>2008-08-27T18:07:57</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.java.openlaszlo.user/5060">
    <title>Re: absolute x,y (relative to canvas)</title>
    <link>http://permalink.gmane.org/gmane.comp.java.openlaszlo.user/5060</link>
    <description>You can use:

yourView.getAttributeRelative('x',canvas);
yourView.getAttributeRelative('y',canvas);

Details of getAttributeRelative are in reference documentation for view.
There is a bug (at version 3.3) in which this does not return the
correct answer if there is a scaled view in "yourView" hierarchy.

Cheers,

Andy

-----Original Message-----
From: laszlo-user-bounces-qwsyeSSt21a05dI2w8foGA&lt; at &gt;public.gmane.org
[mailto:laszlo-user-bounces-qwsyeSSt21a05dI2w8foGA&lt; at &gt;public.gmane.org] On Behalf Of Paulo Scardine
Sent: 27 August 2008 15:05
To: laszlo-user-qwsyeSSt21a05dI2w8foGA&lt; at &gt;public.gmane.org
Subject: [Laszlo-user] absolute x,y (relative to canvas)

Hi,

Is there any way to know the absolute x and y canvas coordinates of a 
view whose parent is not the canvas without traversing down the parents 
hierarchy?

Thanks in advance,
--
Paulo


</description>
    <dc:creator>Andy Humphries</dc:creator>
    <dc:date>2008-08-27T15:08:04</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.java.openlaszlo.user/5059">
    <title>Re: absolute x,y (relative to canvas)</title>
    <link>http://permalink.gmane.org/gmane.comp.java.openlaszlo.user/5059</link>
    <description>In Flash, there is a movieclip localToGlobal method, which might work if you
called it on the movieclip resource of a view. This would be a Flash
runtime-specific solution though.




On Wed, Aug 27, 2008 at 10:05 AM, Paulo Scardine &lt;paulo-f6gUObd6t6Q39yzSjRtAkw&lt; at &gt;public.gmane.org&gt;wrote:




</description>
    <dc:creator>Henry Minsky</dc:creator>
    <dc:date>2008-08-27T14:15:45</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.java.openlaszlo.user/5058">
    <title>absolute x,y (relative to canvas)</title>
    <link>http://permalink.gmane.org/gmane.comp.java.openlaszlo.user/5058</link>
    <description>Hi,

Is there any way to know the absolute x and y canvas coordinates of a 
view whose parent is not the canvas without traversing down the parents 
hierarchy?

Thanks in advance,
--
Paulo

</description>
    <dc:creator>Paulo Scardine</dc:creator>
    <dc:date>2008-08-27T14:05:20</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.java.openlaszlo.user/5057">
    <title>problems with &lt;html&gt; component in IE 7 (DHTML runtime)</title>
    <link>http://permalink.gmane.org/gmane.comp.java.openlaszlo.user/5057</link>
    <description>Hello,

in my OL-application I display HTML in two tabpanes. In Firefox (DHTML
runtime) it almost works perfectly. But in IE 7 (DHTML runtime) the
application does not start at all.

Does anyone of you have an idea why the application does not start with IE 7
(DHTMl runtime)?

Kind Regards,
Marc

------------

This is the code:

&lt;canvas debug="true" &gt;
&lt;class name="HTMLViews"  
   extends="view" bgcolor="#DDDDDD" width="${parent.width-300}"
height="${parent.height-40}"&gt;

&lt;attribute name="HTML1" type="string" value="" /&gt;
&lt;attribute name="HTML2" type="string" value="" /&gt;

&lt;attribute name="_jsflag" value="false" type="boolean" /&gt;

&lt;method name="_setIframeContent" args="iframeID, content"
Debug.write("content="+content);
if (!this._jsflag) {
var js = "document.__seticontent = function
(id, s) {"
+ "var
fr=document.getElementById(id);"
+ "if (!lz.embed.browser['isIE']) fr
= fr.contentWindow;"
+ "fr.document.body.innerHTML=s;}";
LzBrowser.loadJS(js);
this._jsflag = true;
}
LzBrowser.callJS("document.__seticontent", false,
iframeID, content);
]]&gt;
&lt;/method&gt;

&lt;method name="setTexts" args="myHTML1,myHTML2"&gt;&lt;![CDATA[

try {
/* set HTML1 */
HTML1 = myHTML1;
Debug.write("HTML1="+HTML1);
var theiframeID =
this.tabs.HTMLTabs.HTML1Tabpane.myInnerView.myText.iframeid;
this._setIframeContent(theiframeID, HTML1);

this.tabs.HTMLTabs.HTML1Tabpane.myInnerView.myText.__updatepos();

/* set HTML2 */
HTML2 = myHTML2;
Debug.write("HTML2="+HTML2);
var theiframeID =
this.tabs.HTMLTabs.HTML2Tabpane.myInnerView.myText.iframeid;
this._setIframeContent(theiframeID, HTML2);

this.tabs.HTMLTabs.HTML2Tabpane.myInnerView.myText.__updatepos();


} catch (e) {
alert(e);
}
]]&gt;
&lt;/method&gt;

&lt;method name="changeVisibility"&gt;&lt;![CDATA[
if (parent.visible==true) {
parent.setVisible(false);
// work-around for flash, so that the the
edittext field is clickable

this.tabs.HTMLTabs.HTML1Tabpane.myInnerView.myText.setAttribute('visible',fa
lse);

this.tabs.HTMLTabs.HTML1Tabpane.myInnerView.myText.init();

this.tabs.HTMLTabs.HTML2Tabpane.myInnerView.myText.setAttribute('visible',fa
lse);

this.tabs.HTMLTabs.HTML2Tabpane.myInnerView.myText.init();
} else {
parent.setVisible(true);
// work-around for flash, so that the the
edittext field is clickable

this.tabs.HTMLTabs.HTML1Tabpane.myInnerView.myText.setAttribute('visible',tr
ue);

this.tabs.HTMLTabs.HTML1Tabpane.myInnerView.myText.init();

this.tabs.HTMLTabs.HTML2Tabpane.myInnerView.myText.setAttribute('visible',tr
ue);

this.tabs.HTMLTabs.HTML2Tabpane.myInnerView.myText.init();
}
]]&gt;
&lt;/method&gt;

&lt;view name="tabs" height="${parent.height}"
width="${parent.width}" x="300"&gt;
&lt;tabs name="HTMLTabs" y="2" x="0"
_contentWidth="${parent.width-20}"
  _contentHeight="${parent.height-35}"
visible="true"&gt;

  &lt;!-- HTML1Tabpane --&gt;
  &lt;tabpane name="HTML1Tabpane"
bgcolor="#ffffff" text="HTML1"
    width="${parent.width}"
height="${parent.height-30}"&gt;

&lt;view name="myInnerView" x="5" y="0"
width="${parent.width-15}" height="${parent.height-7}"&gt;
&lt;html name="myText"
width="${parent.width}" height="${parent.height}" scrollbars="true"
visible="true" /&gt;
&lt;/view&gt;
&lt;/tabpane&gt;

  &lt;!-- HTML2Tabpane --&gt;
  &lt;tabpane name="HTML2Tabpane"
bgcolor="#ffffff" text="HTML2"
    width="${parent.width}"
height="${parent.height-30}"&gt;
  
&lt;view name="myInnerView" x="5" y="5"
width="${parent.width-15}" height="${parent.height-12}"&gt;
&lt;html name="myText"
width="${parent.width}" height="${parent.height}" scrollbars="true"
visible="true" /&gt;
&lt;/view&gt;
&lt;/tabpane&gt;
&lt;/tabs&gt;
&lt;/view&gt;
&lt;/class&gt;

&lt;!-- MAIN VIEW --&gt;
&lt;view name="mainView" width="900" height="650"&gt;
&lt;button x="10" y="10"&gt;switch Visibility of HTMLViews
&lt;handler name="onclick"&gt;
Debug.write("switch clicked");

parent.myView.myHTMLViews.changeVisibility();
&lt;/handler&gt;
&lt;/button&gt;
&lt;button x="215" y="10"&gt;fill Text
&lt;handler name="onclick"&gt;&lt;![CDATA[
Debug.write("set Text clicked");

parent.myView.myHTMLViews.setTexts("&lt;html&gt;&lt;body&gt;This is HTML text
1.&lt;/body&gt;&lt;/html&gt;",
"&lt;html&gt;&lt;body&gt;This is HTML text
2.&lt;/body&gt;&lt;/html&gt;");
]]&gt;
&lt;/handler&gt;
&lt;/button&gt;
&lt;button x="300" y="10"&gt;clear Text
&lt;handler name="onclick"&gt;
Debug.write("clear Text clicked");
parent.myView.myHTMLViews.setTexts("","");
&lt;/handler&gt;
&lt;/button&gt;
&lt;text x="400" y="150"&gt;I hope you can edit this edittext
field!&lt;/text&gt;
&lt;edittext x="400" y="180" width="200"/&gt;
&lt;view name="myView" x="50" y="50" width="700" height="700"
bgcolor="#BBBBBB"&gt;
&lt;HTMLViews name="myHTMLViews"/&gt;
&lt;/view&gt;
&lt;/view&gt;
&lt;/canvas&gt;



</description>
    <dc:creator>Marc Bachstein</dc:creator>
    <dc:date>2008-08-26T08:52:55</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.java.openlaszlo.user/5056">
    <title>Fwd:  Dragging an Object out of a View?</title>
    <link>http://permalink.gmane.org/gmane.comp.java.openlaszlo.user/5056</link>
    <description>well if you aren't using clipping then *visually* it's quite easy to make an
object be dragged out of a parent view. This may be obvious.
If your question is how to *reparent* a view from one container to another -
the short answer is, you can't. The best pattern to use here is to save all
the related parameters that compose the view being dragged and create a new
view under the desired new parent and copy those parameters over.

If you use that pattern, a simple copy/paste manager for that type of
dragged object that will automatically do that given the object and the new
parent is a good way to go.

Did this help?

On Fri, Aug 15, 2008 at 3:32 PM, Kenneth Miller &lt;xkenneth-Re5JQEeQqe8AvxtiuMwx3w&lt; at &gt;public.gmane.org&gt; wrote:

</description>
    <dc:creator>jamesr</dc:creator>
    <dc:date>2008-08-20T20:59:00</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.java.openlaszlo.user/5055">
    <title>(no subject)</title>
    <link>http://permalink.gmane.org/gmane.comp.java.openlaszlo.user/5055</link>
    <description>
Hi there,

I like to know the differences between the 'delete'
operator and the 'destroy()' member function. If I create an LZ object,
can I use 'delete' to delete the object instead of using "destry()"
member function? The reason I ask this question is that 'destroy()'
performance is very bad. Create an array of 50 objects, and then use
'destroy()' to destroy them, you will see the browser is basically
frozen for a few minutes. But if I use delete, it runs very fast. 

Thanks!

Chen Ding

_________________________________________________________________
See what people are saying about Windows Live.  Check out featured posts.
http://www.windowslive.com/connect?ocid=TXT_TAGLM_WL_connect2_082008</description>
    <dc:creator>Chen Ding</dc:creator>
    <dc:date>2008-08-20T01:33:15</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.java.openlaszlo.user/5054">
    <title>Dragging an Object out of a View?</title>
    <link>http://permalink.gmane.org/gmane.comp.java.openlaszlo.user/5054</link>
    <description>Is it possible to drag an object OUT of a view?

Pseudo-Code:
&lt;canvas&gt;
&lt;simplelayout axis="y"/&gt;
&lt;view&gt;
       &lt;draggable object&gt;
&lt;/view&gt;
&lt;view/&gt;
&lt;/canvas&gt;

I want to be able to drag the draggable object OVER the other view.

Regards,
Ken

</description>
    <dc:creator>Kenneth Miller</dc:creator>
    <dc:date>2008-08-15T21:32:18</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.java.openlaszlo.user/5053">
    <title>Adding an LzDataElement to a LzDataPath or DataSet?</title>
    <link>http://permalink.gmane.org/gmane.comp.java.openlaszlo.user/5053</link>
    <description>Is it possible to add a complex LzDataElement (multiple children)  
directly to a dataset? This seems overly complex.

I'm replicating over a series of nodes, generating some viewable areas  
and a form at the bottom. I assemble an LzDataElement in the  
onmousedown event of the forms submit button. I understand that I can  
set up a new datapointer, point it to the same node in the dataset as  
it's parent replicated datapath, and then add a single node, but how  
can I append a complex LzDataElement?

Regards,
Ken

</description>
    <dc:creator>Kenneth Miller</dc:creator>
    <dc:date>2008-08-15T05:05:03</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.java.openlaszlo.user/5052">
    <title>List not working with 'tree'</title>
    <link>http://permalink.gmane.org/gmane.comp.java.openlaszlo.user/5052</link>
    <description>
Hi there,

I am having a problem with the class 'tree'. In the code below, I create a list. When an entry in the list is clicked, it creates an instance of 'tree'. But the list clicking does not work properly. For instance, click the first entry, then use the scroll bar to scroll the list to the end of the list and then click the last entry, the list somehow jumps back to the last entry of the shown items before scrolling. Try to select an entry, use the scroll bar to make the selected entry unseen, and then select another entry, you should see the problems.  But note that if I do not scroll the list, everything works perfectly.

If I create a push button instead of a tree node when an entry is clicked, everything works just fine (i.e., uncomment Line 11 and comment out Line 10 in the code below). 

Your help is greatly appreciated!

Chen Ding

  1 &lt;canvas&gt;
  2     &lt;class name="mytree" extends="tree"/&gt;
  3     &lt;class name="mybutton" extends="button"/&gt;
  4 
  5     &lt;view x="500" y="100" width="500" height="300" name="the_view"&gt;
  6         &lt;attribute name="widget" type="expression"/&gt;
  7 
  8         &lt;method name="showContents" args="name"&gt;
  9             if (this['widget']) this.widget.destroy();
 10             this.widget = new lz.mytree(this, { text : name }, []);
 11             // this.widget = new lz.mybutton(this, { text : name }, []);
 12         &lt;/method&gt;
 13     &lt;/view&gt;
 14 
 15     &lt;class name="mytextlistitem" extends="textlistitem"&gt;
 16         &lt;handler name="onclick"&gt;
 17             the_view.showContents(text);
 18         &lt;/handler&gt;
 19     &lt;/class&gt;
 20 
 21     &lt;view     name="mylist" width="400" height="250"&gt;
 22         &lt;handler name="oninit"&gt;
 23             this.list_field.createItems();
 24         &lt;/handler&gt;
 25 
 26         &lt;list name="list_field"
 27               width="${parent.width}"
 28               x="0"
 29               spacing="2"
 30               shownitems="6"
 31               toggleselected="true"
 32               bgcolor="${iceblue4}"&gt;
 33 
 34             &lt;selectionmanager name="selector" toggle="true"/&gt;
 35 
 36             &lt;method name="createItems"&gt;
 37                 &lt;![CDATA[
 38                 for (var i=0; i&lt;20; i++)
 39                 {
 40                     var entry = new lz.mytextlistitem(this,
 41                         {
 42                             width : this.width,
 43                             height : 30,
 44                             text : 'Object_' + i
 45                         }, []);
 46                 }
 47                 ]]&gt;
 48             &lt;/method&gt;
 49         &lt;/list&gt;
 50     &lt;/view&gt;
 51 &lt;/canvas&gt;


_________________________________________________________________
Get more from your digital life.  Find out how.
http://www.windowslive.com/default.html?ocid=TXT_TAGLM_WL_Home2_082008</description>
    <dc:creator>Chen Ding</dc:creator>
    <dc:date>2008-08-14T02:13:03</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.java.openlaszlo.user/5051">
    <title>Re: bug trying to extend baseformitem...</title>
    <link>http://permalink.gmane.org/gmane.comp.java.openlaszlo.user/5051</link>
    <description>I bet the bug is that the "value" attribute is declared as a  default of
"expression" type, and thus needs *some* value instead of "".  Try
value="null", for example, or " '' " (that's single quotes in double quotes)
if you need a zero length string rather than null.
Sorry about the error message, we need to improve the parser to be able to
report a location
instead of getting totally confused by missing value.  Can you file a bug
with this example,
to improve the compiler error (if there isn't one already).



On Tue, Aug 12, 2008 at 11:45 AM, Paulo Scardine &lt;paulo-f6gUObd6t6Q39yzSjRtAkw&lt; at &gt;public.gmane.org&gt;wrote:



</description>
    <dc:creator>Henry Minsky</dc:creator>
    <dc:date>2008-08-12T22:35:29</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.java.openlaszlo.user/5050">
    <title>Re: bug trying to extend baseformitem (kind of solved)</title>
    <link>http://permalink.gmane.org/gmane.comp.java.openlaszlo.user/5050</link>
    <description>P T Withington escreveu:

Definitely the compiler should complain; I would be happy with an error, 
but the compiler could also issue a warning and assume value="" meaning 
value="null", value="''" or value="undfined".

Thanks,
--
Paulo


</description>
    <dc:creator>Paulo Scardine</dc:creator>
    <dc:date>2008-08-12T21:55:58</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.java.openlaszlo.user/5049">
    <title>Re: bug trying to extend baseformitem (kind of solved)</title>
    <link>http://permalink.gmane.org/gmane.comp.java.openlaszlo.user/5049</link>
    <description>Please file a bug at jira.openlaszlo.org.  I'm guessing the smallest  
test case would be:

&lt;canvas&gt;
   &lt;attribute name="z" value="" /&gt;
&lt;/canvas&gt;

At the very least, the compiler should give you a more informative  
message. But the question is, do you want the compiler to complain if  
you have said you want the attribute to have a value, but failed to  
give it a value (the double-quotes are not part of the value)?  Or do  
you want the compiler to assume that you didn't mean to give it a  
value after all?

Under the covers, the reason you are getting an error is what you wrote:

   &lt;attribute name="z" value="" /&gt;

translates into the following Javascript:

   var z = ;

which is not valid.

On 2008-08-12, at 11:57EDT, Paulo Scardine wrote:



</description>
    <dc:creator>P T Withington</dc:creator>
    <dc:date>2008-08-12T21:09:19</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.java.openlaszlo.user/5048">
    <title>Re: bug trying to extend baseformitem (kind of solved)</title>
    <link>http://permalink.gmane.org/gmane.comp.java.openlaszlo.user/5048</link>
    <description/>
    <dc:creator>Paulo Scardine</dc:creator>
    <dc:date>2008-08-12T15:57:30</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.java.openlaszlo.user/5047">
    <title>bug trying to extend baseformitem...</title>
    <link>http://permalink.gmane.org/gmane.comp.java.openlaszlo.user/5047</link>
    <description/>
    <dc:creator>Paulo Scardine</dc:creator>
    <dc:date>2008-08-12T15:45:10</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.java.openlaszlo.user/5046">
    <title>Re: REST support</title>
    <link>http://permalink.gmane.org/gmane.comp.java.openlaszlo.user/5046</link>
    <description>Thanks for the update and all the good work. My brief testing with
4.2alpha didn't go so well, I'll wait for the beta to be more
thorough.

Openlaszlo has such a good fundamental design for rapid application
development that to hobble easily programmable communication with
backend services over such a simple, open standard would be a loss.

On Fri, Aug 8, 2008 at 5:49 PM, Henry Minsky &lt;henry.minsky-Re5JQEeQqe8AvxtiuMwx3w&lt; at &gt;public.gmane.org&gt; wrote:

</description>
    <dc:creator>Greg Denton</dc:creator>
    <dc:date>2008-08-11T18:06:54</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.java.openlaszlo.user/5045">
    <title>Re: REST support</title>
    <link>http://permalink.gmane.org/gmane.comp.java.openlaszlo.user/5045</link>
    <description>A matrix is a good idea!

Here is my understanding of what should work for SOLO http operations

                       SWF8                 SWF9             DHTML
GET                    X                    X                X
POST                   X*                   X                X
PUT                                         X                X
DELETE                                      X                X

* in swf8, you can set the postbody to be a valid XML document, and that
contentwill be posted verbatim.  If you make something which is not valid
XML, it will be posted
as a string which is XML-escaped.


If you see different behavior, please post a note to me or file a bug report
with the details.



On Fri, Aug 8, 2008 at 5:42 PM, Greg Denton &lt;greg.denton-Re5JQEeQqe8AvxtiuMwx3w&lt; at &gt;public.gmane.org&gt; wrote:
wiki?):



</description>
    <dc:creator>Henry Minsky</dc:creator>
    <dc:date>2008-08-09T00:49:41</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.java.openlaszlo.user/5044">
    <title>REST support</title>
    <link>http://permalink.gmane.org/gmane.comp.java.openlaszlo.user/5044</link>
    <description>Can anyone summarize the SOLO REST support that is (alpha)/will be
(release) working in 4.2? A matrix would be nice :-). In the wiki even
nicer so we wouldn't have to search so much.
http://wiki.openlaszlo.org/Laszlo_on_REST looks like only proposals,
need to track current status.

               swf8, swf9, dhtml
POST
PUT
DELETE

request set headers?
response get headers, status code?
cross-domain issues?

I assume no problems with GET (other than maybe confusion with
setQueryParams, LPP-6586).

POST body looks like it Is fixed in 4.2beta:
http://www.openlaszlo.org/jira/browse/LPP-6683

Might want to close this (or mark duplicate?):
http://www.openlaszlo.org/jira/browse/LPP-2195

Pretty good overview of past problems (close and/or add comment, link to wiki?):
http://www.openlaszlo.org/jira/browse/LPP-1045

Thanks a lot.

</description>
    <dc:creator>Greg Denton</dc:creator>
    <dc:date>2008-08-08T21:42:33</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.java.openlaszlo.user/5043">
    <title>Re: yes,godaddy again. (but i at least got errors to show up)</title>
    <link>http://permalink.gmane.org/gmane.comp.java.openlaszlo.user/5043</link>
    <description>What Files Permissions do I need to set for open laszlo, I'm trying 777 and all files, unless tomcat has is own file permission settings?


</description>
    <dc:creator>Miles Hand</dc:creator>
    <dc:date>2008-08-06T20:03:36</dc:date>
  </item>
  <textinput rdf:about="http://search.gmane.org/?group=$group=gmane.comp.java.openlaszlo.user">
    <title>Search Engine</title>
    <description>Search the mailing list at Gmane</description>
    <name>query</name>
    <link>http://search.gmane.org/?group=$group=gmane.comp.java.openlaszlo.user</link>
  </textinput>
</rdf:RDF>
