Author: pbr
Date: 2008-02-15 06:10:03 -0800 (Fri, 15 Feb 2008)
New Revision: 8042

Modified:
   openlaszlo/trunk/docs/component-browser/common.lzx
   openlaszlo/trunk/docs/component-browser/formview.lzx
   openlaszlo/trunk/docs/component-browser/listview.lzx
   openlaszlo/trunk/docs/component-browser/menuview.lzx
   openlaszlo/trunk/docs/component-browser/scrollbarview.lzx
   openlaszlo/trunk/docs/component-browser/tabsview.lzx
   openlaszlo/trunk/docs/component-browser/treeview.lzx
   openlaszlo/trunk/docs/component-browser/windowview.lzx
Log:
Change 20080214-Philip-2 by [EMAIL PROTECTED] on 2008-02-14 22:11:53 EST
     in /cygdrive/f/laszlo/svn/src/svn/openlaszlo/trunk
     for http://svn.openlaszlo.org/openlaszlo/trunk

Summary: Fix component links in the component hierarchy

New Features:

Bugs Fixed: LPP-4555

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

Documentation:

Release Notes:

Details:
Josh fixed LPP-4555. Turns out there are other pages when you click 'See 
Related Components' on the component hierarchy page. This change fixes those 
pages to point to the "new" locations of the reference pages.

Tests:
Visual inspection. The reference guide doesn't build cleanly on Windows. Also, 
I found a problem with IE6 rendering so the pages need to be tested in that 
browser. Let me know if you find any pages that aren't correct. I followed the 
format that the reference page is named lz.<page>.html. For example, the page 
for base component is called lz.basecomponent.html.

(For IE6 you only need to check one page. The old javascript code to popup a 
window generated an error on IE6.)

Once this is fixed in trunk we can merge it to the branches.

Files:
M      docs/component-browser/tabsview.lzx
M      docs/component-browser/listview.lzx
M      docs/component-browser/common.lzx
M      docs/component-browser/treeview.lzx
M      docs/component-browser/formview.lzx
M      docs/component-browser/scrollbarview.lzx
M      docs/component-browser/menuview.lzx
M      docs/component-browser/windowview.lzx

Changeset: http://svn.openlaszlo.org/openlaszlo/patches/20080214-Philip-2.tar



Modified: openlaszlo/trunk/docs/component-browser/common.lzx
===================================================================
--- openlaszlo/trunk/docs/component-browser/common.lzx  2008-02-15 12:54:25 UTC 
(rev 8041)
+++ openlaszlo/trunk/docs/component-browser/common.lzx  2008-02-15 14:10:03 UTC 
(rev 8042)
@@ -67,9 +67,9 @@
         <attribute name="textcolor" value="0x000000" type="number" />
         <attribute name="textselectedcolor" value="0xFFFFFF" type="number" />
         <method event="onclick">
-            var file = (this.file != '' ? this.file : this.text + '.html');
+            var file = (this.file != '' ? this.file : 'lz.' + this.text + 
'.html');
             var url = canvas.urlprefix + file;
