Author: ben
Date: 2007-07-05 14:34:21 -0700 (Thu, 05 Jul 2007)
New Revision: 5597

Modified:
   openlaszlo/branches/4.0/
Log:
Blocked revisions 5564,5568,5590-5592,5596 via svnmerge

.......
  r5564 | max | 2007-06-29 17:56:01 -0700 (Fri, 29 Jun 2007) | 24 lines
  
  Change 20070629-maxcarlson-d by [EMAIL PROTECTED] on 2007-06-29 15:40:22 PDT
      in /Users/maxcarlson/openlaszlo/legals-clean
      for http://svn.openlaszlo.org/openlaszlo/branches/legals
  
  Summary: Make LzDeclaredEvent's interface match LzEvent's
  
  New Features:
  
  Bugs Fixed: LPP-4159 - LzDeclaredEvent should have the same signature as 
LzEvent *or* unbound event should just be LzEvent, not LzDeclaredEvent
  
  Technical Reviewer: promanik
  QA Reviewer: jcrowley
  Doc Reviewer: (pending)
  
  Documentation:
  
  Release Notes:
  
  Details: Added dummy methods to prevent the issue outlined in the bug.
      
  
  Tests: See LPP-4159
.......
  r5568 | ben | 2007-07-01 20:03:04 -0700 (Sun, 01 Jul 2007) | 48 lines
  
  Change 20070701-ben-d by [EMAIL PROTECTED] on 2007-07-01 20:01:49 PDT
      in /Users/ben/src/svn/openlaszlo/branches/legals2
      for http://svn.openlaszlo.org/openlaszlo/branches/legals
  
  Summary: [UPDATED] Improve text rendering in swf8, add api for text rendering 
hints
  
  New Features: new api on LzText to control swf8 rendering parameters
  
  Bugs Fixed:
  
  Technical Reviewer: max 
  QA Reviewer: (pending)
  Doc Reviewer: (pending)
  
  Documentation:
  
  Added four new virtual attributes to LzText, each of which control an aspect
  of advanced text rendering in swf8: sharpness, thickness, antiAliasType, 
  and gridFit. These attributes only have an effect in swf8; in other runtimes,
  they will quietly be no-ops. We provide set/get for each of these new virtual
  attributes, and give them good initial and default values. 
  
  Note that the default values are set such that <text>boring</text> will 
  use normal rendering, because advanced rendering causes a performance hit. To
  get the advanced rendering, just set antiAliasType="advanced" on the text
  object. 
  
  Added capability "advancedfonts" for these text rendering attributes; made it
  true for swf, false for dhtml. 
  
  Release Notes:
  To get advanced rendering in swf8, just set antiAliasType="advanced" on a text
  object.
  
  Details:
  
  Tests:
  
http://localhost:8080/legals/test/lztest/lztest-textstyle.lzx?lzr=swf8&debug=true
  sussurate should look good but blurry. mimsy borogroves should look not 
great. 
  "i should look bad" and "pixel gridfit" should have weird color bands around 
the text
  If you visit that url in Flash Player 7, all the text should look the same, 
and a 
  bit crunchy. 
  "ant doc" still works
  http://localhost:8080/legals/test/text/renderingcomparison.lzx?lzr=swf8 
   should look really cool, with each of the text objects in the top three
   rows looking slightly different.
   
.......
  r5590 | jcrowley | 2007-07-04 23:49:22 -0700 (Wed, 04 Jul 2007) | 25 lines
  
  Change 20070628-jcrowley-V by [EMAIL PROTECTED] on 2007-06-28 23:13:59 EDT
      in /Users/jcrowley/src/svn/openlaszlo/legals-safe
      for http://svn.openlaszlo.org/openlaszlo/branches/legals
  
  Summary: Contributor Fix:  Regression in "basegridcolumn#_getCellForColumn()"
        against 3.3.3
  
  New Features:
  
  Bugs Fixed: LPP-4081
  
  Technical Reviewer: pbr
  QA Reviewer: max
  Doc Reviewer: 
  
  Documentation:
  
  Release Notes:
  
  Details: Contributor fix from Andre Bargull.
      
  
  Tests:
.......
  r5591 | jcrowley | 2007-07-05 00:03:52 -0700 (Thu, 05 Jul 2007) | 50 lines
  
  Change 20070629-jcrowley-W by [EMAIL PROTECTED] on 2007-06-29 02:20:21 EDT
      in /Users/jcrowley/src/svn/openlaszlo/legals-alpha
      for http://svn.openlaszlo.org/openlaszlo/branches/legals
  
  Summary: Put "searchParents" from LzView to LzNode
  
  New Features:
  
  Bugs Fixed: LPP-3377
  
  Technical Reviewer: max
  QA Reviewer: pbr
  Doc Reviewer: 
  
  Documentation:
  
  Release Notes:
  
  Details: Contributor fix from Andre Bargull.  Added searchParents to 
