Sarah Allen | 1 Apr 01:00
Favicon
Gravatar

Re: For Review: Change 20090331-sallen-a Summary: videoView.showFrame -> startTime

this is now checked in (with the name starttime) -- can someone make sure this gets into 4.3?

On Mar 31, 2009, at 3:51 PM, Max Carlson wrote:

I'd prefer the attribute name be all lowercase, e.g. starttime.  We don't have any other attributes with camelCase.  Otherwise, approved!

Sarah Allen wrote:
I know we already have a candidate, but it is important to get this name correct for this new attribute... Change 20090331-sallen-a by sallen <at> sallen-mac.local <mailto:sallen <at> sallen-mac.local> on 2009-03-31 15:28:54 PDT
   in /Users/sarah/src/svn/openlaszlo/trunk-review/test/video
   for http://svn.openlaszlo.org/openlaszlo/trunk/test/video
Summary:  videoView.showFrame -> startTime
New Features:
Bugs Fixed: LPP-799  videoView.showFrame -> startTime
Technical Reviewer: max
QA Reviewer: (pending)
Doc Reviewer: (pending)
Documentation:
doc'd in reference
Release Notes:
Details:
   Tests:
Files:
M      test/video/test-stream-video.lzx
M      test/video/test-videoplayer-http.lzx
M      lps/components/extensions/av/videoview.lzx
M      lps/components/av/videoplayer.lzx
M      lps/components/av/videoscreen.lzx
Changeset: http://svn.openlaszlo.org/openlaszlo/patches/20090331-sallen-a.tar

--
Regards,
Max Carlson
OpenLaszlo.org

Max Carlson | 1 Apr 01:09
Favicon

Proposal to merge to 4.3: [Laszlo-checkins] r13566 - in openlaszlo/trunk: lps/components/av lps/components/extensions/av test/video

This is an extremely low-risk change - all that happened is an attribute 
name changed to be something that more accurately describes what it does 
- videoView.showFrame -> startTime.  I think this should go into 4.3 
because this is a new attribute/feature and it's important to get the 
naming correct the first time - otherwise it becomes much more difficult 
to change.

-- 
Regards,
Max Carlson
OpenLaszlo.org
Favicon
From: This is an extremely low-risk change - all that happened is an attribute name changed to be something that more accurately describes what it does - videoView.showFrame -> startTime. I think this should go into 4.3 because this is a new attribute/feature and it's important to get the naming correct the first time - otherwise it becomes much more difficult to change. -- Regards, Max Carlson OpenLaszlo.org <sallen <at> openlaszlo.org>
Subject: [Laszlo-checkins] r13566 - in openlaszlo/trunk: lps/components/av lps/components/extensions/av test/video
Date: 2009-03-31 22:58:51 GMT
Author: sallen
Date: 2009-03-31 15:58:50 -0700 (Tue, 31 Mar 2009)
New Revision: 13566

Modified:
   openlaszlo/trunk/lps/components/av/videoplayer.lzx
   openlaszlo/trunk/lps/components/av/videoscreen.lzx
   openlaszlo/trunk/lps/components/extensions/av/videoview.lzx
   openlaszlo/trunk/test/video/test-stream-video.lzx
   openlaszlo/trunk/test/video/test-videoplayer-http.lzx
Log:
Change 20090331-sallen-a by sallen <at> sallen-mac.local on 2009-03-31 15:28:54 PDT
    in /Users/sarah/src/svn/openlaszlo/trunk-review/test/video
    for http://svn.openlaszlo.org/openlaszlo/trunk/test/video

Summary:  videoView.showFrame -> startTime

New Features:

Bugs Fixed: LPP-799  videoView.showFrame -> startTime

Technical Reviewer: max
QA Reviewer: (pending)
Doc Reviewer: (pending)

Documentation:
doc'd in reference

Release Notes:

Details:

Tests:

Modified: openlaszlo/trunk/lps/components/av/videoplayer.lzx
===================================================================
--- openlaszlo/trunk/lps/components/av/videoplayer.lzx	2009-03-31 22:30:35 UTC (rev 13565)
+++ openlaszlo/trunk/lps/components/av/videoplayer.lzx	2009-03-31 22:58:50 UTC (rev 13566)
@@ -28,15 +28,17 @@
               see mediastream for details -->
         <attribute name="url" type="string" value=""/>

-        <!--- Show this frame when the url is set. 
-              Use -1 to show no frame.
-              Default: 0 -->
-        <attribute name="showframe" type="number" value="0"/>

         <!--- when true, playback will start automatically
               without user action -->
         <attribute name="autoplay" value="false"/>