-            LzBrowser.loadURL('javascript: var wptr = window.open("' + url + 
'","laszlo-reference","resizable=1,width=1000,height=700,left=0,top=0,screenX=0,screenY=0,menubar,location,status,scrollbars,toolbar,address");
 wptr.focus(); void(0);');
+            LzBrowser.loadURL('javascript: var wptr = window.open("' + url + 
'","laszlo_reference","resizable=1,width=1000,height=700,left=0,top=0,screenX=0,screenY=0,menubar,location,status,scrollbars,toolbar,address");
 wptr.focus(); void(0);');
         </method>
         <method event="onmouseup">
             setAttribute('fgcolor', this.texthilitecolor)
@@ -85,6 +85,6 @@
 
 </library>
 <!-- * X_LZ_COPYRIGHT_BEGIN ***************************************************
-* Copyright 2001-2007 Laszlo Systems, Inc.  All Rights Reserved.              *
+* Copyright 2001-2008 Laszlo Systems, Inc.  All Rights Reserved.              *
 * Use is subject to license terms.                                            *
 * X_LZ_COPYRIGHT_END ****************************************************** -->

Modified: openlaszlo/trunk/docs/component-browser/formview.lzx
===================================================================
--- openlaszlo/trunk/docs/component-browser/formview.lzx        2008-02-15 
12:54:25 UTC (rev 8041)
+++ openlaszlo/trunk/docs/component-browser/formview.lzx        2008-02-15 
14:10:03 UTC (rev 8042)
@@ -7,15 +7,15 @@
             <view width="50%">
                 <border width="${parent.width}" height="50" 
cbgcolor="${canvas.lcdcolor}">
                     <view layout="axis: y" align="center">
-                        <textlink file="lz-checkbox.html">checkbox</textlink>
-                        <textlink file="lz-edittext.html">edittext</textlink>
-                        <textlink file="lz-combobox.html">combobox</textlink>
+                        <textlink>checkbox</textlink>
+                        <textlink>edittext</textlink>
+                        <textlink>combobox</textlink>
                     </view>
                 </border>
             </view>
             <view width="50%" layout="axis: y">
                 <border width="${parent.width}" height="25" 
cbgcolor="${canvas.lcdcolor}">
-                    <textlink file="lz-radiogroup.html">radiogroup</textlink>
+                    <textlink>radiogroup</textlink>
                 </border>
                 <border width="${parent.width}" height="25" 
cbgcolor="${canvas.basecolor}">
                     <textlink>baselist</textlink>
@@ -29,7 +29,7 @@
 
     <class name="baselistitemview" layout="axis: y">
         <border width="${parent.width}" height="50" 
cbgcolor="${canvas.lcdcolor}">
-            <textlink y="10" file="lz-radio.html">radiobutton</textlink>
+            <textlink y="10">radiobutton</textlink>
         </border>
         <border width="${parent.width}" height="20" 
cbgcolor="${canvas.basecolor}">
             <textlink>baselistitem</textlink>
@@ -48,7 +48,7 @@
 
     <class name="basebuttonview" layout="axis: y">
         <border width="${parent.width}" height="70" 
cbgcolor="${canvas.lcdcolor}">
-            <textlink y="10" file="lz-button.html">button</textlink>
+            <textlink y="10">button</textlink>
         </border>
         <border width="${parent.width}" height="20" 
cbgcolor="${canvas.basecolor}">
             <view align="center" layout="axis: x">
@@ -69,7 +69,7 @@
 
     <class name="baseformview" layout="axis: y">
         <border width="${parent.width}" height="70" 
cbgcolor="${canvas.lcdcolor}">
-            <textlink y="10" file="lz-form.html">form</textlink>
+            <textlink y="10">form</textlink>
         </border>
         <border width="${parent.width}" height="40" 
cbgcolor="${canvas.basecolor}">
             <textlink y="10">baseform</textlink>
@@ -82,7 +82,7 @@
             <baseformview width="20%"/>
         </view>
         <border width="${parent.width}" height="20" 
cbgcolor="${canvas.lfccolor}">
-            <textlink>view</textlink>
+            <textlink file="LzView.html">view</textlink>
         </border>
     </class>
 
@@ -94,12 +94,12 @@
             </border>
         </view>
         <border width="${parent.width}" height="20" 
cbgcolor="${canvas.lfccolor}">
-            <textlink>node</textlink>
+            <textlink file="LzNode.html">node</textlink>
         </border>
     </class>
 
 </library>
 <!-- * X_LZ_COPYRIGHT_BEGIN ***************************************************
-* Copyright 2001-2007 Laszlo Systems, Inc.  All Rights Reserved.              *
+* Copyright 2001-2008 Laszlo Systems, Inc.  All Rights Reserved.              *
 * Use is subject to license terms.                                            *
 * X_LZ_COPYRIGHT_END ****************************************************** -->

Modified: openlaszlo/trunk/docs/component-browser/listview.lzx
===================================================================
--- openlaszlo/trunk/docs/component-browser/listview.lzx        2008-02-15 
12:54:25 UTC (rev 8041)
+++ openlaszlo/trunk/docs/component-browser/listview.lzx        2008-02-15 
14:10:03 UTC (rev 8042)
@@ -6,19 +6,19 @@
         
         <view width="${parent.width}" layout="axis: x">
             <border width="50%" height="40" cbgcolor="${canvas.lcdcolor}">
-                <textlink y="10" 
file="lz-floatinglist.html">floatinglist</textlink>
+                <textlink y="10">floatinglist</textlink>
             </border>
             <border width="50%" height="40" cbgcolor="${canvas.lcdcolor}">
-                <textlink y="10" 
file="lz-textlistitem.html">textlistitem</textlink>
+                <textlink y="10">textlistitem</textlink>
             </border>
         </view>
 
         <view width="${parent.width}" layout="axis: x">
             <border width="50%" height="40" cbgcolor="${canvas.lcdcolor}">
-                <textlink y="10" file="lz-list.html">list</textlink>
+                <textlink y="10">list</textlink>
             </border>
             <border width="50%" height="40" cbgcolor="${canvas.lcicolor}">
-                <textlink y="10" file="lz-listitem.html">listitem</textlink>
+                <textlink y="10">listitem</textlink>
             </border>
         </view>
 
@@ -34,6 +34,6 @@
     </class>
 </library>
 <!-- * X_LZ_COPYRIGHT_BEGIN ***************************************************
-* Copyright 2001-2007 Laszlo Systems, Inc.  All Rights Reserved.              *
+* Copyright 2001-2008 Laszlo Systems, Inc.  All Rights Reserved.              *
 * Use is subject to license terms.                                            *
 * X_LZ_COPYRIGHT_END ****************************************************** -->

Modified: openlaszlo/trunk/docs/component-browser/menuview.lzx
===================================================================
--- openlaszlo/trunk/docs/component-browser/menuview.lzx        2008-02-15 
12:54:25 UTC (rev 8041)
+++ openlaszlo/trunk/docs/component-browser/menuview.lzx        2008-02-15 
14:10:03 UTC (rev 8042)
@@ -4,13 +4,13 @@
 
     <class name="menuitemview" layout="axis: y">
         <border width="100%" height="20" cbgcolor="${canvas.lcdcolor}">
-            <textlink file="lz-menuitem.html">menuitem</textlink>
+            <textlink>menuitem</textlink>
         </border>
         <border width="100%" height="20" cbgcolor="${canvas.lcdcolor}">
-            <textlink file="lz-textlistitem.html">textlistitem</textlink>
+            <textlink>textlistitem</textlink>
         </border>
         <border width="100%" height="20" cbgcolor="${canvas.lcicolor}">
-            <textlink file="lz-listitem.html">listitem</textlink>
+            <textlink>listitem</textlink>
         </border>
         <border width="100%" height="20" cbgcolor="${canvas.basecolor}">
             <textlink>baselistitem</textlink>
@@ -24,9 +24,9 @@
         <border width="50%" height="100" cbgcolor="${canvas.lcdcolor}">
             <view width="100%" y="10">
                 <simplelayout axis="y" />
-                <textlink file="lz-menu.html">menu</textlink>
-                <textlink file="lz-menubar.html">menubar</textlink>
-                <textlink file="lz-menuseparator.html">menuseparator</textlink>
+                <textlink>menu</textlink>
+                <textlink>menubar</textlink>
+                <textlink>menuseparator</textlink>
             </view>
         </border>
         <menuitemview width="50%" />
@@ -41,6 +41,6 @@
 
 </library>
 <!-- * X_LZ_COPYRIGHT_BEGIN ***************************************************
-* Copyright 2001-2007 Laszlo Systems, Inc.  All Rights Reserved.              *
+* Copyright 2001-2008 Laszlo Systems, Inc.  All Rights Reserved.              *
 * Use is subject to license terms.                                            *
 * X_LZ_COPYRIGHT_END ****************************************************** -->

Modified: openlaszlo/trunk/docs/component-browser/scrollbarview.lzx
===================================================================
--- openlaszlo/trunk/docs/component-browser/scrollbarview.lzx   2008-02-15 
12:54:25 UTC (rev 8041)
+++ openlaszlo/trunk/docs/component-browser/scrollbarview.lzx   2008-02-15 
14:10:03 UTC (rev 8042)
@@ -4,7 +4,7 @@
 
     <class name="scrollbarview" layout="axis: y">
         <border width="100%" height="40" cbgcolor="${canvas.lcdcolor}">
-            <textlink y="10" file="lz-scrollbar.html">scrollbar</textlink>
+            <textlink y="10">scrollbar</textlink>
         </border>
         <border width="100%" height="40" cbgcolor="${canvas.basecolor}">
             <textlink y="10">basescrollbar</textlink>
@@ -16,6 +16,6 @@
 
 </library>
 <!-- * X_LZ_COPYRIGHT_BEGIN ***************************************************
-* Copyright 2001-2007 Laszlo Systems, Inc.  All Rights Reserved.              *
+* Copyright 2001-2008 Laszlo Systems, Inc.  All Rights Reserved.              *
 * Use is subject to license terms.                                            *
 * X_LZ_COPYRIGHT_END ****************************************************** -->

Modified: openlaszlo/trunk/docs/component-browser/tabsview.lzx
===================================================================
--- openlaszlo/trunk/docs/component-browser/tabsview.lzx        2008-02-15 
12:54:25 UTC (rev 8041)
+++ openlaszlo/trunk/docs/component-browser/tabsview.lzx        2008-02-15 
14:10:03 UTC (rev 8042)
@@ -5,10 +5,10 @@
     <class name="tabsbarview1" layout="axis: y">
         <view width="50%" layout="axis: x">
             <border width="${parent.width}" height="20" 
cbgcolor="${canvas.lcdcolor}">
-                <textlink file="lz-tabsbar.html">tabsbar</textlink>
+                <textlink>tabsbar</textlink>
             </border>
             <border width="${parent.width}" height="20" 
cbgcolor="${canvas.lcdcolor}">
-                <textlink file="lz-tabsbar.html">tab</textlink>
+                <textlink>tab</textlink>
             </border>
         </view>
         <view width="50%" layout="axis: x">
@@ -54,7 +54,7 @@
     <class name="tabsview1" layout="axis: x">
         <view width="25%" layout="axis: y">
             <border width="${parent.width}" height="20" 
cbgcolor="${canvas.lcdcolor}">
-                <textlink file="lz-tabs.html">tabs</textlink>
+                <textlink>tabs</textlink>
             </border>
             <border width="${parent.width}" height="80" 
cbgcolor="${canvas.basecolor}">
                 <textlink>basetabs</textlink>
@@ -62,7 +62,7 @@
         </view>
         <view width="25%" layout="axis: y">
             <border width="${parent.width}" height="20" 
cbgcolor="${canvas.lcdcolor}">
-                <textlink file="lz-tabpane.html">tabpane</textlink>
+                <textlink>tabpane</textlink>
             </border>
             <border width="${parent.width}" height="80" 
cbgcolor="${canvas.basecolor}">
                 <textlink>basetabpane</textlink>
@@ -81,6 +81,6 @@
     </class>
 </library>
 <!-- * X_LZ_COPYRIGHT_BEGIN ***************************************************
-* Copyright 2001-2007 Laszlo Systems, Inc.  All Rights Reserved.              *
+* Copyright 2001-2008 Laszlo Systems, Inc.  All Rights Reserved.              *
 * Use is subject to license terms.                                            *
 * X_LZ_COPYRIGHT_END ****************************************************** -->

Modified: openlaszlo/trunk/docs/component-browser/treeview.lzx
===================================================================
--- openlaszlo/trunk/docs/component-browser/treeview.lzx        2008-02-15 
12:54:25 UTC (rev 8041)
+++ openlaszlo/trunk/docs/component-browser/treeview.lzx        2008-02-15 
14:10:03 UTC (rev 8042)
@@ -4,7 +4,7 @@
 
     <class name="treeview" layout="axis: y">
         <border width="100%" height="40" cbgcolor="${canvas.lcdcolor}">
-            <textlink y="10" file="lz-tree.html">tree</textlink>
+            <textlink y="10">tree</textlink>
         </border>
         <border width="100%" height="40" cbgcolor="${canvas.basecolor}">
             <textlink y="10">basetree</textlink>
@@ -16,6 +16,6 @@
 
 </library>
 <!-- * X_LZ_COPYRIGHT_BEGIN ***************************************************
-* Copyright 2001-2007 Laszlo Systems, Inc.  All Rights Reserved.              *
+* Copyright 2001-2008 Laszlo Systems, Inc.  All Rights Reserved.              *
 * Use is subject to license terms.                                            *
 * X_LZ_COPYRIGHT_END ****************************************************** -->

Modified: openlaszlo/trunk/docs/component-browser/windowview.lzx
===================================================================
--- openlaszlo/trunk/docs/component-browser/windowview.lzx      2008-02-15 
12:54:25 UTC (rev 8041)
+++ openlaszlo/trunk/docs/component-browser/windowview.lzx      2008-02-15 
14:10:03 UTC (rev 8042)
@@ -6,18 +6,18 @@
         <view width="100%" layout="axis: x">
             <view width="50%" layout="axis: y">
                 <border width="100%" height="20" cbgcolor="${canvas.lcdcolor}">
-                    <textlink file="lz-alert.html">alert</textlink>
+                    <textlink>alert</textlink>
                 </border>
                 <border width="100%" height="20" cbgcolor="${canvas.lcdcolor}">
-                    <textlink file="lz-modaldialog.html">modaldialog</textlink>
+                    <textlink>modaldialog</textlink>
                 </border>
             </view>
             <border width="50%" height="40" cbgcolor="${canvas.lcdcolor}">
-                <textlink y="10" file="lz-window.html">window</textlink>
+                <textlink y="10">window</textlink>
             </border>
         </view>
         <border width="100%" height="20" cbgcolor="${canvas.lcicolor}">
-            <textlink file="lz-windowpanel.html">windowpanel</textlink>
+            <textlink>windowpanel</textlink>
         </border>
         <border width="100%" height="20" cbgcolor="${canvas.basecolor}">
             <textlink>basewindow</textlink>
@@ -29,6 +29,6 @@
 
 </library>
 <!-- * X_LZ_COPYRIGHT_BEGIN ***************************************************
-* Copyright 2001-2007 Laszlo Systems, Inc.  All Rights Reserved.              *
+* Copyright 2001-2008 Laszlo Systems, Inc.  All Rights Reserved.              *
 * Use is subject to license terms.                                            *
 * X_LZ_COPYRIGHT_END ****************************************************** -->


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

Reply via email to