You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openmeetings.apache.org by se...@apache.org on 2012/03/08 22:30:20 UTC

svn commit: r1298591 [2/2] - in /incubator/openmeetings/trunk/singlewebapp/WebContent/src: ./ base/components/ base/components/list/ base/components/scrollbars/ base/components/scrollbars/resources/ base/components/simplevaluelist/ base/components/turn...

Modified: incubator/openmeetings/trunk/singlewebapp/WebContent/src/plugins/fileexplorer/fileExplorer.lzx
URL: http://svn.apache.org/viewvc/incubator/openmeetings/trunk/singlewebapp/WebContent/src/plugins/fileexplorer/fileExplorer.lzx?rev=1298591&r1=1298590&r2=1298591&view=diff
==============================================================================
--- incubator/openmeetings/trunk/singlewebapp/WebContent/src/plugins/fileexplorer/fileExplorer.lzx (original)
+++ incubator/openmeetings/trunk/singlewebapp/WebContent/src/plugins/fileexplorer/fileExplorer.lzx Thu Mar  8 21:30:18 2012
@@ -504,7 +504,7 @@
      -->
                
     <view name="_border2" x="0" y="${ 33 + parent._documentsTabs.height }" width="$once{ parent.width }" 
-          height="1" bgcolor="$once{ canvas.basebgcolorizer }" />     
+          height="1" bgcolor="0xE0E0E0" />     
     
     <!--
         Documents - Tabbar
@@ -518,28 +518,28 @@
      --> 
      
     <view name="_fileBar" layout="axis:x" x="0" y="${ 14 + parent._documentsTabs.height }">
-        <baseChooseIconView labelid="702" height="20" width="19" 
+        <baseChooseIconView labelid="702" height="20" width="19" bgcolor="0xE0E0E0"
                             resourceN="file_explorer_add_file_rsc">
             <handler name="onclick">
                 if ($debug) Debug.write("Upload File");
                 parent.parent.addFile();
             </handler>
         </baseChooseIconView>
-        <baseChooseIconView labelid="703" height="20" width="19" 
+        <baseChooseIconView labelid="703" height="20" width="19" bgcolor="0xE0E0E0"
                             resourceN="file_explorer_add_folder_rsc" >
             <handler name="onclick">
                 if ($debug) Debug.write("Add Folder");
                 parent.parent.addFolder();
             </handler>
         </baseChooseIconView>
-        <baseChooseIconView labelid="704" height="20" width="19" 
+        <baseChooseIconView labelid="704" height="20" width="19" bgcolor="0xE0E0E0"
                             resourceN="file_explorer_reload_rsc" >
             <handler name="onclick">
                 if ($debug) Debug.write("Refresh Folder");
                 parent.parent.loadFiles();
             </handler>
         </baseChooseIconView>
-        <view bgcolor="$once{ canvas.basebgcolorizer }" height="20" width="1" />
+        <view bgcolor="0xE0E0E0" height="20" width="1" />
     </view>
     
     <!--
@@ -549,7 +549,7 @@
     <view name="_trashBar" layout="axis:x" x="$once{ parent.width - 20 }" 
           y="${ 14 + parent._documentsTabs.height }">
         <baseChooseIconView name="_trashIcon" labelid="705" height="20" width="19" 
-                         resourceN="file_explorer_trash_rsc">
+                         resourceN="file_explorer_trash_rsc" bgcolor="0xE0E0E0">
             <attribute name="isTrashCan" value="true" type="boolean" />
             <handler name="onclick">
                 if ($debug) Debug.write("Delete Folder and Files");
@@ -569,7 +569,7 @@
                 this.onmouseout.sendEvent();
             </handler> 
         </baseChooseIconView>
-        <view bgcolor="$once{ canvas.basebgcolorizer }" height="20" width="1" />
+        <view bgcolor="0xE0E0E0" height="20" width="1" />
     </view>
     
     <!--
@@ -590,7 +590,7 @@
         
         <view name="_contentarea" layout="axis:y;inset:1" />
         