+        <!--- Show the frame from this time (in seconds) whenever the url 
+            is set for video playback.
+            Use -1 to show no frame (which will leave the image as it
+            was when switching videos) -->
+        <attribute name="starttime" value="0" type="number"/>
+
         <!--- why would you want this? no test case, marking private 
               @access private -->    
         <attribute name="showscreen" value="true"/>
@@ -122,7 +124,7 @@
             autoplay="${classroot.autoplay}"
             url="${classroot.url}"
             volume="${parent.vslider.volume}"
-            showframe="${parent.showframe}"
+            starttime="${parent.starttime}"
             borderTop="${parent.borderTop}"
             borderLeft="${parent.borderLeft}"
             borderBottom="${parent.borderBottom}"

Modified: openlaszlo/trunk/lps/components/av/videoscreen.lzx
===================================================================
--- openlaszlo/trunk/lps/components/av/videoscreen.lzx	2009-03-31 22:30:35 UTC (rev 13565)
+++ openlaszlo/trunk/lps/components/av/videoscreen.lzx	2009-03-31 22:58:50 UTC (rev 13566)
@@ -16,7 +16,7 @@

         <!--- true for verbose debug logging -->
         <attribute name="debug" value="false"/>
-        <attribute name="showframe" value="0"/>
+        <attribute name="starttime" value="0" type="number"/>
         <attribute name="type" type="string" value="http"/>

         <attribute name="url" type="string" value=""/>
@@ -75,6 +75,7 @@
             stream="$once{classroot.ms}"
             visible="${parent.visible &amp;&amp; (this.width &gt; 1) &amp;&amp; (this.height &gt; 1)}"
             playvolume="${classroot.volume}"
+            starttime="${classroot.starttime}"
             debug="${parent.debug}"
         >

Modified: openlaszlo/trunk/lps/components/extensions/av/videoview.lzx
===================================================================
--- openlaszlo/trunk/lps/components/extensions/av/videoview.lzx	2009-03-31 22:30:35 UTC (rev 13565)
+++ openlaszlo/trunk/lps/components/extensions/av/videoview.lzx	2009-03-31 22:58:50 UTC (rev 13566)
@@ -54,9 +54,11 @@
             Default: false. -->
     <attribute name="autoplay" value="false"/>

-    <!--- Show this frame when the url is set for recorded video.
-          Use -1 to show no frame-->
-    <attribute name="showframe" value="0"/>
+    <!--- Show the frame from this time (in seconds) whenever the url 
+          is set for video playback.
+          Use -1 to show no frame (which will leave the image as it
+          was when switching videos) -->
+    <attribute name="starttime" value="0" type="number"/>

     <!--- If true, Debug.write extra stuff (this may go away). -->
     <attribute name="debug" value="false"/>
