Author: ben
Date: 2007-06-29 13:52:48 -0700 (Fri, 29 Jun 2007)
New Revision: 5558

Modified:
   openlaszlo/branches/4.0/
Log:
Blocked revisions 5524-5526,5530,5534-5535,5538,5552-5553 via svnmerge

.......
  r5524 | frisco | 2007-06-26 11:40:53 -0700 (Tue, 26 Jun 2007) | 24 lines
  
  Change 20070625-laszlosystems-Q by [EMAIL PROTECTED] on 2007-06-25 11:38:23 
PDT
      in /Users/laszlosystems/src/svn/openlaszlo/branches/legals
      for http://svn.openlaszlo.org/openlaszlo/branches/legals
  
  Summary: Selenium suite made up of lztest-* in test/lztest
  
  New Features:
  
  Bugs Fixed:
  
  Technical Reviewer: (pending)
  QA Reviewer: (pending)
  Doc Reviewer: (pending)
  
  Documentation:
  
  Release Notes:
  
  Details:
      
  
  Tests:
.......
  r5525 | jgrandy | 2007-06-26 16:01:55 -0700 (Tue, 26 Jun 2007) | 1 line
  
  check in test of flash8 text apis
.......
  r5526 | jgrandy | 2007-06-26 16:09:43 -0700 (Tue, 26 Jun 2007) | 1 line
  
  live control over thickness/sharpness
.......
  r5530 | ben | 2007-06-26 20:56:12 -0700 (Tue, 26 Jun 2007) | 1 line
  
  test file for trying different font rendering, antialiasing styles. won't 
work without change 20070626-ben-3.tar
.......
  r5534 | ben | 2007-06-27 09:01:40 -0700 (Wed, 27 Jun 2007) | 29 lines
  
  Change 20070621-ben-R by [EMAIL PROTECTED] on 2007-06-21 16:11:17 PDT
      in /Users/ben/src/svn/openlaszlo/branches/legals
      for http://svn.openlaszlo.org/openlaszlo/branches/legals
  
  Summary: Include docs/src in source distro
  
  New Features:
  
  Bugs Fixed: LPP-4131 Source distro should include doc sources and tools
  
  Technical Reviewer: jgrandy 
  QA Reviewer: (pending)
  Doc Reviewer: (pending)
  
  Documentation:
  Now we include docs/src in the source distribution. 
  
  Release Notes:
  
  Details:
      
  
  Tests:
  ant build-source-distro package-source-distro
       note that docs/src is in openlaszlo-4.0.x-src.tar.gz
  
  Files:
  M      build.xml
.......
  r5535 | ben | 2007-06-27 09:02:30 -0700 (Wed, 27 Jun 2007) | 30 lines
  
  Change 20070621-ben-Y by [EMAIL PROTECTED] on 2007-06-21 12:13:28 PDT
      in /Users/ben/src/svn/openlaszlo/branches/legals
      for http://svn.openlaszlo.org/openlaszlo/branches/legals
  
  Summary: Fixed links into contribref and deployer's guide from laszlo explorer
  
  New Features:
  
  Bugs Fixed: 
  LPP-4121 Administrators Guide (AKA the Deployers Guide) is missing from the 
installers (windows/os x)
  LPP-4123 Selecting Contributor's Guide from laszlo-explorer results in an 
error
  
  Technical Reviewer: jgrandy
  QA Reviewer: frisco (pending)
  Doc Reviewer: frisco (pending)
  
  Documentation:
  
  Release Notes:
  
  Details:
  The path to these guides have changed; now it's docs/deployers not docs/deploy
  and docs/contribref/contribref not docs/contributors.     
  
  Tests:
  
  Files:
  M      laszlo-explorer/nav.xml
  M      laszlo-explorer/coverpages/documentation_cover.html