-        <vscrollbar name="_scrollbar" />
+        <om_vscrollbar name="_scrollbar" />
         <hscrollbar name="_hscrollbar" />
     </view>
     

Modified: incubator/openmeetings/trunk/singlewebapp/WebContent/src/plugins/fileexplorer/presentations/items/imageListInnerTableExplorer.lzx
URL: http://svn.apache.org/viewvc/incubator/openmeetings/trunk/singlewebapp/WebContent/src/plugins/fileexplorer/presentations/items/imageListInnerTableExplorer.lzx?rev=1298591&r1=1298590&r2=1298591&view=diff
==============================================================================
--- incubator/openmeetings/trunk/singlewebapp/WebContent/src/plugins/fileexplorer/presentations/items/imageListInnerTableExplorer.lzx (original)
+++ incubator/openmeetings/trunk/singlewebapp/WebContent/src/plugins/fileexplorer/presentations/items/imageListInnerTableExplorer.lzx Thu Mar  8 21:30:18 2012
@@ -150,7 +150,7 @@
 		 	 
     </view>
 
-    <vscrollbar name="_scrollbar" />
+    <om_vscrollbar name="_scrollbar" />
 </class>
 
 </library>

Modified: incubator/openmeetings/trunk/singlewebapp/WebContent/src/test-setup.lzx
URL: http://svn.apache.org/viewvc/incubator/openmeetings/trunk/singlewebapp/WebContent/src/test-setup.lzx?rev=1298591&r1=1298590&r2=1298591&view=diff
==============================================================================
--- incubator/openmeetings/trunk/singlewebapp/WebContent/src/test-setup.lzx (original)
+++ incubator/openmeetings/trunk/singlewebapp/WebContent/src/test-setup.lzx Thu Mar  8 21:30:18 2012
@@ -379,7 +379,7 @@
 			<button align="right" width="200" text="stopPlayBroadCast" onclick="canvas.stopPlayBroadCast()" />
 		</view>
 	</view>
-	<vscrollbar />
+	<om_vscrollbar />
 </view>
 
 </canvas>

Modified: incubator/openmeetings/trunk/singlewebapp/WebContent/src/test/scrolledittext.lzx
URL: http://svn.apache.org/viewvc/incubator/openmeetings/trunk/singlewebapp/WebContent/src/test/scrolledittext.lzx?rev=1298591&r1=1298590&r2=1298591&view=diff
==============================================================================
--- incubator/openmeetings/trunk/singlewebapp/WebContent/src/test/scrolledittext.lzx (original)
+++ incubator/openmeetings/trunk/singlewebapp/WebContent/src/test/scrolledittext.lzx Thu Mar  8 21:30:18 2012
@@ -74,12 +74,12 @@
         </method>
         
 <!--
-        <vscrollbar name="_vs" axis="y" scrollattr="pos"
+        <om_vscrollbar name="_vs" axis="y" scrollattr="pos"
             scrolltarget="parent.inp"
             x="${parent.width - this.width - parent.border + 1}" 
             stepsize="${parent.inp.lineheight}" 
             scrollmax="${parent.inp.scrollheight}">
-        </vscrollbar>
+        </om_vscrollbar>
 -->
 
         <!--- Name of class to instantiate for vertical scroll bar.

Modified: incubator/openmeetings/trunk/singlewebapp/WebContent/src/test/test-scrollEdittext.lzx
URL: http://svn.apache.org/viewvc/incubator/openmeetings/trunk/singlewebapp/WebContent/src/test/test-scrollEdittext.lzx?rev=1298591&r1=1298590&r2=1298591&view=diff
==============================================================================
--- incubator/openmeetings/trunk/singlewebapp/WebContent/src/test/test-scrollEdittext.lzx (original)
+++ incubator/openmeetings/trunk/singlewebapp/WebContent/src/test/test-scrollEdittext.lzx Thu Mar  8 21:30:18 2012
@@ -31,7 +31,7 @@
         <inputtext multiline="true" width="${ parent.width - 14 }">
             
         </inputtext>
-        <vscrollbar />
+        <om_vscrollbar />
     </view>
 
 </canvas>