LzNode.lzs.
      
  
  Tests: <canvas debug="true" >
  
    <dataset name="ds" >
      <root>
        <entry name="foo" />
      </root>
    </dataset>
    
    <view id="box" datapath="ds:/root" >
      
      <node name="mynode" datapath="entry" >
        <handler name="ondata" >
          Debug.write( "node:", this.data );
        </handler>
      </node>
  
      <view name="myview" datapath="entry" >
        <handler name="ondata" >
          Debug.write( "view:", this.data );
        </handler>
      </view>
      
    </view>
  
  </canvas>
  
  In unmodified branch, only "view:" will appear.  In modified branch, both 
will.
.......
  r5592 | jcrowley | 2007-07-05 05:43:56 -0700 (Thu, 05 Jul 2007) | 26 lines
  
  Change 20070705-jcrowley-B by [EMAIL PROTECTED] on 2007-07-05 08:42:26 EDT
      in /Users/jcrowley/src/svn/openlaszlo/legals-alpha
      for http://svn.openlaszlo.org/openlaszlo/branches/legals
  
  Summary: LzView didn't get included in my commit of the fix for LPP-3377.  I 
modified
        per Phil R.'s recommendations in his review, but forgot to create a new
        changeset to include the additional modified file.  This remedies that.
  
  New Features:
  
  Bugs Fixed:
  
  Technical Reviewer: (pending)
  QA Reviewer: (pending)
  Doc Reviewer: (pending)
  
  Documentation:
  
  Release Notes:
  
  Details:
      
  
  Tests:
.......
  r5596 | ben | 2007-07-05 14:07:45 -0700 (Thu, 05 Jul 2007) | 36 lines
  
  Change 20070705-ben-M by [EMAIL PROTECTED] on 2007-07-05 14:05:16 PDT
      in /Users/ben/src/svn/openlaszlo/branches/legals
      for http://svn.openlaszlo.org/openlaszlo/branches/legals
  
  Summary: Make smokecheck more readable
  
  New Features: smokecheck result has a grey background
  
  Bugs Fixed:
  
  Technical Reviewer: ptw (implicitly, in advance, by requesting this feature)
  QA Reviewer: frisco
  Doc Reviewer: (pending)
  
  Documentation:
  To make the smokecheck output more readable, we add a semi-transparent 
  background to the lzunit result display. This is just a little transparent,
  enough to see that something is going on in the background, but not
  so transparent that the results aren't readable. 
  
  Note that when running the smokecheck in dhtml, a single text field
  reading "some text" doesn't get pushed behind the TestResult's background;
  this seems to be a bug in dhtml that doesn't happen in swf. This
  issue only obscures the title "Test Progress," not details of the
  results. 
  
  Release Notes:
  
  Details:
  
  
  Tests:
  http://localhost:8080/legals2/test/smoke/smokecheck.lzx?lzr=swf8
  http://localhost:8080/legals2/test/smoke/smokecheck.lzx?lzr=dhtml
.......



Property changes on: openlaszlo/branches/4.0
___________________________________________________________________
Name: svnmerge-blocked
   - 
/openlaszlo/branches/legals:4608,4665,4717,4745,4750,4756,4759,4767,4782,4784,4823,4833-4834,4837,4842,4845-4847,4868-4870,4875-4876,4892-4893,4919,4921-4922,4924,4933,4937,4940-4941,4954,4958-4959,4965,4970,4979-4980,4982,4986,4990,4999,5001,5014-5015,5043,5045-5050,5053,5061,5067-5069,5071,5073-5075,5080,5082-5084,5097-5100,5103,5106,5113,5115-5117,5122,5124,5143,5153-5155,5174-5175,5192,5201,5208,5215,5226,5232,5236,5246,5252,5274-5275,5278,5292-5294,5297,5309-5310,5317,5320,5323,5325,5330,5333-5334,5337,5367,5371,5381,5391,5407,5420,5423,5454,5470,5496,5524-5526,5530,5534-5535,5538,5552-5553
   + 
/openlaszlo/branches/legals:4608,4665,4717,4745,4750,4756,4759,4767,4782,4784,4823,4833-4834,4837,4842,4845-4847,4868-4870,4875-4876,4892-4893,4919,4921-4922,4924,4933,4937,4940-4941,4954,4958-4959,4965,4970,4979-4980,4982,4986,4990,4999,5001,5014-5015,5043,5045-5050,5053,5061,5067-5069,5071,5073-5075,5080,5082-5084,5097-5100,5103,5106,5113,5115-5117,5122,5124,5143,5153-5155,5174-5175,5192,5201,5208,5215,5226,5232,5236,5246,5252,5274-5275,5278,5292-5294,5297,5309-5310,5317,5320,5323,5325,5330,5333-5334,5337,5367,5371,5381,5391,5407,5420,5423,5454,5470,5496,5524-5526,5530,5534-5535,5538,5552-5553,5564,5568,5590-5592,5596


_______________________________________________
Laszlo-checkins mailing list
[email protected]
http://www.openlaszlo.org/mailman/listinfo/laszlo-checkins

Reply via email to