.......
  r5538 | jcrowley | 2007-06-27 14:42:53 -0700 (Wed, 27 Jun 2007) | 25 lines
  
  Change 20070625-jcrowley-T by [EMAIL PROTECTED] on 2007-06-25 23:39:40 PDT
      in /Users/jcrowley/src/svn/openlaszlo/legals-safe
      for http://svn.openlaszlo.org/openlaszlo/branches/legals
  
  Summary: Bad placement for empty menus
  
  New Features:
  
  Bugs Fixed: LPP-3399
  
  Technical Reviewer: pbr
  QA Reviewer: max
  Doc Reviewer: (pending)
  
  Documentation:
  
  Release Notes:
  
  Details: Contributor fix from Andre Bargull.
      
  
  Tests: Ran example from LPP-3399 in modified branch versus unmodified;
        noted the problem was fixed in the modified.
.......
  r5552 | pbr | 2007-06-29 07:28:49 -0700 (Fri, 29 Jun 2007) | 62 lines
  
  Change 20070628-Philip-6 by [EMAIL PROTECTED] on 2007-06-28 11:24:58 EST
     in /cygdrive/f/laszlo/svn/src/svn/openlaszlo/branches/legals
     for http://svn.openlaszlo.org/openlaszlo/branches/legals
  
  Summary: Fix getContextMenu()
  
  New Features:
  
  Bugs Fixed: LPP-4155
  
  Technical Reviewer: max
  QA Reviewer: (pending)
  Doc Reviewer: (pending)
  
  Documentation:
  
  Release Notes:
  
  Details:
  LaszloCanvas.lzs
   - Added a call to setContextMenu() in setDefaultContextMenu() to match the 
beh
  avior of 3.4.
  LaszloView.lzs
   - Removed this.contextMenu (not needed)
   - getContextMenu() calls the sprite to get the value
  LzSprite.as
   - Store current context menu in this.__contextmenu.
   - Added getContextMenu()
  LzSprite.js
   - Added getContextMenu()
  
  I found a small dhtml/swf issue that I submitted as LPP-4213.
  
  Tests:
  http://localhost:8080/legals/test/contextmenu/api.lzx?lzr=dhtml
  smokecheck passes
  
  This app runs in dhtml and swf:
  
  <canvas debug="true">
   <button text="getContextMenu">
     <handler name="onclick">
       var cm = canvas.getContextMenu();
       var del = new LzDelegate (this, 'myHandler');
       cm.addItem(cm.makeMenuItem('My Function', del));
       Debug.write(cm);
     </handler>
  
     <method name="myHandler">
       Debug.write("myHandler");
     </method>
   </button>
  </canvas>
  
  
  Files:
  M      WEB-INF/lps/lfc/kernel/swf/LzSprite.as
  M      WEB-INF/lps/lfc/kernel/dhtml/LzSprite.js
  M      WEB-INF/lps/lfc/views/LaszloView.lzs
  M      WEB-INF/lps/lfc/views/LaszloCanvas.lzs
  
  Changeset: http://svn.openlaszlo.org/openlaszlo/patches/20070628-Philip-6.tar
.......
  r5553 | pbr | 2007-06-29 07:31:17 -0700 (Fri, 29 Jun 2007) | 33 lines
  
  Change 20070627-Philip-8 by [EMAIL PROTECTED] on 2007-06-27 13:35:19 EST
     in /cygdrive/f/laszlo/svn/src/svn/openlaszlo/branches/legals
     for http://svn.openlaszlo.org/openlaszlo/branches/legals
  
  Summary: Fix warnings in amazon app
  
  New Features:
  
  Bugs Fixed: LPP-4107
  
  Technical Reviewer: jcrowley
  QA Reviewer: (pending)
  Doc Reviewer: (pending)
  
  Documentation:
  
  Release Notes:
  
  Details:
   - Removed reference to this.field as it isn't needed
   - Removed reference parent.clonenumber since this isn't available. I added an
  onclonenumber event handler to retrieve this information. At some point it 
looks
   like this number was used as the track id of the album. It is not used for 
disp
  lay but I kept the functionality anyway.
  
  Tests:
  amazon.app runs with warnings in dhtml and swf.
  
  Files:
  M      demos/amazon/amazon.lzx
  
  Changeset: http://svn.openlaszlo.org/openlaszlo/patches/20070627-Philip-8.tar
.......



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
   + 
/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


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

Reply via email to