@@ -164,8 +166,8 @@
                                         this.stream, "onplaying")
         if (this.stream.playing || this.stream.type == 'http') {
             // show poster frame now for http streams
-            if (!this.stream.playing && this.showframe != -1) {
-                this.stream.seek(this.showframe);
+            if (!this.stream.playing && this.starttime != -1) {
+                this.stream.seek(this.starttime);
             }
             this._setPlayStream();
         }
@@ -286,7 +288,7 @@

     <method name="_updateStreamUrl"> <![CDATA[
         //Debug.write("%w _updateStreamUrl %w %w", 
-        //    this, this.url, this.showframe);
+        //    this, this.url, this.starttime);
         this.stream.setAttribute("url", this.url);

         ]]>

Modified: openlaszlo/trunk/test/video/test-stream-video.lzx
===================================================================
--- openlaszlo/trunk/test/video/test-stream-video.lzx	2009-03-31 22:30:35 UTC (rev 13565)
+++ openlaszlo/trunk/test/video/test-stream-video.lzx	2009-03-31 22:58:50 UTC (rev 13566)
@@ -22,7 +22,7 @@
     <simplelayout axis="y" inset="10" spacing="5"/>
     <constantlayout axis="x" value="10"/>
     <text>v2: don't show first frame initially</text>
-    <videoview id="v2" showframe="-1">
+    <videoview id="v2" starttime="-1">
         <mediastream id="s2" 
             url="http:videos/good-dog.flv"/>
     </videoview>  

Modified: openlaszlo/trunk/test/video/test-videoplayer-http.lzx
===================================================================
--- openlaszlo/trunk/test/video/test-videoplayer-http.lzx	2009-03-31 22:30:35 UTC (rev 13565)
+++ openlaszlo/trunk/test/video/test-videoplayer-http.lzx	2009-03-31 22:58:50 UTC (rev 13566)
@@ -8,11 +8,11 @@
     <simplelayout axis="x" spacing="10"/> 
     <view layout="axis:y">    
         <text multiline="true"> 
-            v1: showframe="1"<br/> 
+            v1: starttime="1"<br/> 
             showTimeDisplay="false" showVolumeControl="false"<br/>
             progressColor="0x0000cc" border="1" sliderGap="0"
         </text>
-        <videoplayer id="v1" showframe="1" 
+        <videoplayer id="v1" starttime="1" 
             showTimeDisplay="false" showVolumeControl="false"
             progressColor="0x0000cc"
             border="1" sliderGap="0"

_______________________________________________
Laszlo-checkins mailing list
Laszlo-checkins <at> openlaszlo.org
http://www.openlaszlo.org/mailman/listinfo/laszlo-checkins
Amy Muntz | 1 Apr 01:24
Favicon

Re: Proposal to merge to 4.3: [Laszlo-checkins] r13566 - in openlaszlo/trunk: lps/components/av lps/components/extensions/av test/video

I'm fine with checking this in and merging to 4.3. Tucker - can you do the merge?
Then, it should be in tonight's final build.
Thanks!
Amy


On Tue, Mar 31, 2009 at 7:09 PM , Max Carlson wrote:

 This is an extremely low-risk change - all that happened is an attribute name changed to be something that more accurately describes what it does - videoView.showFrame -> startTime.  I think this should go into 4.3 because this is a new attribute/feature and it's important to get the naming correct the first time - otherwise it becomes much more difficult to change.

--
Regards,
Max Carlson
OpenLaszlo.org


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

From: sallen <at> openlaszlo.org
To: laszlo-checkins <at> openlaszlo.org
Date: Tue Mar 31 15:58:51 PDT 2009
Subject: [Laszlo-checkins] r13566 - in openlaszlo/trunk: lps/components/av lps/components/extensions/av test/video

Author: sallen
Date: 2009-03-31 15:58:50 -0700 (Tue, 31 Mar 2009)
New Revision: 13566

Modified:
   openlaszlo/trunk/lps/components/av/videoplayer.lzx
   openlaszlo/trunk/lps/components/av/videoscreen.lzx
   openlaszlo/trunk/lps/components/extensions/av/videoview.lzx
   openlaszlo/trunk/test/video/test-stream-video.lzx
   openlaszlo/trunk/test/video/test-videoplayer-http.lzx
Log:
Change 20090331-sallen-a by sallen <at> sallen-mac.local  on 2009-03-31 15:28:54 PDT
    in /Users/sarah/src/svn/openlaszlo/trunk-review/test/video

Summary:  videoView.showFrame -> startTime

New Features:

Bugs Fixed: LPP-799  videoView.showFrame -> startTime

Technical Reviewer: max
QA Reviewer: (pending)
Doc Reviewer: (pending)

Documentation:
doc'd in reference

Release Notes:

Details:
   

Tests:



Modified: openlaszlo/trunk/lps/components/av/videoplayer.lzx
===================================================================
--- openlaszlo/trunk/lps/components/av/videoplayer.lzx 2009-03-31 22:30:35 UTC (rev 13565)
+++ openlaszlo/trunk/lps/components/av/videoplayer.lzx 2009-03-31 22:58:50 UTC (rev 13566)
<at> <at> -28,15 +28,17 <at> <at>
               see mediastream for details -->
         <attribute name="url" type="string" value=""/>
        
-        <!--- Show this frame when the url is set.
-              Use -1 to show no frame.
-              Default: 0 -->
-        <attribute name="showframe" type="number" value="0"/>
 
         <!--- when true, playback will start automatically
               without user action -->
         <attribute name="autoplay" value="false"/>
 
+        <!--- Show the frame from this time (in seconds) whenever the url
+            is set for video playback.
+            Use -1 to show no frame (which will leave the image as it
+            was when switching videos) -->
+        <attribute name="starttime" value="0" type="number"/>
+
         <!--- why would you want this? no test case, marking private
               <at> access private -->   
         <attribute name="showscreen" value="true"/>
<at> <at> -122,7 +124,7 <at> <at>
             autoplay="${classroot.autoplay}"
             url="${classroot.url}"
             volume="${parent.vslider.volume}"
-            showframe="${parent.showframe}"
+            starttime="${parent.starttime}"
             borderTop="${parent.borderTop}"
             borderLeft="${parent.borderLeft}"
             borderBottom="${parent.borderBottom}"

Modified: openlaszlo/trunk/lps/components/av/videoscreen.lzx
===================================================================
--- openlaszlo/trunk/lps/components/av/videoscreen.lzx 2009-03-31 22:30:35 UTC (rev 13565)
+++ openlaszlo/trunk/lps/components/av/videoscreen.lzx 2009-03-31 22:58:50 UTC (rev 13566)
<at> <at> -16,7 +16,7 <at> <at>
 
         <!--- true for verbose debug logging -->
         <attribute name="debug" value="false"/>
-        <attribute name="showframe" value="0"/>
+        <attribute name="starttime" value="0" type="number"/>
         <attribute name="type" type="string" value="http"/>
 
         <attribute name="url" type="string" value=""/>
<at> <at> -75,6 +75,7 <at> <at>
             stream="$once{classroot.ms}"
             visible="${parent.visible &amp;&amp; (this.width &gt; 1) &amp;&amp; (this.height &gt; 1)}"
             playvolume="${classroot.volume}"
+            starttime="${classroot.starttime}"
             debug="${parent.debug}"
         >
 

Modified: openlaszlo/trunk/lps/components/extensions/av/videoview.lzx
===================================================================
--- openlaszlo/trunk/lps/components/extensions/av/videoview.lzx 2009-03-31 22:30:35 UTC (rev 13565)
+++ openlaszlo/trunk/lps/components/extensions/av/videoview.lzx 2009-03-31 22:58:50 UTC (rev 13566)
<at> <at> -54,9 +54,11 <at> <at>
             Default: false. -->
     <attribute name="autoplay" value="false"/>
 
-    <!--- Show this frame when the url is set for recorded video.
-          Use -1 to show no frame-->
-    <attribute name="showframe" value="0"/>
+    <!--- Show the frame from this time (in seconds) whenever the url
+          is set for video playback.
+          Use -1 to show no frame (which will leave the image as it
+          was when switching videos) -->
+    <attribute name="starttime" value="0" type="number"/>
 
     <!--- If true, Debug.write extra stuff (this may go away). -->
     <attribute name="debug" value="false"/>
<at> <at> -164,8 +166,8 <at> <at>
                                         this.stream, "onplaying")
         if (this.stream.playing || this.stream.type == 'http') {
             // show poster frame now for http streams
-            if (!this.stream.playing && this.showframe != -1) {
-                this.stream.seek(this.showframe);
+            if (!this.stream.playing && this.starttime != -1) {
+                this.stream.seek(this.starttime);
             }
             this._setPlayStream();
         }
<at> <at> -286,7 +288,7 <at> <at>
 
     <method name="_updateStreamUrl"> <![CDATA[
         //Debug.write("%w _updateStreamUrl %w %w",
-        //    this, this.url, this.showframe);
+        //    this, this.url, this.starttime);
         this.stream.setAttribute("url", this.url);
 
         ]]>

Modified: openlaszlo/trunk/test/video/test-stream-video.lzx
===================================================================
--- openlaszlo/trunk/test/video/test-stream-video.lzx 2009-03-31 22:30:35 UTC (rev 13565)
+++ openlaszlo/trunk/test/video/test-stream-video.lzx 2009-03-31 22:58:50 UTC (rev 13566)
<at> <at> -22,7 +22,7 <at> <at>
     <simplelayout axis="y" inset="10" spacing="5"/>
     <constantlayout axis="x" value="10"/>
     <text>v2: don't show first frame initially</text>
-    <videoview id="v2" showframe="-1">
+    <videoview id="v2" starttime="-1">
         <mediastream id="s2"
             url="http:videos/good-dog.flv"/>
     </videoview> 

Modified: openlaszlo/trunk/test/video/test-videoplayer-http.lzx
===================================================================
--- openlaszlo/trunk/test/video/test-videoplayer-http.lzx 2009-03-31 22:30:35 UTC (rev 13565)
+++ openlaszlo/trunk/test/video/test-videoplayer-http.lzx 2009-03-31 22:58:50 UTC (rev 13566)
<at> <at> -8,11 +8,11 <at> <at>
     <simplelayout axis="x" spacing="10"/>
     <view layout="axis:y">   
         <text multiline="true">
-            v1: showframe="1"<br/>
+            v1: starttime="1"<br/>
             showTimeDisplay="false" showVolumeControl="false"<br/>
             progressColor="0x0000cc" border="1" sliderGap="0"
         </text>
-        <videoplayer id="v1" showframe="1"
+        <videoplayer id="v1" starttime="1"
             showTimeDisplay="false" showVolumeControl="false"
             progressColor="0x0000cc"
             border="1" sliderGap="0"


_______________________________________________
Laszlo-checkins mailing list
ono keiji | 1 Apr 02:39
Picon

Re: A Meta-IDE 4 Laszlo?

Where can i get the account to 'Dragon'?

ono keiji

Max Carlson ????????:
> I just added license info to the readme.txt, and made the repository 
> public:
> http://svn.lzxpatterns.com/dragn/trunk/
> 
> If you can look into the caps-lock issue, that would be great.  There 
> are a bunch of limitations listed in the README.txt - we could tackle 
> some of those.
> 
> I'd like to get this up and running somewhere so folks can use it to 
> edit their projects.  I have a nice domain ready, but my current hosting 
> company (dreamhost) is kind of weak for hosting servlets.  I did have 
> some PHP glue that used the command-line lzx compiler, so maybe it it 
> makes sense to rewrite the groovlets to use PHP.
> 
> Long term, it would be really neat to integrate the visual editor with 
> bespin, for a completely web-based IDE - with visual editing!
> 
> Let me know what your thoughts are!
> 
> Quirino Zagarese wrote:
>> Hi,
>> I modified editor.lzx so that it can work with 4.2.*.
>> I renamed setX and setY methods in the hover view to setXPos and 
>> setYPos to suppress Debug warnings.
>> The caps-lock (which should lock edit mode) doesn't work for me, but 
>> the other features seem to be working.
>> What's the next step?
>> Regards
>>
>> 2009/3/24 Quirino Zagarese <quirino <at> laszloitalia.org 
>> <mailto:quirino <at> laszloitalia.org>>
>>
>>     Of course I would like to be helpful. I also have a couple ideas to
>>     share, but I prefer to see what's available right now, before I can
>>     say silly things.
>>     Bests
>>
>>     2009/3/23 Max Carlson <max <at> openlaszlo.org 
>> <mailto:max <at> openlaszlo.org>>
>>
>>         I do!  I have the source up on svn.  Folks, send me a note if
>>         you'd like to contribute/get access - I plan to make the code
>>         for this open source, probably with a LGPL license.  I'd love
>>         some help getting it up and running!
>>
>>
>>         Raju Bitter wrote:
>>
>>             Max, you have done some work on a something like a
>>             proof-of-concept for an in-browser IDE, based on Grails. Is
>>             that code still available?
>>
>>             Thanks,
>>             Raju
>>
>>             On Mar 21, 2009, at 3:38 PM, Sebastian Wagner wrote:
>>
>>                 I agree. I read in the forums a long thread about the IDE
>>                 
>> http://forum.openlaszlo.org/showthread.php?p=38753#poststop
>>                 Lets see what they their concept is for an IDE. Although
>>                 I think I
>>                 would prefer to work in the Source-Code, but there is
>>                 certainly need
>>                 for a graphic-builder to skin the components .. or other
>>                 more design
>>                 focused work.
>>
>>                 sebastian
>>
>>
>>                 2009/3/21 Quirino Zagarese <quirino <at> laszloitalia.org
>>                 <mailto:quirino <at> laszloitalia.org>>:
>>
>>                     Hi,
>>                     I was checking my mail and gmail showed me this link.
>>                     It recalled to me about an idea I've been talking
>>                     about with Raju and Zvi
>>                     Schreiber from G.ho.st <http://G.ho.st>, a couple
>>                     years ago.
>>                     I guess a visual composer for Laszlo written in lzx
>>                     could be a great way to
>>                     make OL adoption easier and to show
>>                     one more time what OL can do. Now, I don't mean it
>>                     should be a complete IDE,
>>                     but just a simple composer, for the following 
>> reasons:
>>
>>                     Creating a complete visual IDE implies a huge effort
>>                     Most of experienced OL developers(users) would keep
>>                     on hand-coding
>>                     application-logic
>>                     A simple composer would be extremely useful for
>>                     building UI prototypes
>>
>>                     I've been thinking about it for long time cause I
>>                     observed visual-design
>>                     tools are at first place in the wishlist for many OL
>>                     users(and for many
>>                     companies evaluating its adoption).
>>                     Any opinions about it?
>>
>>                     Regards,
>>                     --                     Quirino Zagarese
>>
>>                     LaszloItalia Founder (www.laszloitalia.org
>>                     <http://www.laszloitalia.org>)
>>                     Software Development Manager - Galilaeus s.r.l.
>>
>>
>>
>>
>>                 --                 Sebastian Wagner
>>                 http://www.webbase-design.de
>>                 http://openmeetings.googlecode.com
>>                 http://www.laszlo-forum.de
>>                 seba.wagner <at> gmail.com <mailto:seba.wagner <at> gmail.com>
>>
>>
>>
>>         --         Regards,
>>         Max Carlson
>>         OpenLaszlo.org
>>
>>
>>
>>
>>     --     Quirino Zagarese
>>
>>     LaszloItalia Founder (www.laszloitalia.org
>>     <http://www.laszloitalia.org>)
>>     Software Development Manager - Galilaeus s.r.l.
>>
>>
>>
>>
>> -- 
>> Quirino Zagarese
>>
>> LaszloItalia Founder (www.laszloitalia.org <http://www.laszloitalia.org>)
>> Software Development Manager - Galilaeus s.r.l.
> 

--

-- 
------------------------------------------
(?)??????
????
keiji_ono <at> net8.co.jp
?????????1-45-11
TEL 03(3676)6599
URL http://www.net8.co.jp
------------------------------------------

P T Withington | 1 Apr 10:47
Picon
Favicon
Gravatar

We need branches/4.3 in Jira

For Fixed in branch

P T Withington | 1 Apr 10:49
Picon
Favicon
Gravatar

Re: Proposal to merge to 4.3: [Laszlo-checkins] r13566 - in openlaszlo/trunk: lps/components/av lps/components/extensions/av test/video

Done.

On 2009-03-31, at 19:24EDT, Amy Muntz wrote:

>
> I'm fine with checking this in and merging to 4.3. Tucker - can you  
> do the merge?
> Then, it should be in tonight's final build.
> Thanks!
> Amy
>
> On Tue, Mar 31, 2009 at 7:09 PM , Max Carlson wrote:
>
> This is an extremely low-risk change - all that happened is an  
> attribute name changed to be something that more accurately  
> describes what it does - videoView.showFrame -> startTime.  I think  
> this should go into 4.3 because this is a new attribute/feature and  
> it's important to get the naming correct the first time - otherwise  
> it becomes much more difficult to change.
>
> -- 
> Regards,
> Max Carlson
> OpenLaszlo.org
>
> ------------------------------
>
> From: sallen <at> openlaszlo.org
> To: laszlo-checkins <at> openlaszlo.org
> Date: Tue Mar 31 15:58:51 PDT 2009
> Subject: [Laszlo-checkins] r13566 - in openlaszlo/trunk: lps/ 
> components/av	lps/components/extensions/av test/video
>
> Author: sallen
> Date: 2009-03-31 15:58:50 -0700 (Tue, 31 Mar 2009)
> New Revision: 13566
>
> Modified:
>    openlaszlo/trunk/lps/components/av/videoplayer.lzx
>    openlaszlo/trunk/lps/components/av/videoscreen.lzx
>    openlaszlo/trunk/lps/components/extensions/av/videoview.lzx
>    openlaszlo/trunk/test/video/test-stream-video.lzx
>    openlaszlo/trunk/test/video/test-videoplayer-http.lzx
> Log:
> Change 20090331-sallen-a by sallen <at> sallen-mac.local <mailto:sallen <at> sallen-mac.local 
> >   <mailto:sallen <at> sallen-mac.local>  on 2009-03-31 15:28:54 PDT
>     in /Users/sarah/src/svn/openlaszlo/trunk-review/test/video
>     for http://svn.openlaszlo.org/openlaszlo/trunk/test/video
<http://svn.openlaszlo.org/openlaszlo/trunk/test/video 
> >   <http://svn.openlaszlo.org/openlaszlo/trunk/test/video>
>
> Summary:  videoView.showFrame -> startTime
>
> New Features:
>
> Bugs Fixed: LPP-799  videoView.showFrame -> startTime
>
> Technical Reviewer: max
> QA Reviewer: (pending)
> Doc Reviewer: (pending)
>
> Documentation:
> doc'd in reference
>
> Release Notes:
>
> Details:
>
>
> Tests:
>
>
> Modified: openlaszlo/trunk/lps/components/av/videoplayer.lzx
> ===================================================================
> --- openlaszlo/trunk/lps/components/av/videoplayer.lzx	2009-03-31  
> 22:30:35 UTC (rev 13565)
> +++ openlaszlo/trunk/lps/components/av/videoplayer.lzx	2009-03-31  
> 22:58:50 UTC (rev 13566)
> @@ -28,15 +28,17 @@
>                see mediastream for details -->
>          <attribute name="url" type="string" value=""/>
>
> -        <!--- Show this frame when the url is set.
> -              Use -1 to show no frame.
> -              Default: 0 -->
> -        <attribute name="showframe" type="number" value="0"/>
>
>          <!--- when true, playback will start automatically
>                without user action -->
>          <attribute name="autoplay" value="false"/>
>
> +        <!--- Show the frame from this time (in seconds) whenever  
> the url
> +            is set for video playback.
> +            Use -1 to show no frame (which will leave the image as it
> +            was when switching videos) -->
> +        <attribute name="starttime" value="0" type="number"/>
> +
>          <!--- why would you want this? no test case, marking private
>                @access private -->
>          <attribute name="showscreen" value="true"/>
> @@ -122,7 +124,7 @@
>              autoplay="${classroot.autoplay}"
>              url="${classroot.url}"
>              volume="${parent.vslider.volume}"
> -            showframe="${parent.showframe}"
> +            starttime="${parent.starttime}"
>              borderTop="${parent.borderTop}"
>              borderLeft="${parent.borderLeft}"
>              borderBottom="${parent.borderBottom}"
>
> Modified: openlaszlo/trunk/lps/components/av/videoscreen.lzx
> ===================================================================
> --- openlaszlo/trunk/lps/components/av/videoscreen.lzx	2009-03-31  
> 22:30:35 UTC (rev 13565)
> +++ openlaszlo/trunk/lps/components/av/videoscreen.lzx	2009-03-31  
> 22:58:50 UTC (rev 13566)
> @@ -16,7 +16,7 @@
>
>          <!--- true for verbose debug logging -->
>          <attribute name="debug" value="false"/>
> -        <attribute name="showframe" value="0"/>
> +        <attribute name="starttime" value="0" type="number"/>
>          <attribute name="type" type="string" value="http"/>
>
>          <attribute name="url" type="string" value=""/>
> @@ -75,6 +75,7 @@
>              stream="$once{classroot.ms}"
>              visible="${parent.visible &amp;&amp; (this.width &gt;  
> 1) &amp;&amp; (this.height &gt; 1)}"
>              playvolume="${classroot.volume}"
> +            starttime="${classroot.starttime}"
>              debug="${parent.debug}"
>          >
>
>
> Modified: openlaszlo/trunk/lps/components/extensions/av/videoview.lzx
> ===================================================================
> --- openlaszlo/trunk/lps/components/extensions/av/videoview.lzx	  
> 2009-03-31 22:30:35 UTC (rev 13565)
> +++ openlaszlo/trunk/lps/components/extensions/av/videoview.lzx	  
> 2009-03-31 22:58:50 UTC (rev 13566)
> @@ -54,9 +54,11 @@
>              Default: false. -->
>      <attribute name="autoplay" value="false"/>
>
> -    <!--- Show this frame when the url is set for recorded video.
> -          Use -1 to show no frame-->
> -    <attribute name="showframe" value="0"/>
> +    <!--- Show the frame from this time (in seconds) whenever the url
> +          is set for video playback.
> +          Use -1 to show no frame (which will leave the image as it
> +          was when switching videos) -->
> +    <attribute name="starttime" value="0" type="number"/>
>
>      <!--- If true, Debug.write extra stuff (this may go away). -->
>      <attribute name="debug" value="false"/>
> @@ -164,8 +166,8 @@
>                                          this.stream, "onplaying")
>          if (this.stream.playing || this.stream.type == 'http') {
>              // show poster frame now for http streams
> -            if (!this.stream.playing && this.showframe != -1) {
> -                this.stream.seek(this.showframe);
> +            if (!this.stream.playing && this.starttime != -1) {
> +                this.stream.seek(this.starttime);
>              }
>              this._setPlayStream();
>          }
> @@ -286,7 +288,7 @@
>
>      <method name="_updateStreamUrl"> <![CDATA[
>          //Debug.write("%w _updateStreamUrl %w %w",
> -        //    this, this.url, this.showframe);
> +        //    this, this.url, this.starttime);
>          this.stream.setAttribute("url", this.url);
>
>          ]]>
>
> Modified: openlaszlo/trunk/test/video/test-stream-video.lzx
> ===================================================================
> --- openlaszlo/trunk/test/video/test-stream-video.lzx	2009-03-31  
> 22:30:35 UTC (rev 13565)
> +++ openlaszlo/trunk/test/video/test-stream-video.lzx	2009-03-31  
> 22:58:50 UTC (rev 13566)
> @@ -22,7 +22,7 @@
>      <simplelayout axis="y" inset="10" spacing="5"/>
>      <constantlayout axis="x" value="10"/>
>      <text>v2: don't show first frame initially</text>
> -    <videoview id="v2" showframe="-1">
> +    <videoview id="v2" starttime="-1">
>          <mediastream id="s2"
>              url="http:videos/good-dog.flv"/>
>      </videoview>
>
> Modified: openlaszlo/trunk/test/video/test-videoplayer-http.lzx
> ===================================================================
> --- openlaszlo/trunk/test/video/test-videoplayer-http.lzx	2009-03-31  
> 22:30:35 UTC (rev 13565)
> +++ openlaszlo/trunk/test/video/test-videoplayer-http.lzx	2009-03-31  
> 22:58:50 UTC (rev 13566)
> @@ -8,11 +8,11 @@
>      <simplelayout axis="x" spacing="10"/>
>      <view layout="axis:y">
>          <text multiline="true">
> -            v1: showframe="1"<br/>
> +            v1: starttime="1"<br/>
>              showTimeDisplay="false" showVolumeControl="false"<br/>
>              progressColor="0x0000cc" border="1" sliderGap="0"
>          </text>
> -        <videoplayer id="v1" showframe="1"
> +        <videoplayer id="v1" starttime="1"
>              showTimeDisplay="false" showVolumeControl="false"
>              progressColor="0x0000cc"
>              border="1" sliderGap="0"
>
> _______________________________________________
> Laszlo-checkins mailing list
> Laszlo-checkins <at> openlaszlo.org <mailto:Laszlo- 
> checkins <at> openlaszlo.org>   <mailto:Laszlo-checkins <at> openlaszlo.org>
> http://www.openlaszlo.org/mailman/listinfo/laszlo-checkins
<http://www.openlaszlo.org/mailman/listinfo/laszlo-checkins 
> >   <http://www.openlaszlo.org/mailman/listinfo/laszlo-checkins>

P T Withington | 1 Apr 10:53
Picon
Favicon
Gravatar

Re: new release notes for 4.3

On 2009-03-31, at 18:49EDT, Sarah Allen wrote:

> not sure if this was fixed already...
> Andr? Bargull ... and Wolfgang St?che

Fixed.  Got clobbered from XML entity to Unicode via a bad workflow...

> Might be worth mentioning that a/v recording, playback and broadcast  
> actually works in 4.3... even tho it is covered in the bug fixes, it  
> may not be obvious from them

Can you give me a para?  Or just check something in?  I can  
integrate.  Obviously fixing relnotes is 0-risk.

> On Mar 31, 2009, at 9:30 AM, P T Withington wrote:
>
>> I'm fixing the relnotes
>>
>

Amy Muntz | 1 Apr 14:33
Favicon

Re: We need branches/4.3 in Jira

Done.
--- Amy

On Wed, Apr 1, 2009 at 4:47 AM , P T Withington wrote:

> For Fixed in branch

P T Withington | 1 Apr 15:47
Picon
Favicon
Gravatar

Adobe, Facebook partner to create Flash developer tools | Web Services | Macworld

Anyone up for writing a Facebook app in OpenLaszlo?

> The client library is a free open source programming language that  
> supports Facebook application programming interfaces (APIs)  
> including Facebook Connect.

[Adobe, Facebook partner to create Flash developer tools | Web  
Services | Macworld](http://www.macworld.com/article/139727/2009/03/adobefacebook.html?t=232 
)

Khurram Samad | 1 Apr 16:17

Re: Adobe, Facebook partner to create Flash developer tools | Web Services | Macworld

Hi
Sounds like a good idea :)


 
On Wed, Apr 1, 2009 at 6:47 PM, P T Withington <ptw-e+AXbWqSrlAAvxtiuMwx3w@public.gmane.org> wrote:
Anyone up for writing a Facebook app in OpenLaszlo?

The client library is a free open source programming language that supports Facebook application programming interfaces (APIs) including Facebook Connect.

[Adobe, Facebook partner to create Flash developer tools | Web Services | Macworld](http://www.macworld.com/article/139727/2009/03/adobefacebook.html?t=232)



--
Regards
Khurram Samad
GenITeam | A Web2.0 Specialist Company
www.geniteam.com


Gmane