qooxdoo-commit Mailing List for qooxdoo (Page 1422)
Brought to you by:
ecker,
martinwittemann
You can subscribe to this list here.
| 2005 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(6) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2006 |
Jan
(453) |
Feb
(800) |
Mar
(247) |
Apr
(324) |
May
(172) |
Jun
(145) |
Jul
(265) |
Aug
(447) |
Sep
(271) |
Oct
(312) |
Nov
(327) |
Dec
(472) |
| 2007 |
Jan
(493) |
Feb
(631) |
Mar
(565) |
Apr
(469) |
May
(757) |
Jun
(460) |
Jul
(440) |
Aug
(411) |
Sep
(813) |
Oct
(339) |
Nov
(112) |
Dec
(215) |
| 2008 |
Jan
(423) |
Feb
(671) |
Mar
(578) |
Apr
(566) |
May
(498) |
Jun
(411) |
Jul
(845) |
Aug
(1208) |
Sep
(176) |
Oct
(144) |
Nov
(216) |
Dec
(353) |
| 2009 |
Jan
(363) |
Feb
(700) |
Mar
(416) |
Apr
(362) |
May
(292) |
Jun
(238) |
Jul
(243) |
Aug
(216) |
Sep
(287) |
Oct
(304) |
Nov
(300) |
Dec
(416) |
| 2010 |
Jan
(200) |
Feb
(200) |
Mar
(183) |
Apr
(259) |
May
(217) |
Jun
(241) |
Jul
(320) |
Aug
(330) |
Sep
(209) |
Oct
(217) |
Nov
(460) |
Dec
(392) |
| 2011 |
Jan
(338) |
Feb
(465) |
Mar
(1257) |
Apr
(433) |
May
(505) |
Jun
(417) |
Jul
(438) |
Aug
(241) |
Sep
(258) |
Oct
(223) |
Nov
(224) |
Dec
(172) |
| 2012 |
Jan
(151) |
Feb
(119) |
Mar
(220) |
Apr
(182) |
May
(236) |
Jun
(264) |
Jul
(188) |
Aug
(145) |
Sep
(186) |
Oct
(183) |
Nov
(243) |
Dec
(126) |
| 2013 |
Jan
(133) |
Feb
(165) |
Mar
(122) |
Apr
(116) |
May
(177) |
Jun
(177) |
Jul
(290) |
Aug
(150) |
Sep
(165) |
Oct
(168) |
Nov
(252) |
Dec
(152) |
| 2014 |
Jan
(109) |
Feb
(150) |
Mar
(135) |
Apr
(186) |
May
(235) |
Jun
(181) |
Jul
(193) |
Aug
(117) |
Sep
(118) |
Oct
(194) |
Nov
(207) |
Dec
(261) |
| 2015 |
Jan
(138) |
Feb
(218) |
Mar
(180) |
Apr
(141) |
May
(114) |
Jun
(24) |
Jul
(22) |
Aug
(14) |
Sep
(22) |
Oct
(11) |
Nov
(7) |
Dec
(10) |
| 2016 |
Jan
(1) |
Feb
(31) |
Mar
(13) |
Apr
(30) |
May
(34) |
Jun
(25) |
Jul
(16) |
Aug
(14) |
Sep
(21) |
Oct
(20) |
Nov
(6) |
Dec
|
|
From: Sebastian W. <wp...@us...> - 2006-01-26 14:22:01
|
Update of /cvsroot/qooxdoo/qooxdoo/tools In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27655/tools Modified Files: Tag: renderer makesource.sh patchtest.sh Log Message: Restructured test examples Index: patchtest.sh =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/tools/patchtest.sh,v retrieving revision 1.5.2.7 retrieving revision 1.5.2.8 diff -u -d -r1.5.2.7 -r1.5.2.8 --- patchtest.sh 17 Dec 2005 15:38:21 -0000 1.5.2.7 +++ patchtest.sh 26 Jan 2006 14:21:42 -0000 1.5.2.8 @@ -3,8 +3,8 @@ cd `dirname $0`/.. echo ">>> Syncing files..." -mkdir -p public/test -rsync -av --exclude=CVS source/test public +mkdir -p public/html +rsync -av --exclude=CVS source/html public mkdir -p public/images rsync -av --exclude=CVS source/images public/ @@ -14,7 +14,7 @@ echo ">>> Patching files..." prevfile="" -for file in `find source/test/ -name "*.html"`; +for file in `find source/html/ -name "*.html"`; do dfile=`echo $file | sed s:source:public:g` name=`basename $file | cut -d"." -f1 | sed s:"_":" ":g` Index: makesource.sh =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/tools/makesource.sh,v retrieving revision 1.3.2.6 retrieving revision 1.3.2.7 diff -u -d -r1.3.2.6 -r1.3.2.7 --- makesource.sh 13 Jan 2006 11:20:53 -0000 1.3.2.6 +++ makesource.sh 26 Jan 2006 14:21:42 -0000 1.3.2.7 @@ -15,12 +15,16 @@ cat script/demolayout.js.in > script/demolayout.js -devstr="" -for file in ../source/test/developer/*.html ; do devstr="$devstr `basename $file`"; done -echo "var devstr = \"$devstr\";" >> script/demolayout.js +showstr="" +for file in ../source/html/showcase/*.html ; do showstr="$showstr `basename $file`"; done +echo "var showstr = \"$showstr\";" >> script/demolayout.js -usrstr="" -for file in ../source/test/user/*.html ; do usrstr="$usrstr `basename $file`"; done -echo "var usrstr = \"$usrstr\";" >> script/demolayout.js +exastr="" +for file in ../source/html/example/*.html ; do exastr="$exastr `basename $file`"; done +echo "var exastr = \"$exastr\";" >> script/demolayout.js + +teststr="" +for file in ../source/html/test/*.html ; do teststr="$teststr `basename $file`"; done +echo "var teststr = \"$teststr\";" >> script/demolayout.js echo "showTestFiles();" >> script/demolayout.js |
|
From: Sebastian W. <wp...@us...> - 2006-01-26 14:21:54
|
Update of /cvsroot/qooxdoo/qooxdoo/source/html/test/data/loadByName In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27655/source/html/test/data/loadByName Added Files: Tag: renderer Anita.xml Harald.xml Lisbeth.xml Paul.xml Log Message: Restructured test examples --- NEW FILE: Lisbeth.xml --- <?xml version="1.0" encoding="iso-8859-1"?> <PfxData> <PfxRequest> <PfxSoap reqname="loadByName">Lisbeth</PfxSoap> </PfxRequest> <PfxResult> <name>Meyer</name> <givenName>Lisbeth</givenName> <age>74</age> <street>Burlington Plaza</street> <plz>32323</plz> <city>New York</city> <country>United States</country> <phone>0030.302020234</phone> </PfxResult> </PfxData> --- NEW FILE: Harald.xml --- <?xml version="1.0" encoding="iso-8859-1"?> <PfxData> <PfxRequest> <PfxSoap reqname="loadByName">Harald</PfxSoap> </PfxRequest> <PfxResult> <name>Schmidt</name> <givenName>Harald</givenName> <age>65</age> <street>Karlsruher Allee</street> <plz>78392</plz> <city>Stuttgart</city> <country>Germany</country> <phone>0049.750930302</phone> </PfxResult> </PfxData> --- NEW FILE: Anita.xml --- <?xml version="1.0" encoding="iso-8859-1"?> <PfxData> <PfxRequest> <PfxSoap reqname="loadByName">Anita</PfxSoap> </PfxRequest> <PfxResult> <name>Hummel</name> <givenName>Anita</givenName> <age>42</age> <street>Getho Bals</street> <plz>22432</plz> <city>Paris</city> <country>France</country> <phone>0044.44930209</phone> </PfxResult> </PfxData> --- NEW FILE: Paul.xml --- <?xml version="1.0" encoding="iso-8859-1"?> <PfxData> <PfxRequest> <PfxSoap reqname="loadByName">Paul</PfxSoap> </PfxRequest> <PfxResult> <name>Fuettner</name> <givenName>Paul</givenName> <age>27</age> <street>Bismarckstrasse</street> <plz>33990</plz> <city>Garbsen</city> <country>Germany</country> <phone>0049.57232067</phone> </PfxResult> </PfxData> |
Update of /cvsroot/qooxdoo/qooxdoo/source/test/developer In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27655/source/test/developer Removed Files: Tag: renderer Application_1.html Atom_1.html Atom_2.html Atom_3.html Atom_4.html Atom_5.html Atom_6.html Atom_7.html Atom_8.html Atom_9.html Auto_Dimensions_1.html Auto_Dimensions_10.html Auto_Dimensions_2.html Auto_Dimensions_3.html Auto_Dimensions_4.html Auto_Dimensions_5.html Auto_Dimensions_6.html Auto_Dimensions_7.html Auto_Dimensions_8.html Auto_Dimensions_9.html Block_1.html Canvas_Layout_Performance_1.html Canvas_Layout_Performance_2.html Canvas_Layout_Performance_3.html Canvas_Layout_Performance_4.html Clone_1.html Clone_2.html Compile_1.html Compile_2.html Compile_2.js Cross_Browser_1.html Cross_Browser_2.html Event_Manager_1.html Event_Manager_2.html Focus_Manager_1.html Focus_Manager_2.html Image_1.html Image_2.html Image_3.html Index.html Overflow_Handling_1.html Performance_1.html Performance_2.html Popups_1.html Popups_2.html Umlauts_1.html cssQuery-p.js Log Message: Restructured test examples --- Atom_2.html DELETED --- --- Image_2.html DELETED --- --- Atom_1.html DELETED --- --- Image_1.html DELETED --- --- Atom_9.html DELETED --- --- Image_3.html DELETED --- --- Auto_Dimensions_2.html DELETED --- --- Canvas_Layout_Performance_3.html DELETED --- --- Umlauts_1.html DELETED --- --- Cross_Browser_2.html DELETED --- --- Application_1.html DELETED --- --- Compile_2.html DELETED --- --- Auto_Dimensions_1.html DELETED --- --- Performance_2.html DELETED --- --- Popups_2.html DELETED --- --- Atom_7.html DELETED --- --- Canvas_Layout_Performance_2.html DELETED --- --- Atom_8.html DELETED --- --- Popups_1.html DELETED --- --- Auto_Dimensions_8.html DELETED --- --- Auto_Dimensions_7.html DELETED --- --- Index.html DELETED --- --- Block_1.html DELETED --- --- Clone_2.html DELETED --- --- Compile_1.html DELETED --- --- Focus_Manager_2.html DELETED --- --- Auto_Dimensions_5.html DELETED --- --- Clone_1.html DELETED --- --- Event_Manager_1.html DELETED --- --- Compile_2.js DELETED --- --- Performance_1.html DELETED --- --- Atom_3.html DELETED --- --- Auto_Dimensions_3.html DELETED --- --- Canvas_Layout_Performance_1.html DELETED --- --- Atom_4.html DELETED --- --- Focus_Manager_1.html DELETED --- --- Atom_6.html DELETED --- --- Auto_Dimensions_6.html DELETED --- --- Cross_Browser_1.html DELETED --- --- Auto_Dimensions_10.html DELETED --- --- Canvas_Layout_Performance_4.html DELETED --- --- Auto_Dimensions_4.html DELETED --- --- Atom_5.html DELETED --- --- Event_Manager_2.html DELETED --- --- Auto_Dimensions_9.html DELETED --- --- cssQuery-p.js DELETED --- --- Overflow_Handling_1.html DELETED --- |
Update of /cvsroot/qooxdoo/qooxdoo/source/html/test In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27655/source/html/test Added Files: Tag: renderer Atom_1.html Atom_2.html Atom_3.html Atom_4.html Atom_5.html Atom_6.html Atom_7.html Atom_8.html Atom_9.html Border_1.html BoxLayout_1.html BoxLayout_2.html Builder_1.html Builder_2.html Builder_3.html Builder_4.html Button_2.html CanvasLayout_1.html CanvasLayout_2.html CanvasLayout_3.html CanvasLayout_4.html CanvasLayout_5.html Clipping_1.html Clone_1.html Clone_2.html ColorTheme_1.html ColorTheme_2.html ColorTheme_3.html ComboBox_1.html ComboBox_2.html ComboBox_3.html Compile_1.html Compile_2.html CrossBrowser_1.html CrossBrowser_2.html DataHandling_1.html DataHandling_2.html DockLayout_1.html DockLayout_2.html DockLayout_3.html DockLayout_4.html DockLayout_5.html DockLayout_6.html DragAndDropManager_1.html DragAndDropManager_2.html EnabledDisabled_1.html FieldSet_1.html Fields_1.html FlowLayout_1.html FlowLayout_2.html FlowLayout_3.html FocusManager_1.html Font_1.html Gallery_2.html Gallery_3.html GridLayout_1.html GridLayout_10.html GridLayout_11.html GridLayout_2.html GridLayout_3.html GridLayout_4.html GridLayout_5.html GridLayout_6.html GridLayout_7.html GridLayout_8.html GridLayout_9.html HorizontalBoxLayout_1.html HorizontalBoxLayout_2.html HorizontalBoxLayout_3.html IconHtml_1.html Image_1.html Image_2.html Image_3.html Image_4.html Label_1.html Label_2.html Label_3.html Label_4.html Link_1.html ListView_1.html ListView_10.html ListView_2.html ListView_3.html ListView_4.html ListView_5.html ListView_6.html ListView_7.html ListView_8.html ListView_9.html List_1.html List_2.html List_3.html Menu_1.html Menu_2.html Node_1.html Performance_1.html Performance_2.html Popups_1.html Popups_2.html RoundedCorners_1.html ToolBar_1.html ToolBar_2.html ToolBar_3.html ToolBar_4.html Tree_1.html Tree_2.html Tree_3.html Tree_4.html Tree_5.html Tree_6.html Umlauts_1.html UserData_1.html VerticalBoxLayout_1.html VerticalBoxLayout_2.html VerticalBoxLayout_3.html Window_1.html Window_2.html Window_3.html Window_4.html Window_5.html Log Message: Restructured test examples --- NEW FILE: Image_4.html --- <?xml version="1.0" encoding="iso-8859-1"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de"> <head> <script type="text/javascript">window._htmlstart=(new Date).valueOf()</script> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-15" /> <meta http-equiv="MsThemeCompatible" content="yes" /> <meta http-equiv="ImageToolBar" content="no" /> <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> </head> <body> <script type="text/javascript" src="../../../tools/script/demolayout.js"></script> <div id="testDescription"> QxImage Stress Test </div> <script type="text/javascript"> window.application.main = function() { var d = this.getClientWindow().getClientDocument(); var w; for (var i=1; i<=10; i++) { for (var j=1; j<=10; j++) { var w = new QxImage("icons/16/clock.png"); w.setLeft(20+(16*i)); w.setTop(48+(16*j)); d.add(w); }; }; }; </script> </body> </html> --- NEW FILE: ComboBox_2.html --- <?xml version="1.0" encoding="iso-8859-1"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de"> <head> <script type="text/javascript">window._htmlstart=(new Date).valueOf()</script> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-15" /> <meta http-equiv="MsThemeCompatible" content="yes" /> <meta http-equiv="ImageToolBar" content="no" /> <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> </head> <body> <script type="text/javascript" src="../../../tools/script/demolayout.js"></script> <div id="testDescription"> <p>Testing QxComboBox implementation.</p> <p>Testing object creation (the list content will be filled then) on first open.</p> <p>Added Color Theme Buttons</p> </div> <select style="position:absolute; left:300px; top:48px; width: 120px;"> <option>Item No 1</option> <option>Item No 2</option> <option>Item No 3</option> <option>Item No 4</option> <option>Item No 5</option> <option>Item No 6</option> <option>Item No 7</option> <option>Item No 8</option> <option>Item No 9</option> <option disabled="true">Item No 10</option> <option>Item No 11</option> <option>Item No 12</option> <option>Item No 13</option> <option>Item No 14</option> <option>Item No 15</option> <option>Item No 16</option> <option>Item No 17</option> <option>Item No 18</option> <option>Item No 19</option> <option disabled="true">Item No 20</option> <option>Item No 21</option> <option>Item No 22</option> <option>Item No 23</option> <option>Item No 24</option> <option>Item No 23</option> <option>Item No 24</option> <option>Item No 25</option> <option>Item No 26</option> <option>Item No 27</option> <option>Item No 28</option> <option>Item No 29</option> <option disabled="true">Item No 30</option> </select> <script type="text/javascript"> window.application.main = function() { var d = this.getClientWindow().getClientDocument(); var c1 = new QxComboBox; c1.setLocation(20, 48); c1.addEventListener("beforeInitialOpen", function(e) { var item; for(var i=1; i<=30; i++) { item = new QxListItem("Item No " + i); !(i % 10) && (item.setEnabled(false)); c1.add(item); }; }); // this does not work here (if there is no content) c1.setSelected(c1.getList().getFirstChild()); c1.addEventListener("changeValue", function(e) { this.debug("New value: " + e.getNewValue()); }); c1.addEventListener("changeSelected", function(e) { this.debug("New selected: " + e.getNewValue()); }); var b1 = new QxCheckBox("Editable"); b1.set({ top: 50, left: 150 }); b1.addEventListener("changeChecked", function(e) { c1.setEditable(e.getNewValue()); }); d.add(c1, b1); // Color Themes QxColorManager.createThemeList(d, 20, 248); }; </script> </body> </html> --- NEW FILE: Image_2.html --- <?xml version="1.0" encoding="iso-8859-1"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de"> <head> <script type="text/javascript">window._htmlstart=(new Date).valueOf()</script> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-15" /> <meta http-equiv="MsThemeCompatible" content="yes" /> <meta http-equiv="ImageToolBar" content="no" /> <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> </head> <body> <script type="text/javascript" src="../../../tools/script/demolayout.js"></script> <div id="testDescription"> Some advanced tests for QxImage. Click on the fourth and fivth image to test the reflow possibilities. The debug log gives you information of the preferred dimensions. </div> <script type="text/javascript"> window.application.main = function() { var d = this.getClientWindow().getClientDocument(); var i1 = new QxImage("icons/64/package.png"); i1.setLeft(20); i1.setTop(48); i1.addEventListener("load", function() { this.debug("Image 1: " + this.getPreferredBoxWidth() + "x" + this.getPreferredBoxHeight()); }); var i2 = new QxImage("icons/64/package.png"); i2.setLeft(120); i2.setTop(48); i2.setBorder(QxBorder.presets.black); i2.setPadding(2, 4); i2.addEventListener("load", function() { this.debug("Image 2: " + this.getPreferredBoxWidth() + "x" + this.getPreferredBoxHeight()); }); var i3 = new QxImage("icons/64/package.png"); i3.setLeft(220); i3.setTop(48); i3.setBorder(QxBorder.presets.black); i3.setPadding(8); i3.setOpacity(0.5); i3.addEventListener("load", function() { this.debug("Image 3: " + this.getPreferredBoxWidth() + "x" + this.getPreferredBoxHeight()); }); var i4 = new QxImage("icons/64/package.png"); i4.setLeft(320); i4.setTop(48); i4.setBorder(QxBorder.presets.black); i4.setPadding(2, 4); i4.addEventListener("load", function() { this.debug("Image 4: " + this.getPreferredBoxWidth() + "x" + this.getPreferredBoxHeight()); }); i4.addEventListener("click", function() { this.setSource(this.getSource() == "icons/64/package.png" ? "icons/32/package.png" : "icons/64/package.png"); }); var i5w1 = new QxCanvasLayout; i5w1.setBorder(QxBorderObject.presets.outset); i5w1.setPadding(8); i5w1.setLeft(420); i5w1.setTop(48); i5w1.setWidth("auto"); i5w1.setHeight("auto"); var i5w2 = new QxCanvasLayout; i5w2.setBorder(QxBorderObject.presets.outset); i5w2.setPadding(8); i5w2.setLeft(0); i5w2.setTop(0); i5w2.setWidth("auto"); i5w2.setHeight("auto"); var i5w3 = new QxCanvasLayout; i5w3.setBorder(QxBorderObject.presets.outset); i5w3.setPadding(8); i5w3.setLeft(0); i5w3.setTop(0); i5w3.setWidth("auto"); i5w3.setHeight("auto"); var i5 = new QxImage("icons/64/package.png"); i5.setBorder(QxBorder.presets.black); i5.setPadding(2, 4); i5.addEventListener("load", function() { this.debug("Image 4: " + this.getPreferredBoxWidth() + "x" + this.getPreferredBoxHeight()); }); i5.addEventListener("click", function() { this.setSource(this.getSource() == "icons/64/package.png" ? "icons/32/package.png" : "icons/64/package.png"); }); i5w1.add(i5w2); i5w2.add(i5w3); i5w3.add(i5); d.add(i5w1); var i6 = new QxImage("icons/128/paint.png"); i6.setLeft(20); i6.setRight(400); i6.setTop(200); i6.setHeight(150); i6.setBorder(QxBorder.presets.black); i6.setWidth(null); var i7 = new QxImage("icons/128/paint.png"); i7.setLeft(20); i7.setRight(400); i7.setTop(400); i7.setHeight(150); i7.setBorder(QxBorder.presets.black); i7.setResizeToInner(true); i7.setWidth(null); d.add(i1, i2, i3, i4, i6, i7); }; </script> </body> </html> --- NEW FILE: ListView_1.html --- <?xml version="1.0" encoding="iso-8859-1"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de"> <head> <script type="text/javascript">window._htmlstart=(new Date).valueOf()</script> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-15" /> <meta http-equiv="MsThemeCompatible" content="yes" /> <meta http-equiv="ImageToolBar" content="no" /> <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> </head> <body> <script type="text/javascript" src="../../../tools/script/demolayout.js"></script> <div id="testDescription"> <p>Testing QxListView with text cells.</p> <p>Same as #1, but now disabled the interval update.</p> </div> <script type="text/javascript"> window.application.main = function() { var ld = []; var lt = [ "Image", "Text", "PDF", "Illustration", "Document" ]; for (var i=0, t; i<1000; i++) { t=Math.round(Math.random()*4); ld.push({ name : { text : "File " + i }, size : { text : Math.round(Math.random()*100) + "kb" }, type : { text : lt[t] }, modified : { text : "Nov " + Math.round(Math.random() * 30 + 1) + " 2005" }, rights: { text : "-rw-r--r--" }}); }; var lc = { name : { label : "Name", width : 100, type : "text" }, size: { label : "Size", width : 50, type : "text", align : "right" }, type : { label : "Type", width : 80, type : "text" }, modified : { label : "Last Modified", width : 150, type : "text" }, rights : { label : "Rights", width: 80, type : "text" } }; var lv = new QxListView(ld, lc); lv.setBorder(QxBorderObject.presets.shadow); lv.setBackgroundColor("white"); lv.setWidth(600); lv.setHeight(350); lv.setLocation(20, 48); lv.setTimerBasedUpdate(false); this.add(lv); // Color Themes QxColorManager.createThemeList(this.getClientWindow().getClientDocument(), 20, 448); }; </script> </body> </html> --- NEW FILE: Gallery_3.html --- <?xml version="1.0" encoding="iso-8859-1"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de"> <head> <script type="text/javascript">window._htmlstart=(new Date).valueOf()</script> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-15" /> <meta http-equiv="MsThemeCompatible" content="yes" /> <meta http-equiv="ImageToolBar" content="no" /> <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> <link type="text/css" rel="stylesheet" href="../../style/gallery.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> </head> <body> <script type="text/javascript" src="../../../tools/script/demolayout.js"></script> <div id="testDescription"> <p>Test file for QxGallery, now with QxToolTips assigned.</p> <button onclick="updateAdd()">Update Add</button> </div> <style type="text/css"> .QxGallery{ background: #fff; padding: 5px; } .QxGallery .galleryCell{ margin: 5px; border: 1px solid #DCDFE8; } .QxGallery .galleryCell-Selected{ border: 1px solid #5E6474; background: #DADDE4; } </style> <script type="text/javascript"> var updateAdd; window.application.main = function() { var galleryList = []; for (var i=0; i<100; i++) { galleryList.push({ display : "bmzN9ci5", width : 350, height : 350, thumbWidth : 64, thumbHeight : 64, title : "gohome" + i + ".png", timestamp : Math.random().toString(), comment : "Cool Comment: " + i, id : "7686191121780974-10682-" + i, src : "../../images/icons/crystalsvg/64/paint.png" }); }; var gallery = new QxGallery(galleryList); gallery.setLeft(20); gallery.setRight(335); gallery.setTop(48); gallery.setBottom(48); gallery.setBorder(QxBorder.presets.black); gallery.setShowTitle(false); gallery.setShowComment(false); gallery.setDecorHeight(0); this.getClientWindow().getClientDocument().add(gallery); var toolTip = new QxToolTip("Photo Details", "icons/32/colors.png"); gallery.addEventListener("beforeToolTipAppear", function(e) { var vNode = e.getNewValue(); var vEntry = this.getEntryByNode(vNode); toolTip.getAtom().setLabel("<strong>" + vEntry.title + "</strong><br/>" + vEntry.comment); this.setToolTip(toolTip); }); updateAdd = function() { var galleryListUpdated = gallery.getList().copy(); for (var i=galleryListUpdated.length, j=i+10; i<j; i++) { galleryListUpdated.push({ display : "bmzN9ci5", width : 350, height : 350, thumbWidth : 64, thumbHeight : 64, title : "gohome" + i + ".png", timestamp : Math.random().toString(), comment : "Cool Comment: " + i, id : "7686191121780974-10682-" + i, src : "../../images/icons/crystalsvg/64/colors.png" }); }; gallery.addFromUpdatedList(galleryListUpdated); }; }; </script> </body> </html> --- NEW FILE: ComboBox_1.html --- <?xml version="1.0" encoding="iso-8859-1"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de"> <head> <script type="text/javascript">window._htmlstart=(new Date).valueOf()</script> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-15" /> <meta http-equiv="MsThemeCompatible" content="yes" /> <meta http-equiv="ImageToolBar" content="no" /> <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> </head> <body> <script type="text/javascript" src="../../../tools/script/demolayout.js"></script> <div id="testDescription"> <p>Testing QxComboBox implementation.</p> <p>Testing object creation (the list content will be filled then) on first open.</p> </div> <select style="position:absolute; left:300px; top:48px; width: 120px;"> <option>Item No 1</option> <option>Item No 2</option> <option>Item No 3</option> <option>Item No 4</option> <option>Item No 5</option> <option>Item No 6</option> <option>Item No 7</option> <option>Item No 8</option> <option>Item No 9</option> <option disabled="true">Item No 10</option> <option>Item No 11</option> <option>Item No 12</option> <option>Item No 13</option> <option>Item No 14</option> <option>Item No 15</option> <option>Item No 16</option> <option>Item No 17</option> <option>Item No 18</option> <option>Item No 19</option> <option disabled="true">Item No 20</option> <option>Item No 21</option> <option>Item No 22</option> <option>Item No 23</option> <option>Item No 24</option> <option>Item No 23</option> <option>Item No 24</option> <option>Item No 25</option> <option>Item No 26</option> <option>Item No 27</option> <option>Item No 28</option> <option>Item No 29</option> <option disabled="true">Item No 30</option> </select> <script type="text/javascript"> window.application.main = function() { var d = this.getClientWindow().getClientDocument(); var c1 = new QxComboBox; c1.setLocation(20, 48); c1.addEventListener("beforeInitialOpen", function(e) { var item; for(var i=1; i<=30; i++) { item = new QxListItem("Item No " + i); !(i % 10) && (item.setEnabled(false)); c1.add(item); }; }); // this does not work here (if there is no content) c1.setSelected(c1.getList().getFirstChild()); c1.addEventListener("changeValue", function(e) { this.debug("New value: " + e.getNewValue()); }); c1.addEventListener("changeSelected", function(e) { this.debug("New selected: " + e.getNewValue()); }); var b1 = new QxCheckBox("Editable"); b1.set({ top: 50, left: 150 }); b1.addEventListener("changeChecked", function(e) { c1.setEditable(e.getNewValue()); }); d.add(c1, b1); }; </script> </body> </html> --- NEW FILE: Atom_2.html --- <?xml version="1.0" encoding="iso-8859-1"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de"> <head> <script type="text/javascript">window._htmlstart=(new Date).valueOf()</script> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-15" /> <meta http-equiv="MsThemeCompatible" content="yes" /> <meta http-equiv="ImageToolBar" content="no" /> <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> </head> <body> <script type="text/javascript" src="../../../tools/script/demolayout.js"></script> <div id="testDescription"> <p>Example to show correct calculations of QxAtom sizes. Normally a QxAtom has only the size of its content.</p> </div> <script type="text/javascript"> window.application.main = function() { var w = this.getClientWindow().getClientDocument(); function alertoff() { alert(this.getElement().offsetWidth + "x" + this.getElement().offsetHeight); }; var l1 = new QxCanvasLayout(); var l2 = new QxCanvasLayout(); with(l1) { setTop(100); setLeft(20); setWidth(500); setHeight(1); setBackgroundColor("red"); }; with(l2) { setTop(123); setLeft(20); setWidth(500); setHeight(1); setBackgroundColor("red"); }; w.add(l1); w.add(l2); var a1 = new QxAtom("Pure Text", "icons/22/folder.png"); var a2 = new QxAtom(null, "icons/22/folder.png"); with(a1) { setBorder(new QxBorder(1, "solid", "black")); setTop(100); setLeft(120); }; with(a2) { setBorder(new QxBorder(1, "solid", "black")); setTop(100); setLeft(300); }; w.add(a1); w.add(a2); a1.addEventListener("click", alertoff); a2.addEventListener("click", alertoff); var l3 = new QxCanvasLayout(); var l4 = new QxCanvasLayout(); with(l3) { setTop(200); setLeft(20); setWidth(500); setHeight(1); setBackgroundColor("red"); }; with(l4) { setTop(233); setLeft(20); setWidth(500); setHeight(1); setBackgroundColor("red"); }; w.add(l3); w.add(l4); var b1 = new QxAtom("Pure Text", "icons/32/network.png"); var b2 = new QxAtom(null, "icons/32/network.png"); with(b1) { setBorder(new QxBorder(1, "solid", "black")); setTop(200); setLeft(120); }; with(b2) { setBorder(new QxBorder(1, "solid", "black")); setTop(200); setLeft(300); }; w.add(b1); w.add(b2); b1.addEventListener("click", alertoff); b2.addEventListener("click", alertoff); var l5 = new QxCanvasLayout(); var l6 = new QxCanvasLayout(); with(l5) { setTop(300); setLeft(20); setWidth(500); setHeight(1); setBackgroundColor("red"); }; with(l6) { setTop(317); setLeft(20); setWidth(500); setHeight(1); setBackgroundColor("red"); }; w.add(l5); w.add(l6); var c1 = new QxAtom("Pure Text", "icons/16/network.png"); var c2 = new QxAtom(null, "icons/16/network.png"); with(c1) { setBorder(new QxBorder(1, "solid", "black")); setTop(300); setLeft(120); }; with(c2) { setBorder(new QxBorder(1, "solid", "black")); setTop(300); setLeft(300); }; w.add(c1); w.add(c2); c1.addEventListener("click", alertoff); c2.addEventListener("click", alertoff); }; </script> </body> </html> --- NEW FILE: ColorTheme_1.html --- <?xml version="1.0" encoding="iso-8859-1"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de"> <head> <script type="text/javascript">window._htmlstart=(new Date).valueOf()</script> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-15" /> <meta http-equiv="MsThemeCompatible" content="yes" /> <meta http-equiv="ImageToolBar" content="no" /> <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> </head> <body> <script type="text/javascript" src="../../../tools/script/demolayout.js"></script> <div id="testDescription"> <p>Color Theme Test</p> </div> <script type="text/javascript"> window.application.main = function() { var d = this.getClientWindow().getClientDocument(); var w1 = new QxTerminator; w1.setWidth(100); w1.setHeight(100); w1.setBackgroundColor(new QxColor("yellow")); w1.setTop(48); w1.setLeft(20); d.add(w1); var w2 = new QxTerminator; w2.setWidth(100); w2.setHeight(100); w2.setBackgroundColor(new QxColorObject("activecaption")); w2.setTop(48); w2.setLeft(150); d.add(w2); var w3 = new QxTerminator; w3.setWidth(100); w3.setHeight(100); w3.setBackgroundColor("red"); w3.setTop(200); w3.setLeft(20); d.add(w3); var w4 = new QxTerminator; w4.setWidth(100); w4.setHeight(100); w4.setBackgroundColor("red"); w4.setTop(200); w4.setLeft(150); d.add(w4); var w5 = new QxLabel("Hello World"); w5.setTop(320); w5.setLeft(20); w5.setColor("red"); d.add(w5); var w6 = new QxTerminator; w6.setWidth(100); w6.setHeight(100); w6.setBackgroundColor("activecaption"); w6.setTop(400); w6.setLeft(20); d.add(w6); var w7 = new QxTerminator; w7.setWidth(100); w7.setHeight(100); w7.setBackgroundColor("activeCaption"); w7.setTop(400); w7.setLeft(150); d.add(w7); var w8 = new QxLabel("Hello World"); w8.setTop(520); w8.setLeft(20); w8.setColor("ActiveCaption"); d.add(w8); var w9 = new QxAtom("Super qooxdoo", "icons/48/tip.png"); w9.setTop(520); w9.setLeft(200); w9.setBorder(new QxBorderObject(2, "solid", "activeCaption")); w9.setBackgroundColor("threedlightshadow"); d.add(w9); var w10 = new QxAtom("Super qooxdoo", "icons/48/tip.png"); w10.setTop(520); w10.setLeft(400); w10.setBorder(new QxBorderObject(2, "solid", new QxColorObject("activeCaption"))); w10.setBackgroundColor("threedlightshadow"); d.add(w10); var w11 = new QxLabel("Hello World"); w11.setTop(600); w11.setLeft(20); w11.setBackgroundColor([232,102,255]); w11.setColor(20,30,60); w11.setBorder(1, "solid", "red"); d.add(w11); var w12 = new QxLabel("Hello World"); w12.setTop(600); w12.setLeft(120); w12.setBackgroundColor([232,102,255]); w12.setColor(20,30,60); w12.setBorder([1, "solid", "red"]); d.add(w12); var w13 = new QxLabel("Hello World"); w13.setLocation(220, 600); w13.setBackgroundColor([232,102,255]); w13.setColor(20,30,60); w13.setBorder([1, "solid", "activeCaption"]); d.add(w13); var myBoundedBorder1 = new QxBorder(1, "solid", [200,10,20]); var w14 = new QxTerminator; w14.setWidth(100); w14.setHeight(100); w14.setLeft(600); w14.setTop(100); w14.setBorder(myBoundedBorder1); d.add(w14); // should not work with QxBorder - use QxBorderObject instead w14.addEventListener("click", function(e) { myBoundedBorder1.setTopColor([100,200,200]); myBoundedBorder1.setTopWidth(10); }); var myBoundedBorder2 = new QxBorderObject(1, "solid", [200,10,20]); var w15 = new QxTerminator; w15.setWidth(100); w15.setHeight(100); w15.setLeft(600); w15.setTop(210); w15.setBorder(myBoundedBorder2); d.add(w15); w15.addEventListener("click", function(e) { myBoundedBorder2.setTopColor([100,200,200]); myBoundedBorder2.setTopWidth(10); }); // Color Themes QxColorManager.createThemeList(d, 350, 128); }; </script> </body> </html> --- NEW FILE: Compile_2.html --- <?xml version="1.0" encoding="iso-8859-1"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de"> <head> <script type="text/javascript">window._htmlstart=(new Date).valueOf()</script> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-15" /> <meta http-equiv="MsThemeCompatible" content="yes" /> <meta http-equiv="ImageToolBar" content="no" /> <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> </head> <body> <script type="text/javascript" src="../../../tools/script/demolayout.js"></script> <div id="testDescription"> </div> <div style="border: 2px outset ; -moz-user-select: none; -moz-user-focus: normal; cursor: default; background-color: buttonface; -moz-border-left-colors: 37 36; -moz-border-right-colors: 34 38; -moz-border-top-colors: 37 36; -moz-border-bottom-colors: 34 38; width: 102px; height: 42px; left: 20px; top: 50px;" class="QxWidgetCore QxButton" qxhashcode="74"><div qxhashcode="78" title="" class="QxWidgetCore QxImage" style="-moz-user-select: none; left: 4px; top: 3px;"><img src="../../images/icons/crystalsvg/32/penguin.png" height="32" width="32"></div><div qxhashcode="77" class="QxWidgetCore QxLabel" style="-moz-user-select: none; left: 40px; top: 13px;">Hello World</div></div><div style="border: 2px outset ; -moz-user-select: none; -moz-user-focus: normal; cursor: default; background-color: buttonface; -moz-border-left-colors: 37 36; -moz-border-right-colors: 34 38; -moz-border-top-colors: 37 36; -moz-border-bottom-colors: 34 38; width: 102px; height: 42px; left: 220px; top: 50px;" class="QxWidgetCore QxButton" qxhashcode="86"><div qxhashcode="90" title="" class="QxWidgetCore QxImage" style="-moz-user-select: none; left: 4px; top: 3px;"><img src="../../images/icons/crystalsvg/32/appearance.png" height="32" width="32"></div><div qxhashcode="89" class="QxWidgetCore QxLabel" style="-moz-user-select: none; left: 40px; top: 13px;">Hello World</div></div> <script type="text/javascript" src="cssQuery-p.js"></script> <script type="text/javascript" src="Compile_2.js"></script> <script type="text/javascript"> window.application.pre = function() { this.debug("Pre-Execute"); this.debug("Object DB Length: " + QxObjectDataBase.length); }; window.application.post = function() { this.debug("Post-Execute"); this.debug("Children: " + $0.getChildren()); this.debug("Element: " + $0.getElement()); this.debug("Parent: " + $0.getParent()); this.debug("Box Width: " + $0.getBoxWidth()); this.debug("Has Mouse Down Event: " + $0.hasEventListeners("mousedown")); this.debug("Icon Preferred Width: " + $0.getChildren()[0].getPreferredBoxWidth()); this.debug("Object DB Length: " + QxObjectDataBase.length); $0.setIconPosition("top"); QxWidget.flushGlobalQueues(); }; </script> </body> </html> --- NEW FILE: HorizontalBoxLayout_1.html --- <?xml version="1.0" encoding="iso-8859-1"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de"> <head> <script type="text/javascript">window._htmlstart=(new Date).valueOf()</script> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-15" /> <meta http-equiv="MsThemeCompatible" content="yes" /> <meta http-equiv="ImageToolBar" content="no" /> <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> </head> <body> <script type="text/javascript" src="../../../tools/script/demolayout.js"></script> [...1228 lines suppressed...] else { this.setWidth(25); this.setHeight(25); this.setLeft(null); this.setBottom(null); }; }); hbl6.add(w6_1, w6_2, w6_3, w6_4, w6_5, w6_6, w6_7, w6_8, w6_9, w6_10); d.add(hbl6); }; </script> </body> </html> --- NEW FILE: List_1.html --- <?xml version="1.0" encoding="iso-8859-1"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de"> <head> <script type="text/javascript">window._htmlstart=(new Date).valueOf()</script> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-15" /> <meta http-equiv="MsThemeCompatible" content="yes" /> <meta http-equiv="ImageToolBar" content="no" /> <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> </head> <body> <script type="text/javascript" src="../../../tools/script/demolayout.js"></script> <div id="testDescription"> <p>List implementation. Now testing auto dimensions.</p> </div> <script type="text/javascript"> window.application.main = function() { var d = this.getClientWindow().getClientDocument(); var l1 = new QxList; l1.set({ top : 48, left: 20, height: 200, width: "auto", overflow : "scrollY" }); var item; for( var i=1; i<=35; i++ ) { // item = new QxListItem("Item No " + i); item = new QxListItem("Item No " + i, "icons/" + ((i % 4) ? "16" : "48") + "/folder.png"); !(i % 9) && (item.setEnabled(false)); l1.add(item); }; d.add(l1); var l2 = new QxList; l2.set({ top : 48, left: 400, height: 200, width: "auto" }); l2.getManager().setMultiSelection(false); //l2.setOverflow("scrollY"); l2.setHeight("auto"); var l2l = [ "red", "violett", "rose", "blue", "green", "cyan", "magenta", "yellow", "brown", "orange", "black", "white", "grey", "gray", "brown" ]; for (var i=0; i<l2l.length; i++) { l2.add(new QxListItem(l2l[i])); }; d.add(l2); var c1 = new QxCheckBox("Enable Multi-Selection"); var c2 = new QxCheckBox("Enable Drag-Selection"); var c3 = new QxCheckBox("Allow Deselection"); var c4 = new QxCheckBox("Enable Inline Find"); c1.setLocation(180, 48); c2.setLocation(180, 68); c3.setLocation(180, 88); c4.setLocation(180, 108); d.add(c1, c2, c3, c4); c1.setChecked(true); c2.setChecked(true); c3.setChecked(true); c4.setChecked(true); c1.addEventListener("changeChecked", function(e) { l1.getManager().setMultiSelection(e.getNewValue()); }); c2.addEventListener("changeChecked", function(e) { l1.getManager().setDragSelection(e.getNewValue()); }); c3.addEventListener("changeChecked", function(e) { l1.getManager().setCanDeselect(e.getNewValue()); }); c4.addEventListener("changeChecked", function(e) { l1.setEnableInlineFind(e.getNewValue()); }); var rd1 = new QxRadioButton("Show Label", "label"); var rd2 = new QxRadioButton("Show Icon", "icon"); var rd3 = new QxRadioButton("Show Both", "both"); rd1.set( { left: 180, top: 128 } ); rd2.set( { left: 180, top: 148 } ); rd3.set( { left: 180, top: 168 } ); d.add(rd1, rd2, rd3); rd3.setChecked(true); var rbm = new QxRadioManager( name, [rd1, rd2, rd3]); rbm.addEventListener("changeSelected", function(e) { for( var i=0; i<l1.getChildrenLength(); i++ ) { l1.getChildren()[i].setShow(e.getNewValue().getValue()); }; }); // Icon Themes QxImageManager.createThemeList(d, 20, 348); // Color Themes QxColorManager.createThemeList(d, 200, 348); }; </script> </body> </html> --- NEW FILE: Performance_2.html --- <?xml version="1.0" encoding="iso-8859-1"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de"> <head> <script type="text/javascript">window._htmlstart=(new Date).valueOf()</script> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-15" /> <meta http-equiv="MsThemeCompatible" content="yes" /> <meta http-equiv="ImageToolBar" content="no" /> <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> </head> <body> <script type="text/javascript" src="../../../tools/script/demolayout.js"></script> <div id="testDescription"> <p>Tests for qooxdoo object performance</p> <ol> <li>QxObject</li> <li>QxTarget</li> <li>QxEvent</li> <li>QxMouseEvent</li> <li>QxTerminator</li> <li>QxCanvasLayout</li> <li>QxBoxLayout</li> </ol> </div> <script type="text/javascript"> window.application.main = function() { function TestQxObject(vLoops) { for (var i=0; i<vLoops; i++) { new QxObject; }; }; function TestQxTarget(vLoops) { for (var i=0; i<vLoops; i++) { new QxTarget; }; }; function TestQxEvent(vLoops) { for (var i=0; i<vLoops; i++) { new QxEvent; }; }; function TestQxMouseEvent(vLoops) { for (var i=0; i<vLoops; i++) { new QxMouseEvent; }; }; function TestQxTerminator(vLoops) { for (var i=0; i<vLoops; i++) { new QxTerminator; }; }; function TestQxCanvasLayout(vLoops) { for (var i=0; i<vLoops; i++) { new QxCanvasLayout; }; }; function TestQxBoxLayout(vLoops) { for (var i=0; i<vLoops; i++) { new QxBoxLayout; }; }; new QxTimeTracker(TestQxObject, TestQxTarget, TestQxEvent, TestQxMouseEvent, TestQxTerminator, TestQxCanvasLayout, TestQxBoxLayout); }; </script> </body> </html> --- NEW FILE: Popups_2.html --- <?xml version="1.0" encoding="iso-8859-1"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de"> <head> <script type="text/javascript">window._htmlstart=(new Date).valueOf()</script> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-15" /> <meta http-equiv="MsThemeCompatible" content="yes" /> <meta http-equiv="ImageToolBar" content="no" /> <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> </head> <body> <script type="text/javascript" src="../../../tools/script/demolayout.js"></script> <div id="testDescription"> <p>Test for the QxPopup widget. QxPopups are planned as the source constructor for tooltips, menus, ...</p> <p>There is also a QxPopupManager which hides all registered QxPopup instances which are configured to auto hide. This is a nice method to omit to show more than one QxPopup together (omit multiple QxTooltips, ...).</p> <p>In this example we use a QxPopupAtom. This is a popup with an automatically included QxAtom, which allowes you to easily use it for messages to the user or something like this.</p> </div> <script type="text/javascript"> window.application.main = function() { var d = this.getClientWindow().getClientDocument(); var w1 = new QxButton("Press"); with(w1) { setTop(48); setLeft(20); setBackgroundColor(new QxColor("#BDD2EF")); setWidth(100); setHeight(100); setBorder(QxBorderObject.presets.outset); setHorizontalAlign("center"); }; d.add(w1); var w2 = new QxButton("Press"); with(w2) { setTop(48); setLeft(140); setBackgroundColor(new QxColor("#D1DFAD")); setWidth(100); setHeight(100); setBorder(QxBorderObject.presets.outset); setHorizontalAlign("center"); }; d.add(w2); var p1 = new QxPopupAtom("Hello World #1", "icons/16/paint.png"); d.add(p1); with(p1) { setBackgroundColor(new QxColor("#FFFAD3")); setBorder(QxBorder.presets.black); setPadding(2, 4); }; w1.addEventListener("click", function(e) { p1.setTop(e.getPageY() + 3); p1.setLeft(e.getPageX() + 3); p1.show(); p1.bringToFront(); }); var p2 = new QxPopupAtom("Hello World #2", "icons/32/clock.png"); d.add(p2); with(p2) { setBackgroundColor(new QxColor("#DFFAD3")); setBorder(QxBorder.presets.black); setPadding(2, 4); }; w2.addEventListener("click", function(e) { p2.setTop(e.getPageY() + 3); p2.setLeft(e.getPageX() + 3); p2.show(); p2.bringToFront(); }); }; </script> </body> </html> --- NEW FILE: GridLayout_2.html --- <?xml version="1.0" encoding="iso-8859-1"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de"> <head> <script type="text/javascript">window._htmlstart=(new Date).valueOf()</script> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-15" /> <meta http-equiv="MsThemeCompatible" content="yes" /> <meta http-equiv="ImageToolBar" content="no" /> <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> </head> <body> <script type="text/javascript" src="../../../tools/script/demolayout.js"></script> <div id="testDescription"> <p>Test for QxGridLayout.</p> <p>Added some own sizes and use more complex children.</p> <p>The olive child has a width of 50% (which is related to the cell size here) and a horizontal alignment 'center'.</p> <p>The navi child has a height of 20 pixel and is aligned to the bottom of the cell.</p> </div> <script type="text/javascript"> window.application.main = function() { var gl = new QxGridLayout; gl.setLocation(20, 48); gl.setDimension(462, 128); gl.setBorder(QxBorderObject.presets.outset); gl.setPadding(2, 4); gl.setColumnCount(4); gl.setRowCount(2); gl.setColumnWidth(0, 100); gl.setColumnWidth(1, 200); gl.setColumnWidth(2, 50); gl.setColumnWidth(3, 100); gl.setRowHeight(0, 40); gl.setRowHeight(1, 80); this.add(gl); var term1 = new QxTerminator; term1.setBackgroundColor("yellow"); gl.add(term1, 0, 0); var term2 = new QxButton("Hello World", "icons/22/fax.png"); gl.add(term2, 1, 0); var term3 = new QxTerminator; term3.setBackgroundColor("green"); term3.setWidth(100); term3.setHeight(100); term3.setBorder("1px solid black"); gl.add(term3, 2, 0); var term4 = new QxTerminator; term4.setBackgroundColor("blue"); gl.add(term4, 3, 0); var term5 = new QxTerminator; term5.setBackgroundColor("fuchsia"); gl.add(term5, 0, 1); var term6 = new QxTerminator; term6.setBackgroundColor("olive"); term6.setWidth("50%"); term6.setHorizontalAlign("center"); gl.add(term6, 1, 1); var term7 = new QxTerminator; term7.setBackgroundColor("maroon"); gl.add(term7, 2, 1); var term8 = new QxTerminator; term8.setBackgroundColor("navy"); term8.setHeight(20); term8.setVerticalAlign("bottom"); gl.add(term8, 3, 1); }; </script> </body> </html> --- NEW FILE: ListView_8.html --- <?xml version="1.0" encoding="iso-8859-1"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de"> <head> <script type="text/javascript">window._htmlstart=(new Date).valueOf()</script> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-15" /> <meta http-equiv="MsThemeCompatible" content="yes" /> <meta http-equiv="ImageToolBar" content="no" /> <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> </head> <body> <script type="text/javascript" src="../../../tools/script/demolayout.js"></script> <div id="testDescription"> <p>Testing QxListView with text cells.</p> <p>And with drag and drop between the two QxListViews.</p> </div> <script type="text/javascript"> window.application.main = function() { var ld = []; var lt = [ "Image", "Text", "PDF", "Illustration", "Document" ]; for (var i=0, t; i<1000; i++) { t=Math.round(Math.random()*4); ld.push({ name : { text : "File " + i }, size : { text : Math.round(Math.random()*100) + "kb" }, type : { text : lt[t] }, modified : { text : "Nov " + Math.round(Math.random() * 30 + 1) + " 2005" }, rights: { text : "-rw-r--r--" }}); }; var lc1 = { name : { label : "Name", width : 100, type : "text", sortable : true, sortProp : "text" }, size: { label : "Size", width : 50, type : "text", sortable : true, sortProp : "text", sortMethod : QxCompare.byIntegerString }, type : { label : "Type", width : 80, type : "text", sortable : true, sortProp : "text" }, modified : { label : "Last Modified", width : 150, type : "text" }, rights : { label : "Rights", width: 80, type : "text" } }; var lc2 = { name : { label : "Name", width : 100, type : "text", sortable : true, sortProp : "text" }, size: { label : "Size", width : 50, type : "text", sortable : true, sortProp : "text", sortMethod : QxCompare.byIntegerString }, type : { label : "Type", width : 80, type : "text", sortable : true, sortProp : "text" }, modified : { label : "Last Modified", width : 150, type : "text" }, rights : { label : "Rights", width: 80, type : "text" } }; function handleDrag(e) { e.addData("QxListViewEntries", e.getCurrentTarget().getManager().getSelectedItems().copy()); e.addAction("move"); e.startDrag(); }; function handleDrop(e) { var type = e.getDropDataTypes()[0]; var data = e.getData(type); switch(e.getAction()) { case "move": sourceView.getPane().getManager().setSelectedItems([]); sourceView.getPane().getManager().setAnchorItem(null); sourceView.getPane().getManager().setLeadItem(null); for (var i=0, l=data.length; i<l; i++) { sourceView.getData().remove(data[i]); destView.getData().push(data[i]); }; destView.getPane().getManager().setSelectedItems(data); sourceView.updateSort(); destView.updateSort(); sourceView.update(); destView.update(); }; }; var sourceView = new QxListView(ld, lc1); sourceView.setBorder(QxBorderObject.presets.shadow); sourceView.setBackgroundColor("white"); sourceView.setWidth(600); sourceView.setHeight(250); sourceView.setLocation(20, 48); sourceView.getPane().getManager().setDragSelection(false); sourceView.getPane().addEventListener("dragstart", handleDrag); this.add(sourceView); var destView = new QxListView([], lc2); destView.setBorder(QxBorderObject.presets.shadow); destView.setBackgroundColor("white"); destView.setWidth(600); destView.setHeight(250); destView.setLocation(20, 318); destView.getPane().getManager().setDragSelection(false); destView.getPane().setDropDataTypes(["QxListViewEntries"]); destView.getPane().addEventListener("dragdrop", handleDrop); this.add(destView); }; </script> </body> </html> --- NEW FILE: Fields_1.html --- <?xml version="1.0" encoding="iso-8859-1"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de"> <head> <script type="text/javascript">window._htmlstart=(new Date).valueOf()</script> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-15" /> <meta http-equiv="MsThemeCompatible" content="yes" /> <meta http-equiv="ImageToolBar" content="no" /> <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> </head> <body> <script type="text/javascript" src="../../../tools/script/demolayout.js"></script> <div id="testDescription"> <p>Test the setting of background color of form fields.</p> </div> <script type="text/javascript"> function changeBackgrounds(parent, color) { var children = parent.getChildren(); var child; for (var i=0; i<children.length; i++) { child = children[i]; switch(child.classname) { case 'QxTextArea': case 'QxTextField': case 'QxComboBox': case 'QxPasswordField': child.setBackgroundColor(color); break; }; }; }; window.application.main = function() { var d = this.getClientWindow().getClientDocument(); function textChange(e) { this.debug("Text changed: " + e.getNewValue()); } var t1 = new QxTextField; t1.setValue("textfield"); t1.setTop(48); t1.setLeft(20); t1.addEventListener("changeText", textChange); t1.addEventListener("input", function(e) { this.debug("Input: " + e.getNewValue()); }); d.add(t1); var t2 = new QxPasswordField; t2.setValue("passwordfield"); t2.setTop(80); t2.setLeft(20); t2.addEventListener("changeText", textChange); d.add(t2); var t3 = new QxTextArea; t3.setValue("textarea"); t3.setTop(110); t3.setLeft(20); t3.setWidth(300); t3.setHeight(60); t3.addEventListener("changeText", textChange); d.add(t3); var t4 = new QxTextField; t4.setValue("textfield"); t4.setTop(200); t4.setLeft(20); t4.setWidth(200); t4.setMaxLength(100); t4.setReadOnly(true); t4.addEventListener("changeText", textChange); d.add(t4); var t5 = new QxTextField; t5.setValue("You are foo!"); t5.setTop(240); t5.setLeft(20); t5.addEventListener("changeText", textChange); d.add(t5); var c1 = new QxComboBox; c1.setTop(280); c1.setLeft(20); c1.addEventListener("beforeInitialOpen", function(e) { var item; for(var i=1; i<=30; i++) { item = new QxListItem("Item No " + i); !(i % 10) && (item.setEnabled(false)); c1.add(item); }; }); // this does not work here (if there is no content) c1.setSelected(c1.getList().getFirstChild()); c1.addEventListener("changeValue", function(e) { this.debug("New value: " + e.getNewValue()); }); c1.addEventListener("changeSelected", function(e) { this.debug("New selected: " + e.getNewValue()); }); var b1 = new QxCheckBox("Editable"); b1.set({ top: 282, left: 150 }); b1.addEventListener("changeChecked", function(e) { c1.setEditable(e.getNewValue()); }); var b2 = new QxButton("red", "icons/16/colors.png"); b2.set({left:10,top:10}); var b3 = new QxButton("green", "icons/16/colors.png"); b3.set({left:10,top:40}); var b4 = new QxButton("white", "icons/16/colors.png"); b4.set({left:10,top:70}); b2.addEventListener("click", function(e) { changeBackgrounds(d,this.getLabel()); }); b3.addEventListener("click", function(e) { changeBackgrounds(d,this.getLabel()); }); b4.addEventListener("click", function(e) { changeBackgrounds(d,this.getLabel()); }); var fs = new QxFieldSet("BackgroundColor"); fs.set({left:400,top:50,width:150,height:"auto"}); fs.add(b2,b3,b4); d.add(c1, b1, fs); // Color Themes QxColorManager.createThemeList(d, 20, 320); }; </script> </body> </html> --- NEW FILE: List_2.html --- <?xml version="1.0" encoding="iso-8859-1"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de"> <head> <script type="text/javascript">window._htmlstart=(new Date).valueOf()</script> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-15" /> <meta http-equiv="MsThemeCompatible" content="yes" /> <meta http-equiv="ImageToolBar" content="no" /> <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> </head> <body> <script type="text/javascript" src="../../../tools/script/demolayout.js"></script> <div id="testDescription"> <p>List implementation</p> <p>Drag and Drop Handling added</p> </div> <script type="text/javascript"> window.application.main = function() { var doc = this.getClientWindow().getClientDocument(); // Create list to drag from var sourceList = new QxList(); sourceList.setWidth(100); sourceList.setHeight(250); sourceList.setLeft(20); sourceList.setTop(48); // Set vertical scroll bar to always visible sourceList.setOverflow("scrollY"); // Set selection mode to single explicitly // sourceList.getManager().setMultiSelection(false); // Set drag selection mode to off sourceList.getManager().setDragSelection(false); // Add items to source list for (var i = 1; i <= 10; i++) { var item = new QxListItem("Item " + i); item.addEventListener("dragstart", handleStartDrag); sourceList.add(item); }; doc.add(sourceList); // Create list to drop to var destList = new QxList(); destList.setWidth(100); destList.setHeight(250); destList.setLeft(320); destList.setTop(48); // Set vertical scroll bar to always visible destList.setOverflow("scrollY"); // Set selection mode to single explicitly // destList.getManager().setMultiSelection(false); // Set drag selection mode to off destList.getManager().setDragSelection(false); doc.add(destList); // Define event handlers function handleStartDrag(e) { e.addData("QxListItems", sourceList.getManager().getSelectedItems().copy()); e.addAction("move"); e.startDrag(); }; function handleListDrop(e) { var type = e.getDropDataTypes()[0]; var data = e.getData(type); // this.debug("Drag&Drop Action: " + e.getAction()); switch(e.getAction()) { case "move": sourceList.getManager().setSelectedItems([]); sourceList.getManager().setAnchorItem(null); sourceList.getManager().setLeadItem(null); for (var i=0, l=data.length; i<l; i++) { destList.add(data[i]); }; destList.getManager().setSelectedItems(data); break; }; }; // Set event properties for destination list destList.setDropDataTypes(["QxListItems"]); destList.addEventListener("dragdrop", handleListDrop); }; </script> </body> </html> --- NEW FILE: GridLayout_5.html --- <?xml version="1.0" encoding="iso-8859-1"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de"> <head> <script type="text/javascript">window._htmlstart=(new Date).valueOf()</script> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-15" /> <meta http-equiv="MsThemeCompatible" content="yes" /> <meta http-equiv="ImageToolBar" content="no" /> <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> </head> <body> <script type="text/javascript" src="../../../tools/script/demolayout.js"></script> <div id="testDescription"> <p>A simple form using QxGridLayout</p> </div> <script type="text/javascript"> window.application.main = function() { var gl = new QxGridLayout; gl.setLocation(20, 48); gl.setDimension("auto", "auto"); gl.setBorder(QxBorderObject.presets.outset); gl.setPadding(8); gl.setColumnCount(2); gl.setRowCount(7); gl.setVerticalSpacing(4); gl.setHorizontalSpacing(6); gl.setColumnWidth(0, 70); gl.setColumnWidth(1, 180); gl.setColumnHorizontalAlignment(0, "right"); gl.setColumnVerticalAlignment(0, "middle"); gl.setRowHeight(0, 20); gl.setRowHeight(1, 20); gl.setRowHeight(2, 20); gl.setRowHeight(3, 20); gl.setRowHeight(4, 20); gl.setRowHeight(5, 70); gl.setRowHeight(6, 20); this.add(gl); var label1 = new QxLabel("Given Name"); var label2 = new QxLabel("Name"); var label3 = new QxLabel("City"); var label4 = new QxLabel("Country"); var label5 = new QxLabel("E-Mail"); var label6 = new QxLabel("Comment"); label6.setVerticalAlign("top"); label6.setVerticalAlign("top"); var input1 = new QxTextField; var input2 = new QxTextField; var input3 = new QxTextField; var input4 = new QxTextField; var input5 = new QxTextField; var input6 = new QxTextArea; var input7 = new QxButton("Submit", "icons/16/apply.png"); input7.setHorizontalAlign("right"); gl.add(label1, 0, 0); gl.add(input1, 1, 0); gl.add(label2, 0, 1); gl.add(input2, 1, 1); gl.add(label3, 0, 2); gl.add(input3, 1, 2); gl.add(label4, 0, 3); gl.add(input4, 1, 3); gl.add(label5, 0, 4); gl.add(input5, 1, 4); gl.add(label6, 0, 5); gl.add(input6, 1, 5); gl.add(input7, 1, 6); }; </script> </body> </html> --- NE... [truncated message content] |
|
From: Sebastian W. <wp...@us...> - 2006-01-26 14:21:49
|
Update of /cvsroot/qooxdoo/qooxdoo/source/html/test/images/flashs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27655/source/html/test/images/flashs Added Files: Tag: renderer file1.swf file10.swf file2.swf file3.swf file4.swf file5.swf file6.swf file7.swf file8.swf file9.swf Log Message: Restructured test examples --- NEW FILE: file5.swf --- (This appears to be a binary file; contents omitted.) --- NEW FILE: file9.swf --- (This appears to be a binary file; contents omitted.) --- NEW FILE: file4.swf --- (This appears to be a binary file; contents omitted.) --- NEW FILE: file7.swf --- (This appears to be a binary file; contents omitted.) --- NEW FILE: file8.swf --- (This appears to be a binary file; contents omitted.) --- NEW FILE: file2.swf --- (This appears to be a binary file; contents omitted.) --- NEW FILE: file10.swf --- (This appears to be a binary file; contents omitted.) --- NEW FILE: file3.swf --- (This appears to be a binary file; contents omitted.) --- NEW FILE: file6.swf --- (This appears to be a binary file; contents omitted.) --- NEW FILE: file1.swf --- (This appears to be a binary file; contents omitted.) |
Update of /cvsroot/qooxdoo/qooxdoo/source/html/example In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27655/source/html/example Added Files: Tag: renderer Atom_1.html Atom_2.html Atom_3.html BarView_1.html BarView_2.html Button_1.html CheckBox_1.html ComboBox_1.html Cookie_1.html FieldSet_1.html FieldSet_2.html FieldSet_3.html Fields_1.html Flash_1.html GalleryList_1.html Gallery_1.html Iframe_1.html Inline_1.html ListView_1.html ListView_2.html ListView_3.html ListView_4.html List_1.html Menu_1.html NativeWindow_1.html RadioButton_1.html RepeatButton_1.html Spinner_1.html TabView_1.html ToolBar_1.html ToolBar_2.html ToolBar_3.html ToolBar_4.html ToolTip_1.html Transport_1.html Tree_1.html Window_1.html Log Message: Restructured test examples --- NEW FILE: FieldSet_3.html --- <?xml version="1.0" encoding="iso-8859-1"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de"> <head> <script type="text/javascript">window._htmlstart=(new Date).valueOf()</script> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-15" /> <meta http-equiv="MsThemeCompatible" content="yes" /> <meta http-equiv="ImageToolBar" content="no" /> <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> </head> <body> <script type="text/javascript" src="../../../tools/script/demolayout.js"></script> <div id="testDescription"> <p>Test for QxRadioButtonFieldSet</p> </div> <fieldset style="position:absolute; top:48px; left:400px; width:200px; height:100px"><legend>builtin</legend>content content content content content content content content content content content content content content content</fieldset> <script type="text/javascript"> window.application.main = function() { var d = this.getClientWindow().getClientDocument(); var fsr = new QxRadioButton("Simple configuration"); fsr.setLocation(27, 48); d.add(fsr); var fs = new QxRadioButtonFieldSet("RadioButton FieldSet"); with(fs) { setWidth("40%"); setBottom(48); setTop(72); setLeft(20); setMaxWidth(350); setMinWidth("auto"); }; d.add(fs); var fag = new QxRadioManager("fscontrol", [ fsr, fs.getLegendObject() ]); var fsl = new QxVerticalBoxLayout; fsl.setLeft(0); fsl.setRight(0); fsl.setHeight("auto"); fsl.setSpacing(4); fs.add(fsl); var r1 = new QxHorizontalBoxLayout; r1.setLeft(0); r1.setWidth("100%"); r1.setHeight("auto"); r1.setVerticalChildrenAlign("middle"); fsl.add(r1); var a1 = new QxAtom("TextField 1"); with(a1) { setLeft(0); setWidth("40%"); setHorizontalChildrenAlign("left"); }; var i1 = new QxTextField; with(i1) { setRight(0); setWidth("60%"); }; r1.add(a1, i1); var r2 = new QxHorizontalBoxLayout; r2.setLeft(0); r2.setWidth("100%"); r2.setHeight("auto"); r2.setVerticalChildrenAlign("middle"); fsl.add(r2); var a2 = new QxAtom("TextField 2", "icons/16/looknfeel.png"); with(a2) { setLeft(0); setWidth("40%"); setHorizontalChildrenAlign("left"); }; var i2 = new QxTextField; with(i2) { setRight(0); setWidth("60%"); }; r2.add(a2, i2); var r3 = new QxHorizontalBoxLayout; r3.setLeft(0); r3.setWidth("100%"); r3.setHeight("auto"); r3.setVerticalChildrenAlign("middle"); fsl.add(r3); var a3 = new QxAtom("TextField 3"); with(a3) { setLeft(0); setWidth("40%"); setHorizontalChildrenAlign("left"); }; var i3 = new QxTextField; with(i3) { setRight(0); setWidth("60%"); }; r3.add(a3, i3); fs.getLegendObject().addEventListener("changeChecked", function(e) { i1.setEnabled(e.getNewValue()); i2.setEnabled(e.getNewValue()); i3.setEnabled(e.getNewValue()); a1.setEnabled(e.getNewValue()); a2.setEnabled(e.getNewValue()); a3.setEnabled(e.getNewValue()); }); }; </script> </body> </html> --- NEW FILE: Spinner_1.html --- <?xml version="1.0" encoding="iso-8859-1"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de"> <head> <script type="text/javascript">window._htmlstart=(new Date).valueOf()</script> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-15" /> <meta http-equiv="MsThemeCompatible" content="yes" /> <meta http-equiv="ImageToolBar" content="no" /> <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> </head> <body> <script type="text/javascript" src="../../../tools/script/demolayout.js"></script> <div id="testDescription"> <p>Test for QxSpinner.</p> </div> <script type="text/javascript"> window.application.main = function() { var d = this.getClientWindow().getClientDocument(); var s1 = new QxSpinner; with(s1) { setLeft(20); setTop(64); }; d.add(s1); d.add( (new QxLabel("100").set({left:20, top:48})) ); d.add( (new QxLabel("0").set({left:20, top:90})) ); var s2 = new QxSpinner; with(s2) { setLeft(100); setTop(64); setValue(30); setMin(-30); setMax(30); }; d.add(s2); d.add( (new QxLabel("30").set({left:100, top:48})) ); d.add( (new QxLabel("-30").set({left:100, top:90})) ); var s3 = new QxSpinner; with(s3) { setLeft(180); setTop(64); setValue(0); setMin(-3000); setMax(3000); }; d.add(s3); d.add( (new QxLabel("3000").set({left:180, top:48})) ); d.add( (new QxLabel("-3000").set({left:180, top:90})) ); /* s3._manager.addEventListener("changeValue", function(e) { this.debug("Value: " + e.getNewValue()); }); */ var s4 = new QxSpinner; with(s4) { setLeft(260); setTop(64); setValue(0); setMin(100); setMax(200); }; d.add(s4); d.add( (new QxLabel("200").set({left:260, top:48})) ); d.add( (new QxLabel("100").set({left:260, top:90})) ); var s5 = new QxSpinner( -200, null, -100); with(s5) { setLeft(340); setTop(64); }; d.add(s5); d.add( (new QxLabel("-100").set({left:340, top:48})) ); d.add( (new QxLabel("-200").set({left:340, top:90})) ); }; </script> </body> </html> --- NEW FILE: Atom_1.html --- <?xml version="1.0" encoding="iso-8859-1"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de"> <head> <script type="text/javascript">window._htmlstart=(new Date).valueOf()</script> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-15" /> <meta http-equiv="MsThemeCompatible" content="yes" /> <meta http-equiv="ImageToolBar" content="no" /> <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> </head> <body> <script type="text/javascript" src="../../../tools/script/demolayout.js"></script> <div id="testDescription"> <p>Some simple tests for QxAtom, the new constructor which is desired as parent class for buttons, menuentries, icons, checkboxes, ... it should be really fast. All render functions are highly optimized.</p> </div> <script type="text/javascript"> window.application.main = function() { var d = this.getClientWindow().getClientDocument(); // test no1 var nl1 = new QxAtom("Test #1", "icons/16/reload.png", 16, 16); nl1.setTop(48); nl1.setLeft(20); nl1.setBorder(QxBorder.presets.black); nl1.setBackgroundColor(new QxColor("white")); nl1.setPadding(4); d.add(nl1); // test no2 var nl2 = new QxAtom("Test #2"); nl2.setTop(48); nl2.setLeft(120); nl2.setBorder(QxBorder.presets.black); nl2.setBackgroundColor(new QxColor("white")); nl2.setPadding(4); d.add(nl2); // test no3 var nl3 = new QxAtom(null, "icons/16/reload.png"); nl3.setTop(48); nl3.setLeft(200); nl3.setBorder(QxBorder.presets.black); nl3.setBackgroundColor(new QxColor("white")); nl3.setPadding(4); d.add(nl3); // test no4 var nl4 = new QxAtom("<span style='font-size:14px'>Some great HTML</span><br/>for <b>you</b>", "icons/32/reload.png"); nl4.setTop(48); nl4.setLeft(250); nl4.setBorder(QxBorder.presets.black); nl4.setBackgroundColor(new QxColor("white")); nl4.setPadding(4); d.add(nl4); // test no5 var nl5 = new QxAtom(QxTextile("*File Information*:\nJPEG-Photo\nCreated: 01/03/05"), "icons/48/icons.png"); with(nl5) { setTop(200); setLeft(20); setBorder(QxBorderObject.presets.outset); setPadding(3, 6); }; d.add(nl5); }; </script> </body> </html> --- NEW FILE: RepeatButton_1.html --- <?xml version="1.0" encoding="iso-8859-1"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de"> <head> <script type="text/javascript">window._htmlstart=(new Date).valueOf()</script> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-15" /> <meta http-equiv="MsThemeCompatible" content="yes" /> <meta http-equiv="ImageToolBar" content="no" /> <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> </head> <body> <script type="text/javascript" src="../../../tools/script/demolayout.js"></script> <div id="testDescription"> <p>Test the QxButton constructor. QxButton is based on QxAtom.</p> </div> <script type="text/javascript"> window.application.main = function() { var d = this.getClientWindow().getClientDocument(); function buttonExecute() { this.debug("Executed: " + this.getLabel()); }; var btn1 = new QxRepeatButton("Repeat Button No #1"); with(btn1) { setTop(48); setLeft(20); addEventListener("execute", buttonExecute); }; d.add(btn1); var btn2 = new QxRepeatButton("Repeat Button No #2"); with(btn2) { setTop(48); setLeft(160); addEventListener("execute", buttonExecute); setEnabled(false); }; d.add(btn2); var btn3 = new QxRepeatButton("Repeat Button No #3"); with(btn3) { setTop(48); setLeft(300); addEventListener("execute", buttonExecute); }; d.add(btn3); var btn4 = new QxRepeatButton("Repeat Button No #4", "icons/16/forward.png"); with(btn4) { setTop(148); setLeft(20); addEventListener("execute", buttonExecute); }; d.add(btn4); }; </script> </body> </html> --- NEW FILE: ListView_1.html --- <?xml version="1.0" encoding="iso-8859-1"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de"> <head> <script type="text/javascript">window._htmlstart=(new Date).valueOf()</script> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-15" /> <meta http-equiv="MsThemeCompatible" content="yes" /> <meta http-equiv="ImageToolBar" content="no" /> <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> </head> <body> <script type="text/javascript" src="../../../tools/script/demolayout.js"></script> <div id="testDescription"> <p>Testing QxListView with text cells and an additional icon.</p> <p>Same as #2, but now disabled the interval update.</p> </div> <script type="text/javascript"> window.application.main = function() { var ld = []; var lt = [ "Image", "Text", "PDF", "Illustration", "Document" ]; var li = [ "icons.png", "togglelog.png", "groupevent.png", "vectorgraphicseditor.png", "file-new.png" ]; for (var i=0, t; i<1000; i++) { t=Math.round(Math.random()*4); ld.push({ icon : { source : "icons/16/" + li[t] }, name : { text : "File " + i }, size : { text : Math.round(Math.random()*100) + "kb" }, type : { text : lt[t] }, modified : { text : "Nov " + Math.round(Math.random() * 30 + 1) + " 2005" }, rights: { text : "-rw-r--r--" }}); }; var lc = { icon : { label : "", width: 24, type : "image" }, name : { label : "Name", width : 100, type : "text" }, size: { label : "Size", width : 50, type : "text", align : "right" }, type : { label : "Type", width : 80, type : "text" }, modified : { label : "Last Modified", width : 150, type : "text" }, rights : { label : "Rights", width: 80, type : "text" } }; var lv = new QxListView(ld, lc); lv.setBorder(QxBorderObject.presets.shadow); lv.setBackgroundColor("white"); lv.setWidth(600); lv.setHeight(350); lv.setLocation(20, 48); lv.setTimerBasedUpdate(false); this.add(lv); }; </script> </body> </html> --- NEW FILE: ListView_2.html --- <?xml version="1.0" encoding="iso-8859-1"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de"> <head> <script type="text/javascript">window._htmlstart=(new Date).valueOf()</script> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-15" /> <meta http-equiv="MsThemeCompatible" content="yes" /> <meta http-equiv="ImageToolBar" content="no" /> <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> </head> <body> <script type="text/javascript" src="../../../tools/script/demolayout.js"></script> <div id="testDescription"> <p>Testing QxListView with text cells.</p> <p>Like example #1, but with testing of column alignment, resizeable prohibation for columns and live resizing.</p> </div> <script type="text/javascript"> window.application.main = function() { var ld = []; var lt = [ "Image", "Text", "PDF", "Illustration", "Document" ]; for (var i=0, t; i<1000; i++) { t=Math.round(Math.random()*4); ld.push({ name : { text : "File " + i }, size : { text : Math.round(Math.random()*100) + "kb" }, type : { text : lt[t] }, modified : { text : "Nov " + Math.round(Math.random() * 30 + 1) + " 2005" }, rights: { text : "-rw-r--r--" }}); }; var lc = { name : { label : "Name", width : 100, type : "text" }, size: { label : "Size", width : 50, type : "text", align : "right", resizable : false }, type : { label : "Type", width : 80, type : "text" }, modified : { label : "Last Modified", width : 150, type : "text" }, rights : { label : "Rights", width: 80, type : "text" } }; var lv = new QxListView(ld, lc); lv.setBorder(QxBorderObject.presets.shadow); lv.setBackgroundColor("white"); lv.setWidth(600); lv.setHeight(350); lv.setLocation(20, 48); lv.setTimerBasedUpdate(true); // Prohibit resizing of columns completly // lv.setResizable(false); this.add(lv); var chk1 = new QxCheckBox("Enable Live Resize"); chk1.setLocation(20, 420); this.add(chk1); chk1.addEventListener("changeChecked", function(e) { lv.setLiveResize(e.getNewValue()); }); }; </script> </body> </html> --- NEW FILE: ComboBox_1.html --- <?xml version="1.0" encoding="iso-8859-1"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de"> <head> <script type="text/javascript">window._htmlstart=(new Date).valueOf()</script> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-15" /> <meta http-equiv="MsThemeCompatible" content="yes" /> <meta http-equiv="ImageToolBar" content="no" /> <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> </head> <body> <script type="text/javascript" src="../../../tools/script/demolayout.js"></script> <div id="testDescription"> <p>Testing ComboBox implementation.</p> <p>The elements of the popup will be created on the first open of the QxComboBox.</p> </div> <select style="position:absolute; left:300px; top:48px; width: 120px;"> <option>Item No 1</option> <option>Item No 2</option> <option>Item No 3</option> <option>Item No 4</option> <option>Item No 5</option> <option>Item No 6</option> <option>Item No 7</option> <option>Item No 8</option> <option>Item No 9</option> <option disabled="true">Item No 10</option> <option>Item No 11</option> <option>Item No 12</option> <option>Item No 13</option> <option>Item No 14</option> <option>Item No 15</option> <option>Item No 16</option> <option>Item No 17</option> <option>Item No 18</option> <option>Item No 19</option> <option disabled="true">Item No 20</option> <option>Item No 21</option> <option>Item No 22</option> <option>Item No 23</option> <option>Item No 24</option> <option>Item No 23</option> <option>Item No 24</option> <option>Item No 25</option> <option>Item No 26</option> <option>Item No 27</option> <option>Item No 28</option> <option>Item No 29</option> <option disabled="true">Item No 30</option> </select> <script type="text/javascript"> window.application.main = function() { var d = this.getClientWindow().getClientDocument(); var c1 = new QxComboBox; c1.set({ top: 48, left: 20 }); var item; for(var i=1; i<=30; i++) { item = new QxListItem("Item No " + i); !(i % 10) && (item.setEnabled(false)); c1.add(item); }; c1.setSelected(c1.getList().getFirstChild()); c1.addEventListener("changeValue", function(e) { this.debug("New value: " + e.getNewValue()); }); c1.addEventListener("changeSelected", function(e) { this.debug("New selected: " + e.getNewValue()); }); var b1 = new QxCheckBox("Editable"); b1.set({ top: 50, left: 150 }); b1.addEventListener("changeChecked", function(e) { c1.setEditable(e.getNewValue()); }); d.add(c1, b1); }; </script> </body> </html> --- NEW FILE: Atom_2.html --- <?xml version="1.0" encoding="iso-8859-1"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de"> <head> <script type="text/javascript">window._htmlstart=(new Date).valueOf()</script> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-15" /> <meta http-equiv="MsThemeCompatible" content="yes" /> <meta http-equiv="ImageToolBar" content="no" /> <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> </head> <body> <script type="text/javascript" src="../../../tools/script/demolayout.js"></script> <div id="testDescription"> <p>Some more complex tests for QxAtom.</p> <p>You could change all the properties before "really creating" the object and any time after this was done.</p> </div> <div style="display:none" id="control"> <p> Width: <a href="javascript://" onclick="void(at1.setWidth(null))">null</a> | <a href="javascript://" onclick="void(at1.setWidth('auto'))">auto</a> | <a href="javascript://" onclick="void(at1.setWidth(25))">25</a> | <a href="javascript://" onclick="void(at1.setWidth(50))">50</a> | <a href="javascript://" onclick="void(at1.setWidth(100))">100</a> | <a href="javascript://" onclick="void(at1.setWidth(200))">200</a> </p> <p> Height: <a href="javascript://" onclick="void(at1.setHeight(null))">null</a> | <a href="javascript://" onclick="void(at1.setHeight('auto'))">auto</a> | <a href="javascript://" onclick="void(at1.setHeight(25))">25</a> | <a href="javascript://" onclick="void(at1.setHeight(50))">50</a> | <a href="javascript://" onclick="void(at1.setHeight(100))">100</a> | <a href="javascript://" onclick="void(at1.setHeight(200))">200</a> </p> <hr/> <p> Label Size: <a href="javascript://" onclick="void(at1.setLabel(null))">null</a> | <a href="javascript://" onclick="void(at1.setLabel('short'))">short</a> | <a href="javascript://" onclick="void(at1.setLabel('some cool label'))">medium</a> | <a href="javascript://" onclick="void(at1.setLabel('ultra long label description'))">long</a> | <a href="javascript://" onclick="void(at1.setLabel('<b>hello <i>world</i></b>'))">html</a> | <a href="javascript://" onclick="void(at1.setLabel('<p>Hello tester.</p><ul><li>cool</li><li><b>test</b></li><li>file</li></ul>'))">complex</a> </p> <p> Icon Size: <a href="javascript://" onclick="void(at1.setIcon(null))">null</a> | <a href="javascript://" onclick="void(at1.setIcon('icons/16/date.png'))">16px</a> | <a href="javascript://" onclick="void(at1.setIcon('icons/32/colorize.png'))">32px</a> | <a href="javascript://" onclick="void(at1.setIcon('icons/48/agent.png'))">48px</a> </p> <p> Icon Position: <a href="javascript://" onclick="void(at1.setIconPosition('top'))">top</a> | <a href="javascript://" onclick="void(at1.setIconPosition('right'))">right</a> | <a href="javascript://" onclick="void(at1.setIconPosition('bottom'))">bottom</a> | <a href="javascript://" onclick="void(at1.setIconPosition('left'))">left</a> </p> <p> Spacing: <a href="javascript://" onclick="void(at1.setSpacing(0))">0</a> | <a href="javascript://" onclick="void(at1.setSpacing(2))">2</a> | <a href="javascript://" onclick="void(at1.setSpacing(4))">4</a> | <a href="javascript://" onclick="void(at1.setSpacing(6))">6</a> | <a href="javascript://" onclick="void(at1.setSpacing(8))">8</a> | <a href="javascript://" onclick="void(at1.setSpacing(10))">10</a> | <a href="javascript://" onclick="void(at1.setSpacing(25))">25</a> | <a href="javascript://" onclick="void(at1.setSpacing(50))">50</a> </p> <hr/> <p> Show: <a href="javascript://" onclick="void(at1.setShow('none'))">None</a> | <a href="javascript://" onclick="void(at1.setShow('label'))">Label</a> | <a href="javascript://" onclick="void(at1.setShow('icon'))">Icon</a> | <a href="javascript://" onclick="void(at1.setShow('both'))">Both</a> </p> <hr/> <p> Horizontal Children Align: <a href="javascript://" onclick="void(at1.setHorizontalChildrenAlign('left'))">left</a> | <a href="javascript://" onclick="void(at1.setHorizontalChildrenAlign('center'))">center</a> | <a href="javascript://" onclick="void(at1.setHorizontalChildrenAlign('right'))">right</a> </p> <p> Vertical Children Align: <a href="javascript://" onclick="void(at1.setVerticalChildrenAlign('top'))">top</a> | <a href="javascript://" onclick="void(at1.setVerticalChildrenAlign('middle'))">middle</a> | <a href="javascript://" onclick="void(at1.setVerticalChildrenAlign('bottom'))">bottom</a> </p> <hr/> <p> Padding: <a href="javascript://" onclick="void(at1.setPadding(null))">None</a> | <a href="javascript://" onclick="void(at1.setPadding(2, 4))">2, 4</a> | <a href="javascript://" onclick="void(at1.setPadding(4, 8))">4, 8</a> | <a href="javascript://" onclick="void(at1.setPadding(16))">16</a> </p> <p> Border: <a href="javascript://" onclick="void(at1.setBorder(null))">null</a> | <a href="javascript://" onclick="void(at1.setBorder(new QxBorder(1, 'solid', 'black')))">1</a> | <a href="javascript://" onclick="void(at1.setBorder(new QxBorder(5, 'solid', 'black')))">5</a> | <a href="javascript://" onclick="void(at1.setBorder(new QxBorder(10, 'solid', 'black')))">10</a> | <a href="javascript://" onclick="void(at1.setBorder(new QxBorder(25, 'solid', 'black')))">25</a> | <a href="javascript://" onclick="void(at1.setBorder(QxBorderObject.presets.outset))">outset</a> | <a href="javascript://" onclick="void(at1.setBorder(QxBorderObject.presets.inset))">inset</a> </p> <hr/> <p> Opacity: <a href="javascript://" onclick="void(at1.setOpacity(null))">null</a> | <a href="javascript://" onclick="void(at1.setOpacity(0))">0</a> | <a href="javascript://" onclick="void(at1.setOpacity(0.25))">0.25</a> | <a href="javascript://" onclick="void(at1.setOpacity(0.5))">0.5</a> | <a href="javascript://" onclick="void(at1.setOpacity(0.75))">0.75</a> | <a href="javascript://" onclick="void(at1.setOpacity(1))">1</a> </p> <p> Enabled: <a href="javascript://" onclick="void(at1.setEnabled(false))">false</a> | <a href="javascript://" onclick="void(at1.setEnabled(true))">true</a> </p> </div> <script type="text/javascript"> var at1; window.application.main = function() { var d = this.getClientWindow().getClientDocument(); at1 = new QxAtom("My first QxAtom", "icons/32/colorize.png"); with(at1) { setTop(48); setLeft(20); setIconPosition("right"); setBorder(QxBorder.presets.black); setBackgroundColor(new QxColor("white")); setPadding(2, 4); }; var ct1 = new QxLabel(document.getElementById("control").innerHTML); with(ct1) { setWidth(300); setRight(335); setHeight(null); setTop(48); setBottom(48); setOverflow("auto"); setBackgroundColor(new QxColor("white")); setBorder(QxBorderObject.presets.groove); setPadding(10); }; d.add(at1, ct1); }; </script> </body> </html> --- NEW FILE: BarView_1.html --- <?xml version="1.0" encoding="iso-8859-1"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de"> <head> <script type="text/javascript">window._htmlstart=(new Date).valueOf()</script> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-15" /> <meta http-equiv="MsThemeCompatible" content="yes" /> <meta http-equiv="ImageToolBar" content="no" /> <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> </head> <body> <script type="text/javascript" src="../../../tools/script/demolayout.js"></script> <div id="testDescription"> <p>QxBarView implementation</p> </div> <script type="text/javascript"> window.application.main = function() { var d = this.getClientWindow().getClientDocument(); var bs = new QxBarView; bs.setLocation(20, 48); bs.setRight(335); bs.setBottom(48); var bsb1 = new QxBarViewButton("Display", "icons/32/display.png"); var bsb2 = new QxBarViewButton("Penguin", "icons/32/penguin.png"); var bsb3 = new QxBarViewButton("Colorize", "icons/32/colorize.png"); var bsb4 = new QxBarViewButton("Icons", "icons/32/icons.png"); var bsb5 = new QxBarViewButton("Paint", "icons/32/paint.png", 32, 32, true); var bsb6 = new QxBarViewButton("Applications", "icons/32/package.png"); var bsb7 = new QxBarViewButton("System", "icons/32/mymac.png"); bsb1.setChecked(true); bs.getBar().add(bsb1, bsb2, bsb3, bsb4, bsb5, bsb6, bsb7); var p1 = new QxBarViewPage(bsb1); var p2 = new QxBarViewPage(bsb2); var p3 = new QxBarViewPage(bsb3); var p4 = new QxBarViewPage(bsb4); var p5 = new QxBarViewPage(bsb5); var p6 = new QxBarViewPage(bsb6); var p7 = new QxBarViewPage(bsb7); bs.getPane().add(p1, p2, p3, p4, p5, p6, p7); var f1 = new QxTextField("Display Input"); var f2 = new QxTextField("Penguin Input"); var f3 = new QxTextField("Colorize Input"); var f4 = new QxTextField("Icons Input"); var f5 = new QxTextField("Paint Input"); var f6 = new QxTextField("Applications Input"); var f7 = new QxTextField("System Input"); p1.add(f1); p2.add(f2); p3.add(f3); p4.add(f4); p5.add(f5); p6.add(f6); p7.add(f7); var r1 = new QxRadioButton("Top", "top", null, true); var r2 = new QxRadioButton("Right", "right"); var r3 = new QxRadioButton("Bottom", "bottom"); var r4 = new QxRadioButton("Left", "left"); r1.setTop(50); r2.setTop(70); r3.setTop(90); r4.setTop(110); p1.add(r1, r2, r3, r4); var rm = new QxRadioManager(null, [r1, r2, r3, r4]); rm.addEventListener("changeSelected", function(e) { bs.setBarPosition(e.getNewValue().getValue()); }); d.add(bs); }; </script> </body> </html> --- NEW FILE: ToolBar_3.html --- <?xml version="1.0" encoding="iso-8859-1"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de"> <head> <script type="text/javascript">window._htmlstart=(new Date).valueOf()</script> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-15" /> <meta http-equiv="MsThemeCompatible" content="yes" /> <meta http-equiv="ImageToolBar" content="no" /> <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> </head> <body> <script type="text/javascript" src="../../../tools/script/demolayout.js"></script> <div id="testDescription"> <p>Again a nice example which shows how to use QxToolBar as a menubar system.</p> </div> <script type="text/javascript"> window.application.main = function() { var d = this.getClientWindow().getClientDocument(); var c1 = new QxCommand(); c1.addEventListener("execute", function(e) { this.debug("Execute: " + e.getNewValue().getLabel()); }); var m1 = new QxMenu; var mb1_01 = new QxMenuButton("New", null, c1); var mb1_02 = new QxMenuButton("Open", null, c1); var mb1_03 = new QxMenuButton("Save", null, c1); var mb1_04 = new QxMenuButton("Save as", null, c1); var mb1_05 = new QxMenuButton("Close", null, c1); var mb1_06 = new QxMenuButton("Restore last saved", null, c1); m1.add(mb1_01, mb1_02, mb1_03, mb1_04, mb1_05, mb1_06); var m2 = new QxMenu; var mb2_01 = new QxMenuButton("Undo", null, c1); var mb2_02 = new QxMenuButton("Redo", null, c1); var mb2_b1 = new QxMenuSeparator(); var mb2_03 = new QxMenuButton("Cut", "icons/16/edit-cut.png", c1); var mb2_04 = new QxMenuButton("Copy", "icons/16/edit-copy.png", c1); var mb2_05 = new QxMenuButton("Paste", "icons/16/edit-paste.png", c1); var mb2_06 = new QxMenuButton("Delete", "icons/16/edit-delete.png", c1); var mb2_b2 = new QxMenuSeparator(); var mb2_07 = new QxMenuButton("Select All", null, c1); var mb2_08 = new QxMenuButton("Find", null, c1); var mb2_09 = new QxMenuButton("Find Again", null, c1); mb2_05.setEnabled(false); mb2_06.setEnabled(false); mb2_09.setEnabled(false); m2.add(mb2_01, mb2_02, mb2_b1, mb2_03, mb2_04, mb2_05, mb2_06, mb2_b2, mb2_07, mb2_08, mb2_09); var m3 = new QxMenu; var m3_suba = new QxMenu; var m3_subb = new QxMenu; var m3_subc = new QxMenu; var m3_subd = new QxMenu; var mb3_01 = new QxMenuCheckBox("File List", c1, false); var mb3_02 = new QxMenuCheckBox("Syntax Highlighting", c1, true); var mb3_03 = new QxMenuCheckBox("Statusbar", c1, true); var mb3_b1 = new QxMenuSeparator(); var mb3_04 = new QxMenuButton("Printer Font", null, null, m3_suba); var mb3_05 = new QxMenuButton("Editor Font", null, null, m3_subb); var mb3_06 = new QxMenuButton("Export Font", null, null, m3_subc); var mb3_b2 = new QxMenuSeparator(); var mb3_07 = new QxMenuButton("Advanced", null, null, m3_subd); m3.add(mb3_01, mb3_02, mb3_03, mb3_b1, mb3_04, mb3_05, mb3_06, mb3_b2, mb3_07); var mb3_suba_01 = new QxMenuButton("Tahoma, 11pt", null, c1); var mb3_suba_02 = new QxMenuButton("Tahoma, 12pt", null, c1); var mb3_suba_03 = new QxMenuButton("Tahoma, 13pt", null, c1); var mb3_suba_04 = new QxMenuButton("Tahoma, 14pt", null, c1); var mb3_suba_05 = new QxMenuButton("Tahoma, 15pt", null, c1); m3_suba.add(mb3_suba_01, mb3_suba_02, mb3_suba_03, mb3_suba_04, mb3_suba_05); var mb3_subb_01 = new QxMenuButton("Verdana, 11pt", null, c1); var mb3_subb_02 = new QxMenuButton("Verdana, 12pt", null, c1); var mb3_subb_03 = new QxMenuButton("Verdana, 13pt", null, c1); var mb3_subb_04 = new QxMenuButton("Verdana, 14pt", null, c1); var mb3_subb_05 = new QxMenuButton("Verdana, 15pt", null, c1); m3_subb.add(mb3_subb_01, mb3_subb_02, mb3_subb_03, mb3_subb_04, mb3_subb_05); var mb3_subc_01 = new QxMenuButton("Courier, 11pt", null, c1); var mb3_subc_02 = new QxMenuButton("Courier, 12pt", null, c1); var mb3_subc_03 = new QxMenuButton("Courier, 13pt", null, c1); var mb3_subc_04 = new QxMenuButton("Courier, 14pt", null, c1); var mb3_subc_05 = new QxMenuButton("Courier, 15pt", null, c1); m3_subc.add(mb3_subc_01, mb3_subc_02, mb3_subc_03, mb3_subc_04, mb3_subc_05); var mb3_subd_02_suba = new QxMenu(); var mb3_subd_02_suba_01 = new QxMenuButton("First", null, c1); var mb3_subd_02_suba_02 = new QxMenuButton("Second", null, c1); var mb3_subd_02_suba_03 = new QxMenuButton("Third", null, c1); mb3_subd_02_suba.add(mb3_subd_02_suba_01, mb3_subd_02_suba_02, mb3_subd_02_suba_03); var mb3_subd_01 = new QxMenuButton("First", null, c1); var mb3_subd_02 = new QxMenuButton("Second", null, c1, mb3_subd_02_suba); var mb3_subd_03 = new QxMenuButton("Third", null, c1); m3_subd.add(mb3_subd_01, mb3_subd_02, mb3_subd_03); var m4 = new QxMenu; var m4_suba = new QxMenu; var mb4_01 = new QxMenuButton("View", null, c1, m4_suba); var mb4_b1 = new QxMenuSeparator(); var mb4_02 = new QxMenuButton("Editor Preferences...", null, c1); var mb4_03 = new QxMenuButton("Editor Extensions", null, c1); var mb4_04 = new QxMenuButton("Framework Preferences", null, c1); m4.add(mb4_01, mb4_b1, mb4_02, mb4_03, mb4_04); var mb4_suba_01 = new QxMenuButton("New Window", null, c1); var mb4_suba_b1 = new QxMenuSeparator(); var mb4_suba_02 = new QxMenuRadioButton("Overlapping", c1, true); var mb4_suba_03 = new QxMenuRadioButton("Split Horizontally", c1); var mb4_suba_04 = new QxMenuRadioButton("Split Vertically", c1); var mb4_suba_b2 = new QxMenuSeparator(); var mb4_suba_05 = new QxMenuButton("Next Window", null, c1); var mb4_suba_06 = new QxMenuButton("Previous Window", null, c1); m4_suba.add(mb4_suba_01, mb4_suba_b1, mb4_suba_02, mb4_suba_03, mb4_suba_04, mb4_suba_b2, mb4_suba_05, mb4_suba_06); var mb4_manager = new QxRadioManager("windowMode", [ mb4_suba_02, mb4_suba_03, mb4_suba_04 ]); var m5 = new QxMenu; var mb5_01 = new QxMenuButton("Help", null, c1); var mb5_02 = new QxMenuButton("About", null, c1); m5.add(mb5_01, mb5_02); d.add(m1, m2, m3, m3_suba, m3_subb, m3_subc, m3_subd, mb3_subd_02_suba, m4, m4_suba, m5); var mb1 = new QxToolBar; mb1.setTop(48); mb1.setRight(335); mb1.setLeft(20); var mbb1 = new QxToolBarMenuButton("File", m1); var mbb2 = new QxToolBarMenuButton("Edit", m2); var mbb3 = new QxToolBarMenuButton("View", m3); var mbb4 = new QxToolBarMenuButton("Options", m4); var mbb5 = new QxToolBarMenuButton("Help", m5); mb1.add(mbb1, mbb2, mbb3, mbb4, mbb5); d.add(mb1); // Icon & Color Themes QxImageManager.createThemeList(d, 20, 348); QxColorManager.createThemeList(d, 220, 348); }; </script> </body> </html> --- NEW FILE: FieldSet_2.html --- <?xml version="1.0" encoding="iso-8859-1"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de"> <head> <script type="text/javascript">window._htmlstart=(new Date).valueOf()</script> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-15" /> <meta http-equiv="MsThemeCompatible" content="yes" /> <meta http-equiv="ImageToolBar" content="no" /> <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> </head> <body> <script type="text/javascript" src="../../../tools/script/demolayout.js"></script> <div id="testDescription"> <p>Test for QxCheckBoxFieldSet</p> </div> <fieldset style="position:absolute; top:48px; left:400px; width:200px; height:100px"><legend>builtin</legend>content content content content content content content content content content content content content content content</fieldset> <script type="text/javascript"> window.application.main = function() { var d = this.getClientWindow().getClientDocument(); var fs = new QxCheckBoxFieldSet("CheckBox FieldSet"); with(fs) { setWidth("40%"); setBottom(48); setTop(48); setLeft(20); setMaxWidth(350); setMinWidth("auto"); }; d.add(fs); var fsl = new QxVerticalBoxLayout; fsl.setLeft(0); fsl.setRight(0); fsl.setHeight("auto"); fsl.setSpacing(4); fs.add(fsl); var r1 = new QxHorizontalBoxLayout; r1.setLeft(0); r1.setWidth("100%"); r1.setHeight("auto"); r1.setVerticalChildrenAlign("middle"); fsl.add(r1); var a1 = new QxAtom("TextField 1"); with(a1) { setLeft(0); setWidth("40%"); setHorizontalChildrenAlign("left"); }; var i1 = new QxTextField; with(i1) { setRight(0); setWidth("60%"); }; r1.add(a1, i1); var r2 = new QxHorizontalBoxLayout; r2.setLeft(0); r2.setWidth("100%"); r2.setHeight("auto"); r2.setVerticalChildrenAlign("middle"); fsl.add(r2); var a2 = new QxAtom("TextField 2", "icons/16/looknfeel.png"); with(a2) { setLeft(0); setWidth("40%"); setHorizontalChildrenAlign("left"); }; var i2 = new QxTextField; with(i2) { setRight(0); setWidth("60%"); }; r2.add(a2, i2); var r3 = new QxHorizontalBoxLayout; r3.setLeft(0); r3.setWidth("100%"); r3.setHeight("auto"); r3.setVerticalChildrenAlign("middle"); fsl.add(r3); var a3 = new QxAtom("TextField 3"); with(a3) { setLeft(0); setWidth("40%"); setHorizontalChildrenAlign("left"); }; var i3 = new QxTextField; with(i3) { setRight(0); setWidth("60%"); }; r3.add(a3, i3); fs.getLegendObject().addEventListener("changeChecked", function(e) { i1.setEnabled(e.getNewValue()); i2.setEnabled(e.getNewValue()); i3.setEnabled(e.getNewValue()); a1.setEnabled(e.getNewValue()); a2.setEnabled(e.getNewValue()); a3.setEnabled(e.getNewValue()); }); }; </script> </body> </html> --- NEW FILE: Iframe_1.html --- <?xml version="1.0" encoding="iso-8859-1"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de"> <head> <script type="text/javascript">window._htmlstart=(new Date).valueOf()</script> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-15" /> <meta http-equiv="MsThemeCompatible" content="yes" /> <meta http-equiv="ImageToolBar" content="no" /> <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> </head> <body> <script type="text/javascript" src="../../../tools/script/demolayout.js"></script> <div id="testDescription"> <p>Iframe implementation. Elastic.</p> </div> <script type="text/javascript"> window.application.main = function() { var d = this.getClientWindow().getClientDocument(); //---------- // QxIframe //---------- w1 = new QxIframe(); w1.addEventListener("load", function(e) { this.debug("Loaded: " + this.getSrc()); }); // elastic w1.set( { left: 20, top: 96, right: 335, bottom: 48 } ); w1.setSrc("http://www.google.com"); d.add(w1); function changeURL(e) { this.setSrc(e.getNewValue()); }; // make QxIframe react to event "surfTo" via function changeURL() d.addEventListener("surfTo", changeURL, w1); //------------- // radio group //------------- var rd1 = new QxRadioButton("Google", "http://www.google.com"); var rd2 = new QxRadioButton("Yahoo", "http://www.yahoo.com"); rd1.set( { left: 20, top: 48, checked: true } ); rd2.set( { left: 120, top: 48 } ); var rbm = new QxRadioManager( name, [rd1, rd2]); // elements of radio group fire event "surfTo" rbm.addEventListener("changeSelected", function(e) { d.dispatchEvent( new QxDataEvent("surfTo", e.getNewValue().getValue() ) ); }); d.add(rd1, rd2); }; </script> </body> </html> --- NEW FILE: Tree_1.html --- <?xml version="1.0" encoding="iso-8859-1"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de"> <head> <script type="text/javascript">window._htmlstart=(new Date).valueOf()</script> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-15" /> <meta http-equiv="MsThemeCompatible" content="yes" /> <meta http-equiv="ImageToolBar" content="no" /> <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> </head> <body> <script type="text/javascript" src="../../../tools/script/demolayout.js"></script> <div id="testDescription"> <p>In this example the loop for the big folder is increased to 50. Useful to test the performance of the tree.</p> </div> <script type="text/javascript"> window.application.main = function() { var t = new QxTree("Root"); with(t) { setBackgroundColor(255); setBorder(QxBorderObject.presets.inset); setOverflow("scrollY"); setHeight(null); setTop(48); setLeft(20); setWidth(200); setBottom(48); }; this.add(t); var te1 = new QxTreeFolder("Desktop", "icons/16/mycomputer.png", "icons/16/mycomputer.png"); t.add(te1); desktop = te1; var te1_1 = new QxTreeFolder("Files"); var te1_2 = new QxTreeFolder("Workspace"); var te1_3 = new QxTreeFolder("Network"); var te1_4 = new QxTreeFolder("Trash"); te1.add(te1_1, te1_2, te1_3, te1_4); var te1_2_1 = new QxTreeFile("Windows (C:)", "icons/16/hdd.png"); var te1_2_2 = new QxTreeFile("Documents (D:)", "icons/16/hdd.png"); te1_2.add(te1_2_1, te1_2_2); arbeitsplatz = te1_2; var te2 = new QxTreeFolder("Inbox"); posteingang = te2; var te2_1 = new QxTreeFolder("Presets"); var te2_2 = new QxTreeFolder("Sent"); var te2_3 = new QxTreeFolder("Trash", "icons/16/trash.png", "icons/16/trash.png"); var te2_4 = new QxTreeFolder("Data"); var te2_5 = new QxTreeFolder("Edit"); editieren = te2_5; var te2_5_1 = new QxTreeFolder("Chat"); var te2_5_2 = new QxTreeFolder("Pustefix"); var te2_5_3 = new QxTreeFolder("TINC"); var te2_5_3_1 = new QxTreeFolder("Announce"); var te2_5_3_2 = new QxTreeFolder("Devel"); te2_5_3.add(te2_5_3_1, te2_5_3_2); te2_5.add(te2_5_1, te2_5_2, te2_5_3); var te2_6 = new QxTreeFolder("Lists"); var te2_6_1 = new QxTreeFolder("Relations"); var te2_6_2 = new QxTreeFolder("Company"); var te2_6_3 = new QxTreeFolder("Questions"); var te2_6_4 = new QxTreeFolder("Internal"); var te2_6_5 = new QxTreeFolder("Products"); var te2_6_6 = new QxTreeFolder("Press"); var te2_6_7 = new QxTreeFolder("Development"); var te2_6_8 = new QxTreeFolder("Competition"); te2_6.add(te2_6_1, te2_6_2, te2_6_3, te2_6_4, te2_6_5, te2_6_6, te2_6_7, te2_6_8); var te2_7 = new QxTreeFolder("Personal"); var te2_7_1 = new QxTreeFolder("Bugs"); var te2_7_2 = new QxTreeFolder("Family"); var te2_7_3 = new QxTreeFolder("Projects"); var te2_7_4 = new QxTreeFolder("Holiday"); te2_7.add(te2_7_1, te2_7_2, te2_7_3, te2_7_4); var te2_8 = new QxTreeFolder("Big"); for (var i=0;i<50; i++) { te2_8.add(new QxTreeFolder("Item " + i)); }; var te2_9 = new QxTreeFolder("Spam"); spam = te2_9; te2.add(te2_1, te2_2, te2_3, te2_4, te2_5, te2_6, te2_7, te2_8, te2_9); t.add(te2); this.add(t); var commandFrame = new QxFieldSet("Control"); with(commandFrame) { setTop(48); setLeft(250); setWidth("auto"); setHeight("auto"); }; this.add(commandFrame); var tCurrentLabel = new QxAtom("Current Folder: "); with(tCurrentLabel) { setLeft(0); setTop(0); }; commandFrame.add(tCurrentLabel); var tCurrentInput = new QxTextField; with(tCurrentInput) { setLeft(0); setRight(0); setTop(20); setReadOnly(true); }; commandFrame.add(tCurrentInput); t.getManager().addEventListener("changeSelection", function(e) { tCurrentInput.setValue(e.getNewValue().getFirst()._labelObject.getHtml()); }); var tDoubleClick = new QxCheckBox("Use double click?"); with(tDoubleClick) { setTop(60); setLeft(0); }; commandFrame.add(tDoubleClick); tDoubleClick.addEventListener("changeChecked", function(e) { t.setUseDoubleClick(e.getNewValue()); }); var tTreeLines = new QxCheckBox("Use tree lines?"); with(tTreeLines) { setTop(80); setLeft(0); setChecked(true); }; commandFrame.add(tTreeLines); tTreeLines.addEventListener("changeChecked", function(e) { t.setUseTreeLines(e.getNewValue()); }); }; </script> </body> </html> --- NEW FILE: ToolBar_1.html --- <?xml version="1.0" encoding="iso-8859-1"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de"> <head> <script type="text/javascript">window._htmlstart=(new Date).valueOf()</script> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-15" /> <meta http-equiv="MsThemeCompatible" content="yes" /> <meta http-equiv="ImageToolBar" content="no" /> <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> </head> <body> <script type="text/javascript" src="../../../tools/script/demolayout.js"></script> <div id="testDescription"> <p>Introduce all classes needed for creating real QxToolBars. This includes QxToolBars, QxToolBarParts, QxToolBarSeparator and QxToolBarButtons.</p> <p>The QxToolBarButtons and QxRadioButtons in this example are beautifully decoupled by "global" QxDataEvent.</p> </div> <script type="text/javascript"> window.application.main = function() { var d = this.getClientWindow().getClientDocument(); var tb = new QxToolBar; with(tb) { setTop(48); setLeft(20); setRight(335); // setWidth("auto"); }; var btns1 = [ { type : "button", icon : "file-new", text : "New" }, { type : "separator" }, { type : "button", icon : "edit-copy", text : "Copy" }, { type : "button", icon : "edit-cut", text : "Cut" }, { type : "button", icon : "edit-paste", text : "Paste" } ]; var btns2 = [ { type : "button", icon : "up", text : "Upload" }, { type : "button", icon : "down", text : "Download" } ]; var btns3 = [ { type : "button", icon : "help", text : "Help" } ]; var bars = [ btns1, btns2, btns3 ]; function changeLayout(e) { this.setShow(e.getNewValue()); }; function changeSize(e) { var v = e.getNewValue(); var o = v == 22 ? 32 : 22; this.setIcon(this.getIcon().replace(o, v)); }; function buttonExecute() { this.debug("Executed: " + this.getLabel()); }; var useParts = true; for (var j=0; j<bars.length; j++) { var btns = bars[j]; if (useParts) { var tbp = new QxToolBarPart; }; for (var i=0; i<btns.length; i++) { var btn = btns[i]; switch(btn.type) { case "separator": var o = new QxToolBarSeparator; break; case "button": var o = new QxToolBarButton(btn.text, "icons/22/" + btn.icon + ".png"); // beautiful decoupling: toolbar buttons don't know about radio boxes d.addEventListener("changeLayout", changeLayout, o); d.addEventListener("changeSize", changeSize, o); o.addEventListener("execute", buttonExecute); break; }; if (useParts) { tbp.add(o); } else { tb.add(o); }; }; if (useParts) { tb.add(tbp); }; }; d.add(tb); var rd1 = new QxRadioButton("Show Icons and Label", "both"); var rd2 = new QxRadioButton("Show Icons", "icon"); var rd3 = new QxRadioButton("Show Label", "label"); with(rd1) { setTop(140); setLeft(20); setChecked(true); }; with(rd2) { setTop(160); setLeft(20); }; with(rd3) { setTop(180); setLeft(20); }; var rbm = new QxRadioManager(); rbm.add(rd1); rbm.add(rd2); rbm.add(rd3); // beautiful decoupling: radio boxes don't know about toolbar buttons rbm.addEventListener("changeSelected", function(e) { d.dispatchEvent( new QxDataEvent("changeLayout", e.getNewValue().getValue() ) ); }); d.add(rd1, rd2, rd3); // Alignment var ra1 = new QxRadioButton("Left Aligned", "left"); var ra2 = new QxRadioButton("Centered", "center"); var ra3 = new QxRadioButton("Right Aligned", "right"); with(ra1) { setTop(140); setLeft(220); setChecked(true); }; with(ra2) { setTop(160); setLeft(220); }; with(ra3) { setTop(180); setLeft(220); }; var ram = new QxRadioManager(); ram.add(ra1); ram.add(ra2); ram.add(ra3); d.add(ra1, ra2, ra3); ram.addEventListener("changeSelected", function(e) { tb.setHorizontalChildrenAlign(e.getNewValue().getValue()); }); // Icon Sizes var b3 = new QxButton("Icons: 22 Pixel", "icons/16/colors.png"); with(b3) { setTop(140); setLeft(420); setHorizontalAlign("center"); }; b3.addEventListener("execute", function(e) { d.dispatchEvent(new QxDataEvent("changeSize", 22)); }); var b4 = new QxButton("Icons: 32 Pixel", "icons/16/colors.png"); with(b4) { setTop(170); setLeft(420); setHorizontalAlign("center"); }; b4.addEventListener("execute", function(e) { d.dispatchEvent(new QxDataEvent("changeSize", 32)); }); d.add(b3, b4); // Icon & Color Themes QxImageManager.createThemeList(d, 20, 248); QxColorManager.createThemeList(d, 220, 248); /* Test for cloning support tb2 = tb.clone(true); tb2.setTop(400); */ }; </script> </body> </html> --- NEW FILE: Cookie_1.html --- <?xml version="1.0" encoding="iso-8859-1"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de"> <head> <script type="text/javascript">window._htmlstart=(new Date).valueOf()</script> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-15" /> <meta http-equiv="MsThemeCompatible" content="yes" /> <meta http-equiv="ImageToolBar" content="no" /> <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> </head> <body> <script type="text/javascript" src="../../../tools/script/demolayout.js"></script> <div id="testDescription"> <p>Tests for QxCookie API.</p> </div> <script type="text/javascript"> window.application.main = function() { var f1 = new QxTextField; f1.setLocation(20, 48); this.add(f1); var b1 = new QxButton("Restore"); b1.setLocation(20, 80); this.add(b1); var b2 = new QxButton("Save"); b2.setLocation(80, 80); this.add(b2); b1.addEventListener("execute", function(e) { f1.setValue(QxCookie.get("fieldContent")); }); b2.addEventListener("execute", function(e) { QxCookie.set("fieldContent", f1.getValue()); }); }; </script> </body> </html> --- NEW FILE: Flash_1.html --- <?xml version="1.0" encoding="iso-8859-1"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de"> <head> <script type="text/javascript">window._htmlstart=(new Date).valueOf()</script> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-15" /> <meta http-equiv="MsThemeCompatible" content="yes" /> <meta http-equiv="ImageToolBar" content="no" /> <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> </head> <body> <script type="text/javascript" src="../../../tools/script/demolayout.js"></script> <div id="testDescription"> <p>Simple test for QxFlash.</p> </div> <script type="text/javascript"> window.application.main = function() { var d = this.getClientWindow().getClientDocument(); // Try no version required var fo1 = new QxFlash("./images/fo_tester.swf"); // Try version 7 required // var fo1 = new QxFlash("images/fo_tester.swf", "7"); // Try version 9 required // var fo1 = new QxFlash("images/fo_tester.swf", "9"); // Error handling methods: // #1: Enable Express Install: Available in Flash Players >= 6.0.65 // fo1.setEnableExpressInstall(true); // #2: Enable Redirect URL: Jump to an installer page // fo1.setRedirectUrl("http://www.google.de"); fo1.setVariable("flashVarText", "this is passed in via FlashVars"); fo1.setScale("noscale"); fo1.setLeft(20); fo1.setRight(335); fo1.setTop(48); fo1.setBottom(48); fo1.setBorder(QxBorderObject.presets.inset); fo1.setBackgroundColor("#FF6600"); d.add(fo1); }; </script> </body> </html> --- NEW FILE: Button_1.html --- <?xml version="1.0" encoding="iso-8859-1"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de"> <head> <script type="text/javascript">window._htmlstart=(new Date).valueOf()</script> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-15" /> <meta http-equiv="MsThemeCompatible" content="yes" /> <meta http-equiv="ImageToolBar" content="no" /> <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> </head> <body> <script type="text/javascript" src="../../../tools/script/demolayout.js"></script> <div id="testDescription"> <p>Test the QxButton constructor. QxButton is based on QxAtom.</p> </div> <script type="text/javascript"> window.application.main = function() { var d = this.getClientWindow().getClientDocument(); function buttonExecute() { this.debug("Executed: " + this.getLabel()); }; var btn1 = new QxButton("Button No #1"); with(btn1) { setTop(48); setLeft(20); addEventListener("execute", buttonExecute); }; d.add(btn1); var btn2 = new QxButton("Button No #2"); with(btn2) { setTop(48); setLeft(120); addEventListener("execute", buttonE... [truncated message content] |
|
From: Sebastian W. <wp...@us...> - 2006-01-26 14:21:49
|
Update of /cvsroot/qooxdoo/qooxdoo/source/html/test/images In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27655/source/html/test/images Added Files: Tag: renderer fo_tester.fla fo_tester.swf grid_dialog_box.png Log Message: Restructured test examples --- NEW FILE: grid_dialog_box.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: fo_tester.swf --- (This appears to be a binary file; contents omitted.) --- NEW FILE: fo_tester.fla --- (This appears to be a binary file; contents omitted.) |
|
From: Sebastian W. <wp...@us...> - 2006-01-26 14:21:46
|
Update of /cvsroot/qooxdoo/qooxdoo/source/html/test/data/items In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27655/source/html/test/data/items Added Files: Tag: renderer 1.xml 2.xml Log Message: Restructured test examples --- NEW FILE: 1.xml --- <?xml version="1.0" encoding="ISO-8859-15"?> <data> <item>Peter</item> <item>Will</item> <item>Karl</item> <item>John</item> </data> --- NEW FILE: 2.xml --- <?xml version="1.0" encoding="ISO-8859-15"?> <data> <item>Jenny</item> <item>Carol</item> <item>Anna</item> <item>Jona</item> </data> |
|
From: Sebastian W. <wp...@us...> - 2006-01-26 14:07:52
|
Update of /cvsroot/qooxdoo/qooxdoo/source/html/test/images/flashs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21623/images/flashs Log Message: Directory /cvsroot/qooxdoo/qooxdoo/source/html/test/images/flashs added to the repository --> Using per-directory sticky tag `renderer' |
|
From: Sebastian W. <wp...@us...> - 2006-01-26 14:07:52
|
Update of /cvsroot/qooxdoo/qooxdoo/source/html/test/data/loadByName In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21623/data/loadByName Log Message: Directory /cvsroot/qooxdoo/qooxdoo/source/html/test/data/loadByName added to the repository --> Using per-directory sticky tag `renderer' |
|
From: Sebastian W. <wp...@us...> - 2006-01-26 14:07:51
|
Update of /cvsroot/qooxdoo/qooxdoo/source/html/test/data/items In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21623/data/items Log Message: Directory /cvsroot/qooxdoo/qooxdoo/source/html/test/data/items added to the repository --> Using per-directory sticky tag `renderer' |
|
From: Sebastian W. <wp...@us...> - 2006-01-26 14:06:23
|
Update of /cvsroot/qooxdoo/qooxdoo/source/html/test/images In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20917/images Log Message: Directory /cvsroot/qooxdoo/qooxdoo/source/html/test/images added to the repository --> Using per-directory sticky tag `renderer' |
|
From: Sebastian W. <wp...@us...> - 2006-01-26 14:06:19
|
Update of /cvsroot/qooxdoo/qooxdoo/source/html/test/data In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20917/data Log Message: Directory /cvsroot/qooxdoo/qooxdoo/source/html/test/data added to the repository --> Using per-directory sticky tag `renderer' |
|
From: Sebastian W. <wp...@us...> - 2006-01-26 12:41:19
|
Update of /cvsroot/qooxdoo/qooxdoo/source/html/showcase In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22179/showcase Log Message: Directory /cvsroot/qooxdoo/qooxdoo/source/html/showcase added to the repository --> Using per-directory sticky tag `renderer' |
|
From: Sebastian W. <wp...@us...> - 2006-01-26 12:37:11
|
Update of /cvsroot/qooxdoo/qooxdoo/source/html/test In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20585/source/html/test Log Message: Directory /cvsroot/qooxdoo/qooxdoo/source/html/test added to the repository --> Using per-directory sticky tag `renderer' |
|
From: Sebastian W. <wp...@us...> - 2006-01-26 12:37:03
|
Update of /cvsroot/qooxdoo/qooxdoo/source/html/example In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20550/source/html/example Log Message: Directory /cvsroot/qooxdoo/qooxdoo/source/html/example added to the repository --> Using per-directory sticky tag `renderer' |
|
From: Sebastian W. <wp...@us...> - 2006-01-26 12:36:10
|
Update of /cvsroot/qooxdoo/qooxdoo/source/html/examples In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20289/source/html/examples Log Message: Directory /cvsroot/qooxdoo/qooxdoo/source/html/examples added to the repository --> Using per-directory sticky tag `renderer' |
|
From: Sebastian W. <wp...@us...> - 2006-01-26 12:36:04
|
Update of /cvsroot/qooxdoo/qooxdoo/source/html In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20273/source/html Log Message: Directory /cvsroot/qooxdoo/qooxdoo/source/html added to the repository --> Using per-directory sticky tag `renderer' |
|
From: Sebastian W. <wp...@us...> - 2006-01-26 12:35:34
|
Update of /cvsroot/qooxdoo/qooxdoo/source/script/widgets In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20197/source/script/widgets Modified Files: Tag: renderer QxInputCheckIcon.js Log Message: Fixed disabled on initial checkboxes/radiobuttons Index: QxInputCheckIcon.js =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/script/widgets/QxInputCheckIcon.js,v retrieving revision 1.1.2.32 retrieving revision 1.1.2.33 diff -u -d -r1.1.2.32 -r1.1.2.33 --- QxInputCheckIcon.js 25 Jan 2006 08:58:56 -0000 1.1.2.32 +++ QxInputCheckIcon.js 26 Jan 2006 12:35:26 -0000 1.1.2.33 @@ -83,7 +83,13 @@ proto._afterAppear = function() { QxTerminator.prototype._afterAppear.call(this); - this.getElement().checked = this.getChecked(); + + var vElement = this.getElement(); + vElement.checked = this.getChecked(); + + if (!this.getEnabled()) { + vElement.disabled = true; + }; }; }; |
|
From: Sebastian W. <wp...@us...> - 2006-01-26 12:31:14
|
Update of /cvsroot/qooxdoo/qooxdoo/source/script/gui In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18652/source/script/gui Modified Files: Tag: renderer QxWidget.js Log Message: Minor cleanup Index: QxWidget.js =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/script/gui/Attic/QxWidget.js,v retrieving revision 1.1.2.57 retrieving revision 1.1.2.58 diff -u -d -r1.1.2.57 -r1.1.2.58 --- QxWidget.js 26 Jan 2006 10:32:02 -0000 1.1.2.57 +++ QxWidget.js 26 Jan 2006 12:31:05 -0000 1.1.2.58 @@ -1079,14 +1079,8 @@ /*! Create widget with empty element (of specified tagname). */ -proto._createElementImpl = function() -{ - var el = this.getTopLevelWidget().getDocumentElement().createElement(this.getTagName()); - - el.style.boxSizing = "border-box"; - el.style.MozBoxSizing = "border-box"; - - return this.setElement(el); +proto._createElementImpl = function() { + this.setElement(this.getTopLevelWidget().getDocumentElement().createElement(this.getTagName())); }; proto._modifyElement = function(propValue, propOldValue, propData) |
|
From: Sebastian W. <wp...@us...> - 2006-01-26 12:27:22
|
Update of /cvsroot/qooxdoo/qooxdoo/source/script/appearance In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17448/source/script/appearance Modified Files: Tag: renderer QxAppearanceTheme-Default.js Log Message: Fixed barview Index: QxAppearanceTheme-Default.js =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/script/appearance/Attic/QxAppearanceTheme-Default.js,v retrieving revision 1.1.2.14 retrieving revision 1.1.2.15 diff -u -d -r1.1.2.14 -r1.1.2.15 --- QxAppearanceTheme-Default.js 26 Jan 2006 08:54:43 -0000 1.1.2.14 +++ QxAppearanceTheme-Default.js 26 Jan 2006 12:27:15 -0000 1.1.2.15 @@ -568,11 +568,15 @@ state : function(vWidget, vTheme, vStates) { - var vReturn = {}; var vBarPosition = vWidget.getView().getBarPosition(); - vReturn.backgroundColor = vStates.checked ? this.background_color_checked : this.background_color_normal; - + var vReturn = + { + backgroundColor : vStates.checked ? this.background_color_checked : this.background_color_normal, + allowStretchX : true, + allowStretchY : true + }; + if (vStates.checked || vStates.over) { switch(vBarPosition) @@ -622,8 +626,8 @@ case QxConst.ALIGN_BOTTOM: vReturn.marginTop = vReturn.marginBottom = 0; vReturn.marginRight = vReturn.marginLeft = 1; - vReturn.height = null; vReturn.width = QxConst.CORE_AUTO; + vReturn.height = null; break; case QxConst.ALIGN_LEFT: |
Update of /cvsroot/qooxdoo/qooxdoo/source/test/user In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14428/source/test/user Modified Files: Tag: renderer Atom_1.html Atom_2.html Atom_3.html Bar_View_1.html Bar_View_2.html Border_1.html Box_Layout_1.html Box_Layout_2.html Box_Layout_3.html Box_Layout_4.html Box_Layout_5.html Box_Layout_6.html Box_Layout_7.html Box_Layout_8.html Builder_1.html Builder_2.html Builder_3.html Builder_4.html Button_1.html Button_2.html Canvas_Layout_1.html Checkbox_1.html Clipping_1.html Color_Themes_1.html Color_Themes_2.html Color_Themes_3.html Combobox_1.html Combobox_2.html Combobox_3.html Combobox_4.html Cookie_1.html Data_Handling_1.html Data_Handling_2.html Dock_Layout_1.html Dock_Layout_2.html Dock_Layout_3.html Dock_Layout_4.html Dock_Layout_5.html Dock_Layout_6.html Drag_And_Drop_1.html Drag_And_Drop_2.html Enabled_Disabled_1.html Fields_1.html Fields_2.html Fieldset_1.html Fieldset_2.html Fieldset_3.html Fieldset_4.html Flash_1.html Flow_Layout_1.html Flow_Layout_2.html Flow_Layout_3.html Focus_Manager_1.html Font_1.html Gallery_1.html Gallery_2.html Gallery_3.html Gallery_List_1.html Grid_Layout_1.html Grid_Layout_10.html Grid_Layout_11.html Grid_Layout_2.html Grid_Layout_3.html Grid_Layout_4.html Grid_Layout_5.html Grid_Layout_6.html Grid_Layout_7.html Grid_Layout_8.html Grid_Layout_9.html IconHtml_1.html Iframe_1.html Image_1.html Image_2.html Index.html Inline_1.html Label_1.html Label_2.html Label_3.html Label_4.html Link_1.html List_1.html List_2.html List_3.html List_4.html List_View_1.html List_View_10.html List_View_11.html List_View_12.html List_View_13.html List_View_14.html List_View_1b.html List_View_2.html List_View_2b.html List_View_3.html List_View_3b.html List_View_4.html List_View_5.html List_View_6.html List_View_7.html List_View_8.html List_View_9.html Menu_1.html Menu_2.html Menu_3.html Native_Window_1.html Node_1.html Radiobutton_1.html Repeat_Button_1.html Rounded_Corners_1.html Spinner_1.html Tab_View_1.html Toolbar_1.html Toolbar_2.html Toolbar_3.html Toolbar_4.html Toolbar_5.html Toolbar_6.html Toolbar_7.html Toolbar_8.html Tooltip_1.html Transport_1.html Tree_1.html Tree_2.html Tree_3.html Tree_4.html Tree_5.html Tree_6.html Tree_7.html User_Data_1.html Window_2.html Window_3.html Window_4.html Window_5.html Window_6.html Log Message: Finally removed qooxdoo.css Index: Image_2.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/user/Attic/Image_2.html,v retrieving revision 1.1.2.18 retrieving revision 1.1.2.19 diff -u -d -r1.1.2.18 -r1.1.2.19 --- Image_2.html 13 Dec 2005 10:04:00 -0000 1.1.2.18 +++ Image_2.html 26 Jan 2006 10:42:25 -0000 1.1.2.19 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: Tab_View_1.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/user/Attic/Tab_View_1.html,v retrieving revision 1.1.2.5 retrieving revision 1.1.2.6 diff -u -d -r1.1.2.5 -r1.1.2.6 --- Tab_View_1.html 13 Jan 2006 10:50:27 -0000 1.1.2.5 +++ Tab_View_1.html 26 Jan 2006 10:42:25 -0000 1.1.2.6 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: List_View_3.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/user/Attic/List_View_3.html,v retrieving revision 1.1.2.8 retrieving revision 1.1.2.9 diff -u -d -r1.1.2.8 -r1.1.2.9 --- List_View_3.html 13 Dec 2005 10:04:00 -0000 1.1.2.8 +++ List_View_3.html 26 Jan 2006 10:42:25 -0000 1.1.2.9 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: List_View_3b.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/user/Attic/List_View_3b.html,v retrieving revision 1.1.2.7 retrieving revision 1.1.2.8 diff -u -d -r1.1.2.7 -r1.1.2.8 --- List_View_3b.html 13 Dec 2005 10:04:00 -0000 1.1.2.7 +++ List_View_3b.html 26 Jan 2006 10:42:25 -0000 1.1.2.8 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: Bar_View_2.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/user/Attic/Bar_View_2.html,v retrieving revision 1.1.2.3 retrieving revision 1.1.2.4 diff -u -d -r1.1.2.3 -r1.1.2.4 --- Bar_View_2.html 13 Dec 2005 10:04:00 -0000 1.1.2.3 +++ Bar_View_2.html 26 Jan 2006 10:42:24 -0000 1.1.2.4 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: List_View_12.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/user/Attic/List_View_12.html,v retrieving revision 1.1.2.3 retrieving revision 1.1.2.4 diff -u -d -r1.1.2.3 -r1.1.2.4 --- List_View_12.html 16 Dec 2005 10:44:14 -0000 1.1.2.3 +++ List_View_12.html 26 Jan 2006 10:42:25 -0000 1.1.2.4 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: Gallery_3.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/user/Gallery_3.html,v retrieving revision 1.5.2.3 retrieving revision 1.5.2.4 diff -u -d -r1.5.2.3 -r1.5.2.4 --- Gallery_3.html 13 Dec 2005 10:04:00 -0000 1.5.2.3 +++ Gallery_3.html 26 Jan 2006 10:42:25 -0000 1.5.2.4 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/gallery.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> Index: Atom_2.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/user/Atom_2.html,v retrieving revision 1.4.2.16 retrieving revision 1.4.2.17 diff -u -d -r1.4.2.16 -r1.4.2.17 --- Atom_2.html 13 Dec 2005 10:04:00 -0000 1.4.2.16 +++ Atom_2.html 26 Jan 2006 10:42:24 -0000 1.4.2.17 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: Dock_Layout_3.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/user/Attic/Dock_Layout_3.html,v retrieving revision 1.1.2.10 retrieving revision 1.1.2.11 diff -u -d -r1.1.2.10 -r1.1.2.11 --- Dock_Layout_3.html 13 Dec 2005 10:04:00 -0000 1.1.2.10 +++ Dock_Layout_3.html 26 Jan 2006 10:42:24 -0000 1.1.2.11 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: Toolbar_5.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/user/Attic/Toolbar_5.html,v retrieving revision 1.1.2.6 retrieving revision 1.1.2.7 diff -u -d -r1.1.2.6 -r1.1.2.7 --- Toolbar_5.html 13 Dec 2005 10:04:00 -0000 1.1.2.6 +++ Toolbar_5.html 26 Jan 2006 10:42:25 -0000 1.1.2.7 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: Fieldset_3.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/user/Attic/Fieldset_3.html,v retrieving revision 1.1.2.4 retrieving revision 1.1.2.5 diff -u -d -r1.1.2.4 -r1.1.2.5 --- Fieldset_3.html 13 Jan 2006 10:50:27 -0000 1.1.2.4 +++ Fieldset_3.html 26 Jan 2006 10:42:24 -0000 1.1.2.5 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: Gallery_List_1.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/user/Gallery_List_1.html,v retrieving revision 1.3.2.4 retrieving revision 1.3.2.5 diff -u -d -r1.3.2.4 -r1.3.2.5 --- Gallery_List_1.html 13 Jan 2006 10:50:27 -0000 1.3.2.4 +++ Gallery_List_1.html 26 Jan 2006 10:42:25 -0000 1.3.2.5 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/gallery.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> Index: List_1.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/user/List_1.html,v retrieving revision 1.3.2.16 retrieving revision 1.3.2.17 diff -u -d -r1.3.2.16 -r1.3.2.17 --- List_1.html 26 Jan 2006 09:31:44 -0000 1.3.2.16 +++ List_1.html 26 Jan 2006 10:42:25 -0000 1.3.2.17 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: Tree_7.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/user/Attic/Tree_7.html,v retrieving revision 1.1.2.3 retrieving revision 1.1.2.4 diff -u -d -r1.1.2.3 -r1.1.2.4 --- Tree_7.html 14 Dec 2005 16:12:46 -0000 1.1.2.3 +++ Tree_7.html 26 Jan 2006 10:42:25 -0000 1.1.2.4 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: Builder_3.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/user/Attic/Builder_3.html,v retrieving revision 1.1.2.1 retrieving revision 1.1.2.2 diff -u -d -r1.1.2.1 -r1.1.2.2 --- Builder_3.html 24 Jan 2006 13:14:20 -0000 1.1.2.1 +++ Builder_3.html 26 Jan 2006 10:42:24 -0000 1.1.2.2 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: Box_Layout_3.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/user/Attic/Box_Layout_3.html,v retrieving revision 1.1.2.13 retrieving revision 1.1.2.14 diff -u -d -r1.1.2.13 -r1.1.2.14 --- Box_Layout_3.html 13 Jan 2006 10:50:27 -0000 1.1.2.13 +++ Box_Layout_3.html 26 Jan 2006 10:42:24 -0000 1.1.2.14 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: Grid_Layout_3.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/user/Attic/Grid_Layout_3.html,v retrieving revision 1.1.2.4 retrieving revision 1.1.2.5 diff -u -d -r1.1.2.4 -r1.1.2.5 --- Grid_Layout_3.html 13 Dec 2005 10:04:00 -0000 1.1.2.4 +++ Grid_Layout_3.html 26 Jan 2006 10:42:25 -0000 1.1.2.5 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: List_View_2b.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/user/Attic/List_View_2b.html,v retrieving revision 1.1.2.7 retrieving revision 1.1.2.8 diff -u -d -r1.1.2.7 -r1.1.2.8 --- List_View_2b.html 13 Dec 2005 10:04:00 -0000 1.1.2.7 +++ List_View_2b.html 26 Jan 2006 10:42:25 -0000 1.1.2.8 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: List_View_10.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/user/Attic/List_View_10.html,v retrieving revision 1.1.2.6 retrieving revision 1.1.2.7 diff -u -d -r1.1.2.6 -r1.1.2.7 --- List_View_10.html 20 Dec 2005 07:41:06 -0000 1.1.2.6 +++ List_View_10.html 26 Jan 2006 10:42:25 -0000 1.1.2.7 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: Fields_1.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/user/Fields_1.html,v retrieving revision 1.3.2.9 retrieving revision 1.3.2.10 diff -u -d -r1.3.2.9 -r1.3.2.10 --- Fields_1.html 13 Dec 2005 10:04:00 -0000 1.3.2.9 +++ Fields_1.html 26 Jan 2006 10:42:24 -0000 1.3.2.10 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: Dock_Layout_2.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/user/Attic/Dock_Layout_2.html,v retrieving revision 1.1.2.15 retrieving revision 1.1.2.16 diff -u -d -r1.1.2.15 -r1.1.2.16 --- Dock_Layout_2.html 13 Dec 2005 10:04:00 -0000 1.1.2.15 +++ Dock_Layout_2.html 26 Jan 2006 10:42:24 -0000 1.1.2.16 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: List_2.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/user/Attic/List_2.html,v retrieving revision 1.1.2.10 retrieving revision 1.1.2.11 diff -u -d -r1.1.2.10 -r1.1.2.11 --- List_2.html 20 Dec 2005 08:17:06 -0000 1.1.2.10 +++ List_2.html 26 Jan 2006 10:42:25 -0000 1.1.2.11 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: Drag_And_Drop_1.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/user/Drag_And_Drop_1.html,v retrieving revision 1.4.2.11 retrieving revision 1.4.2.12 diff -u -d -r1.4.2.11 -r1.4.2.12 --- Drag_And_Drop_1.html 20 Jan 2006 08:28:25 -0000 1.4.2.11 +++ Drag_And_Drop_1.html 26 Jan 2006 10:42:24 -0000 1.4.2.12 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: List_View_2.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/user/Attic/List_View_2.html,v retrieving revision 1.1.2.10 retrieving revision 1.1.2.11 diff -u -d -r1.1.2.10 -r1.1.2.11 --- List_View_2.html 13 Dec 2005 10:04:00 -0000 1.1.2.10 +++ List_View_2.html 26 Jan 2006 10:42:25 -0000 1.1.2.11 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: Combobox_1.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/user/Combobox_1.html,v retrieving revision 1.3.2.9 retrieving revision 1.3.2.10 diff -u -d -r1.3.2.9 -r1.3.2.10 --- Combobox_1.html 13 Dec 2005 10:04:00 -0000 1.3.2.9 +++ Combobox_1.html 26 Jan 2006 10:42:24 -0000 1.3.2.10 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: Index.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/user/Index.html,v retrieving revision 1.2.2.7 retrieving revision 1.2.2.8 diff -u -d -r1.2.2.7 -r1.2.2.8 --- Index.html 13 Dec 2005 10:04:00 -0000 1.2.2.7 +++ Index.html 26 Jan 2006 10:42:25 -0000 1.2.2.8 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: User_Data_1.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/user/Attic/User_Data_1.html,v retrieving revision 1.1.2.3 retrieving revision 1.1.2.4 diff -u -d -r1.1.2.3 -r1.1.2.4 --- User_Data_1.html 13 Dec 2005 10:04:00 -0000 1.1.2.3 +++ User_Data_1.html 26 Jan 2006 10:42:25 -0000 1.1.2.4 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: Color_Themes_2.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/user/Attic/Color_Themes_2.html,v retrieving revision 1.1.2.14 retrieving revision 1.1.2.15 diff -u -d -r1.1.2.14 -r1.1.2.15 --- Color_Themes_2.html 20 Dec 2005 07:41:06 -0000 1.1.2.14 +++ Color_Themes_2.html 26 Jan 2006 10:42:24 -0000 1.1.2.15 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: Tooltip_1.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/user/Attic/Tooltip_1.html,v retrieving revision 1.1.2.5 retrieving revision 1.1.2.6 diff -u -d -r1.1.2.5 -r1.1.2.6 --- Tooltip_1.html 13 Dec 2005 10:04:00 -0000 1.1.2.5 +++ Tooltip_1.html 26 Jan 2006 10:42:25 -0000 1.1.2.6 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: Grid_Layout_6.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/user/Attic/Grid_Layout_6.html,v retrieving revision 1.1.2.3 retrieving revision 1.1.2.4 diff -u -d -r1.1.2.3 -r1.1.2.4 --- Grid_Layout_6.html 26 Jan 2006 08:53:26 -0000 1.1.2.3 +++ Grid_Layout_6.html 26 Jan 2006 10:42:25 -0000 1.1.2.4 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: Fieldset_1.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/user/Fieldset_1.html,v retrieving revision 1.3.2.9 retrieving revision 1.3.2.10 diff -u -d -r1.3.2.9 -r1.3.2.10 --- Fieldset_1.html 13 Dec 2005 10:04:00 -0000 1.3.2.9 +++ Fieldset_1.html 26 Jan 2006 10:42:24 -0000 1.3.2.10 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: Box_Layout_4.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/user/Attic/Box_Layout_4.html,v retrieving revision 1.1.2.14 retrieving revision 1.1.2.15 diff -u -d -r1.1.2.14 -r1.1.2.15 --- Box_Layout_4.html 13 Jan 2006 10:50:27 -0000 1.1.2.14 +++ Box_Layout_4.html 26 Jan 2006 10:42:24 -0000 1.1.2.15 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: Tree_5.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/user/Attic/Tree_5.html,v retrieving revision 1.1.2.4 retrieving revision 1.1.2.5 diff -u -d -r1.1.2.4 -r1.1.2.5 --- Tree_5.html 13 Dec 2005 10:04:00 -0000 1.1.2.4 +++ Tree_5.html 26 Jan 2006 10:42:25 -0000 1.1.2.5 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: Repeat_Button_1.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/user/Attic/Repeat_Button_1.html,v retrieving revision 1.1.2.4 retrieving revision 1.1.2.5 diff -u -d -r1.1.2.4 -r1.1.2.5 --- Repeat_Button_1.html 13 Dec 2005 10:04:00 -0000 1.1.2.4 +++ Repeat_Button_1.html 26 Jan 2006 10:42:25 -0000 1.1.2.5 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: Window_3.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/user/Window_3.html,v retrieving revision 1.2.2.10 retrieving revision 1.2.2.11 diff -u -d -r1.2.2.10 -r1.2.2.11 --- Window_3.html 13 Dec 2005 10:04:00 -0000 1.2.2.10 +++ Window_3.html 26 Jan 2006 10:42:25 -0000 1.2.2.11 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: List_View_5.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/user/Attic/List_View_5.html,v retrieving revision 1.1.2.4 retrieving revision 1.1.2.5 diff -u -d -r1.1.2.4 -r1.1.2.5 --- List_View_5.html 13 Dec 2005 10:04:00 -0000 1.1.2.4 +++ List_View_5.html 26 Jan 2006 10:42:25 -0000 1.1.2.5 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: Label_3.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/user/Attic/Label_3.html,v retrieving revision 1.1.2.3 retrieving revision 1.1.2.4 diff -u -d -r1.1.2.3 -r1.1.2.4 --- Label_3.html 13 Dec 2005 10:04:00 -0000 1.1.2.3 +++ Label_3.html 26 Jan 2006 10:42:25 -0000 1.1.2.4 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: IconHtml_1.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/user/Attic/IconHtml_1.html,v retrieving revision 1.1.2.2 retrieving revision 1.1.2.3 diff -u -d -r1.1.2.2 -r1.1.2.3 --- IconHtml_1.html 13 Dec 2005 10:04:00 -0000 1.1.2.2 +++ IconHtml_1.html 26 Jan 2006 10:42:25 -0000 1.1.2.3 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: Flow_Layout_3.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/user/Attic/Flow_Layout_3.html,v retrieving revision 1.1.2.14 retrieving revision 1.1.2.15 diff -u -d -r1.1.2.14 -r1.1.2.15 --- Flow_Layout_3.html 13 Jan 2006 10:50:27 -0000 1.1.2.14 +++ Flow_Layout_3.html 26 Jan 2006 10:42:24 -0000 1.1.2.15 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: Fields_2.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/user/Attic/Fields_2.html,v retrieving revision 1.1.2.5 retrieving revision 1.1.2.6 diff -u -d -r1.1.2.5 -r1.1.2.6 --- Fields_2.html 20 Dec 2005 07:41:06 -0000 1.1.2.5 +++ Fields_2.html 26 Jan 2006 10:42:24 -0000 1.1.2.6 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: Grid_Layout_4.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/user/Attic/Grid_Layout_4.html,v retrieving revision 1.1.2.3 retrieving revision 1.1.2.4 diff -u -d -r1.1.2.3 -r1.1.2.4 --- Grid_Layout_4.html 13 Dec 2005 10:04:00 -0000 1.1.2.3 +++ Grid_Layout_4.html 26 Jan 2006 10:42:25 -0000 1.1.2.4 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: Box_Layout_2.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/user/Attic/Box_Layout_2.html,v retrieving revision 1.1.2.16 retrieving revision 1.1.2.17 diff -u -d -r1.1.2.16 -r1.1.2.17 --- Box_Layout_2.html 13 Jan 2006 10:50:27 -0000 1.1.2.16 +++ Box_Layout_2.html 26 Jan 2006 10:42:24 -0000 1.1.2.17 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: Toolbar_3.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/user/Toolbar_3.html,v retrieving revision 1.5.2.17 retrieving revision 1.5.2.18 diff -u -d -r1.5.2.17 -r1.5.2.18 --- Toolbar_3.html 20 Dec 2005 08:17:06 -0000 1.5.2.17 +++ Toolbar_3.html 26 Jan 2006 10:42:25 -0000 1.5.2.18 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: Toolbar_1.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/user/Toolbar_1.html,v retrieving revision 1.4.2.28 retrieving revision 1.4.2.29 diff -u -d -r1.4.2.28 -r1.4.2.29 --- Toolbar_1.html 20 Dec 2005 08:17:06 -0000 1.4.2.28 +++ Toolbar_1.html 26 Jan 2006 10:42:25 -0000 1.4.2.29 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: Flow_Layout_2.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/user/Attic/Flow_Layout_2.html,v retrieving revision 1.1.2.17 retrieving revision 1.1.2.18 diff -u -d -r1.1.2.17 -r1.1.2.18 --- Flow_Layout_2.html 13 Jan 2006 10:50:27 -0000 1.1.2.17 +++ Flow_Layout_2.html 26 Jan 2006 10:42:24 -0000 1.1.2.18 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: Builder_4.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/user/Attic/Builder_4.html,v retrieving revision 1.1.2.1 retrieving revision 1.1.2.2 diff -u -d -r1.1.2.1 -r1.1.2.2 --- Builder_4.html 24 Jan 2006 13:14:20 -0000 1.1.2.1 +++ Builder_4.html 26 Jan 2006 10:42:24 -0000 1.1.2.2 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: Bar_View_1.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/user/Attic/Bar_View_1.html,v retrieving revision 1.1.2.3 retrieving revision 1.1.2.4 diff -u -d -r1.1.2.3 -r1.1.2.4 --- Bar_View_1.html 13 Dec 2005 10:04:00 -0000 1.1.2.3 +++ Bar_View_1.html 26 Jan 2006 10:42:24 -0000 1.1.2.4 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: List_View_1b.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/user/Attic/List_View_1b.html,v retrieving revision 1.1.2.8 retrieving revision 1.1.2.9 diff -u -d -r1.1.2.8 -r1.1.2.9 --- List_View_1b.html 20 Dec 2005 07:41:06 -0000 1.1.2.8 +++ List_View_1b.html 26 Jan 2006 10:42:25 -0000 1.1.2.9 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: Window_2.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/user/Window_2.html,v retrieving revision 1.2.2.12 retrieving revision 1.2.2.13 diff -u -d -r1.2.2.12 -r1.2.2.13 --- Window_2.html 13 Dec 2005 10:04:00 -0000 1.2.2.12 +++ Window_2.html 26 Jan 2006 10:42:25 -0000 1.2.2.13 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: Builder_1.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/user/Attic/Builder_1.html,v retrieving revision 1.1.2.1 retrieving revision 1.1.2.2 diff -u -d -r1.1.2.1 -r1.1.2.2 --- Builder_1.html 24 Jan 2006 13:14:20 -0000 1.1.2.1 +++ Builder_1.html 26 Jan 2006 10:42:24 -0000 1.1.2.2 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: Enabled_Disabled_1.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/user/Enabled_Disabled_1.html,v retrieving revision 1.4.2.10 retrieving revision 1.4.2.11 diff -u -d -r1.4.2.10 -r1.4.2.11 --- Enabled_Disabled_1.html 13 Jan 2006 10:50:27 -0000 1.4.2.10 +++ Enabled_Disabled_1.html 26 Jan 2006 10:42:24 -0000 1.4.2.11 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: Canvas_Layout_1.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/user/Attic/Canvas_Layout_1.html,v retrieving revision 1.1.2.4 retrieving revision 1.1.2.5 diff -u -d -r1.1.2.4 -r1.1.2.5 --- Canvas_Layout_1.html 13 Dec 2005 10:04:00 -0000 1.1.2.4 +++ Canvas_Layout_1.html 26 Jan 2006 10:42:24 -0000 1.1.2.5 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: Clipping_1.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/user/Attic/Clipping_1.html,v retrieving revision 1.1.2.4 retrieving revision 1.1.2.5 diff -u -d -r1.1.2.4 -r1.1.2.5 --- Clipping_1.html 13 Dec 2005 10:04:00 -0000 1.1.2.4 +++ Clipping_1.html 26 Jan 2006 10:42:24 -0000 1.1.2.5 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: Menu_3.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/user/Attic/Menu_3.html,v retrieving revision 1.1.2.12 retrieving revision 1.1.2.13 diff -u -d -r1.1.2.12 -r1.1.2.13 --- Menu_3.html 20 Dec 2005 08:17:06 -0000 1.1.2.12 +++ Menu_3.html 26 Jan 2006 10:42:25 -0000 1.1.2.13 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: Tree_4.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/user/Attic/Tree_4.html,v retrieving revision 1.1.2.8 retrieving revision 1.1.2.9 diff -u -d -r1.1.2.8 -r1.1.2.9 --- Tree_4.html 13 Dec 2005 10:04:00 -0000 1.1.2.8 +++ Tree_4.html 26 Jan 2006 10:42:25 -0000 1.1.2.9 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: Toolbar_7.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/user/Attic/Toolbar_7.html,v retrieving revision 1.1.2.9 retrieving revision 1.1.2.10 diff -u -d -r1.1.2.9 -r1.1.2.10 --- Toolbar_7.html 20 Dec 2005 08:17:06 -0000 1.1.2.9 +++ Toolbar_7.html 26 Jan 2006 10:42:25 -0000 1.1.2.10 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: Checkbox_1.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/user/Checkbox_1.html,v retrieving revision 1.2.2.9 retrieving revision 1.2.2.10 diff -u -d -r1.2.2.9 -r1.2.2.10 --- Checkbox_1.html 13 Dec 2005 10:04:00 -0000 1.2.2.9 +++ Checkbox_1.html 26 Jan 2006 10:42:24 -0000 1.2.2.10 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: Menu_2.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/user/Menu_2.html,v retrieving revision 1.5.2.17 retrieving revision 1.5.2.18 diff -u -d -r1.5.2.17 -r1.5.2.18 --- Menu_2.html 20 Dec 2005 08:17:06 -0000 1.5.2.17 +++ Menu_2.html 26 Jan 2006 10:42:25 -0000 1.5.2.18 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: Tree_3.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/user/Attic/Tree_3.html,v retrieving revision 1.1.2.9 retrieving revision 1.1.2.10 diff -u -d -r1.1.2.9 -r1.1.2.10 --- Tree_3.html 13 Dec 2005 10:04:00 -0000 1.1.2.9 +++ Tree_3.html 26 Jan 2006 10:42:25 -0000 1.1.2.10 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: Combobox_2.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/user/Attic/Combobox_2.html,v retrieving revision 1.1.2.4 retrieving revision 1.1.2.5 diff -u -d -r1.1.2.4 -r1.1.2.5 --- Combobox_2.html 13 Dec 2005 10:04:00 -0000 1.1.2.4 +++ Combobox_2.html 26 Jan 2006 10:42:24 -0000 1.1.2.5 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: Cookie_1.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/user/Attic/Cookie_1.html,v retrieving revision 1.1.2.2 retrieving revision 1.1.2.3 diff -u -d -r1.1.2.2 -r1.1.2.3 --- Cookie_1.html 13 Dec 2005 10:04:00 -0000 1.1.2.2 +++ Cookie_1.html 26 Jan 2006 10:42:24 -0000 1.1.2.3 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: Grid_Layout_8.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/user/Attic/Grid_Layout_8.html,v retrieving revision 1.1.2.3 retrieving revision 1.1.2.4 diff -u -d -r1.1.2.3 -r1.1.2.4 --- Grid_Layout_8.html 13 Dec 2005 10:04:00 -0000 1.1.2.3 +++ Grid_Layout_8.html 26 Jan 2006 10:42:25 -0000 1.1.2.4 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: Color_Themes_1.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/user/Attic/Color_Themes_1.html,v retrieving revision 1.1.2.23 retrieving revision 1.1.2.24 diff -u -d -r1.1.2.23 -r1.1.2.24 --- Color_Themes_1.html 20 Dec 2005 07:41:06 -0000 1.1.2.23 +++ Color_Themes_1.html 26 Jan 2006 10:42:24 -0000 1.1.2.24 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: Label_1.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/user/Attic/Label_1.html,v retrieving revision 1.1.2.3 retrieving revision 1.1.2.4 diff -u -d -r1.1.2.3 -r1.1.2.4 --- Label_1.html 13 Dec 2005 10:04:00 -0000 1.1.2.3 +++ Label_1.html 26 Jan 2006 10:42:25 -0000 1.1.2.4 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: Fieldset_4.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/user/Attic/Fieldset_4.html,v retrieving revision 1.1.2.5 retrieving revision 1.1.2.6 diff -u -d -r1.1.2.5 -r1.1.2.6 --- Fieldset_4.html 13 Jan 2006 10:50:27 -0000 1.1.2.5 +++ Fieldset_4.html 26 Jan 2006 10:42:24 -0000 1.1.2.6 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: Link_1.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/user/Attic/Link_1.html,v retrieving revision 1.1.2.2 retrieving revision 1.1.2.3 diff -u -d -r1.1.2.2 -r1.1.2.3 --- Link_1.html 13 Dec 2005 10:04:00 -0000 1.1.2.2 +++ Link_1.html 26 Jan 2006 10:42:25 -0000 1.1.2.3 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: Toolbar_4.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/user/Attic/Toolbar_4.html,v retrieving revision 1.1.2.10 retrieving revision 1.1.2.11 diff -u -d -r1.1.2.10 -r1.1.2.11 --- Toolbar_4.html 13 Dec 2005 10:04:00 -0000 1.1.2.10 +++ Toolbar_4.html 26 Jan 2006 10:42:25 -0000 1.1.2.11 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: Label_4.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/user/Attic/Label_4.html,v retrieving revision 1.1.2.4 retrieving revision 1.1.2.5 diff -u -d -r1.1.2.4 -r1.1.2.5 --- Label_4.html 24 Jan 2006 16:48:55 -0000 1.1.2.4 +++ Label_4.html 26 Jan 2006 10:42:25 -0000 1.1.2.5 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: Drag_And_Drop_2.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/user/Drag_And_Drop_2.html,v retrieving revision 1.1.2.11 retrieving revision 1.1.2.12 diff -u -d -r1.1.2.11 -r1.1.2.12 --- Drag_And_Drop_2.html 20 Jan 2006 08:28:25 -0000 1.1.2.11 +++ Drag_And_Drop_2.html 26 Jan 2006 10:42:24 -0000 1.1.2.12 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: List_View_13.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/user/Attic/List_View_13.html,v retrieving revision 1.1.2.2 retrieving revision 1.1.2.3 diff -u -d -r1.1.2.2 -r1.1.2.3 --- List_View_13.html 17 Dec 2005 23:05:55 -0000 1.1.2.2 +++ List_View_13.html 26 Jan 2006 10:42:25 -0000 1.1.2.3 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: Tree_6.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/user/Attic/Tree_6.html,v retrieving revision 1.1.2.5 retrieving revision 1.1.2.6 diff -u -d -r1.1.2.5 -r1.1.2.6 --- Tree_6.html 14 Dec 2005 13:35:21 -0000 1.1.2.5 +++ Tree_6.html 26 Jan 2006 10:42:25 -0000 1.1.2.6 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: Border_1.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/user/Border_1.html,v retrieving revision 1.2.2.11 retrieving revision 1.2.2.12 diff -u -d -r1.2.2.11 -r1.2.2.12 --- Border_1.html 20 Dec 2005 07:41:06 -0000 1.2.2.11 +++ Border_1.html 26 Jan 2006 10:42:24 -0000 1.2.2.12 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: Fieldset_2.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/user/Attic/Fieldset_2.html,v retrieving revision 1.1.2.9 retrieving revision 1.1.2.10 diff -u -d -r1.1.2.9 -r1.1.2.10 --- Fieldset_2.html 13 Jan 2006 10:50:27 -0000 1.1.2.9 +++ Fieldset_2.html 26 Jan 2006 10:42:24 -0000 1.1.2.10 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: Box_Layout_1.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/user/Attic/Box_Layout_1.html,v retrieving revision 1.1.2.24 retrieving revision 1.1.2.25 diff -u -d -r1.1.2.24 -r1.1.2.25 --- Box_Layout_1.html 13 Jan 2006 10:50:27 -0000 1.1.2.24 +++ Box_Layout_1.html 26 Jan 2006 10:42:24 -0000 1.1.2.25 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: Rounded_Corners_1.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/user/Attic/Rounded_Corners_1.html,v retrieving revision 1.1.2.5 retrieving revision 1.1.2.6 diff -u -d -r1.1.2.5 -r1.1.2.6 --- Rounded_Corners_1.html 13 Dec 2005 10:04:00 -0000 1.1.2.5 +++ Rounded_Corners_1.html 26 Jan 2006 10:42:25 -0000 1.1.2.6 @@ -13,7 +13,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: Grid_Layout_1.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/user/Grid_Layout_1.html,v retrieving revision 1.8.2.16 retrieving revision 1.8.2.17 diff -u -d -r1.8.2.16 -r1.8.2.17 --- Grid_Layout_1.html 13 Dec 2005 10:04:00 -0000 1.8.2.16 +++ Grid_Layout_1.html 26 Jan 2006 10:42:25 -0000 1.8.2.17 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: List_View_4.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/user/Attic/List_View_4.html,v retrieving revision 1.1.2.6 retrieving revision 1.1.2.7 diff -u -d -r1.1.2.6 -r1.1.2.7 --- List_View_4.html 13 Dec 2005 10:04:00 -0000 1.1.2.6 +++ List_View_4.html 26 Jan 2006 10:42:25 -0000 1.1.2.7 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: List_View_6.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/user/Attic/List_View_6.html,v retrieving revision 1.1.2.4 retrieving revision 1.1.2.5 diff -u -d -r1.1.2.4 -r1.1.2.5 --- List_View_6.html 13 Dec 2005 10:04:00 -0000 1.1.2.4 +++ List_View_6.html 26 Jan 2006 10:42:25 -0000 1.1.2.5 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: Box_Layout_7.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/user/Attic/Box_Layout_7.html,v retrieving revision 1.1.2.23 retrieving revision 1.1.2.24 diff -u -d -r1.1.2.23 -r1.1.2.24 --- Box_Layout_7.html 13 Jan 2006 10:50:27 -0000 1.1.2.23 +++ Box_Layout_7.html 26 Jan 2006 10:42:24 -0000 1.1.2.24 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: Data_Handling_2.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/user/Attic/Data_Handling_2.html,v retrieving revision 1.1.2.7 retrieving revision 1.1.2.8 diff -u -d -r1.1.2.7 -r1.1.2.8 --- Data_Handling_2.html 17 Dec 2005 08:40:43 -0000 1.1.2.7 +++ Data_Handling_2.html 26 Jan 2006 10:42:24 -0000 1.1.2.8 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: Box_Layout_8.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/user/Attic/Box_Layout_8.html,v retrieving revision 1.1.2.12 retrieving revision 1.1.2.13 diff -u -d -r1.1.2.12 -r1.1.2.13 --- Box_Layout_8.html 13 Jan 2006 10:50:27 -0000 1.1.2.12 +++ Box_Layout_8.html 26 Jan 2006 10:42:24 -0000 1.1.2.13 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="tex... [truncated message content] |
Update of /cvsroot/qooxdoo/qooxdoo/source/test/developer In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14428/source/test/developer Modified Files: Tag: renderer Application_1.html Atom_1.html Atom_2.html Atom_3.html Atom_4.html Atom_5.html Atom_6.html Atom_7.html Atom_8.html Atom_9.html Auto_Dimensions_1.html Auto_Dimensions_10.html Auto_Dimensions_2.html Auto_Dimensions_3.html Auto_Dimensions_4.html Auto_Dimensions_5.html Auto_Dimensions_6.html Auto_Dimensions_7.html Auto_Dimensions_8.html Auto_Dimensions_9.html Block_1.html Canvas_Layout_Performance_1.html Canvas_Layout_Performance_2.html Canvas_Layout_Performance_3.html Canvas_Layout_Performance_4.html Clone_1.html Clone_2.html Compile_1.html Compile_2.html Cross_Browser_1.html Cross_Browser_2.html Event_Manager_1.html Event_Manager_2.html Focus_Manager_1.html Focus_Manager_2.html Image_1.html Image_2.html Image_3.html Index.html Overflow_Handling_1.html Performance_1.html Performance_2.html Popups_1.html Popups_2.html Umlauts_1.html Log Message: Finally removed qooxdoo.css Index: Atom_2.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/developer/Atom_2.html,v retrieving revision 1.4.2.8 retrieving revision 1.4.2.9 diff -u -d -r1.4.2.8 -r1.4.2.9 --- Atom_2.html 13 Dec 2005 10:04:00 -0000 1.4.2.8 +++ Atom_2.html 26 Jan 2006 10:42:23 -0000 1.4.2.9 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: Image_2.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/developer/Attic/Image_2.html,v retrieving revision 1.1.2.4 retrieving revision 1.1.2.5 diff -u -d -r1.1.2.4 -r1.1.2.5 --- Image_2.html 13 Dec 2005 10:04:00 -0000 1.1.2.4 +++ Image_2.html 26 Jan 2006 10:42:24 -0000 1.1.2.5 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: Atom_1.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/developer/Atom_1.html,v retrieving revision 1.3.2.8 retrieving revision 1.3.2.9 diff -u -d -r1.3.2.8 -r1.3.2.9 --- Atom_1.html 13 Dec 2005 10:04:00 -0000 1.3.2.8 +++ Atom_1.html 26 Jan 2006 10:42:23 -0000 1.3.2.9 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: Image_1.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/developer/Attic/Image_1.html,v retrieving revision 1.1.2.4 retrieving revision 1.1.2.5 diff -u -d -r1.1.2.4 -r1.1.2.5 --- Image_1.html 13 Dec 2005 10:04:00 -0000 1.1.2.4 +++ Image_1.html 26 Jan 2006 10:42:24 -0000 1.1.2.5 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: Atom_9.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/developer/Atom_9.html,v retrieving revision 1.1.2.9 retrieving revision 1.1.2.10 diff -u -d -r1.1.2.9 -r1.1.2.10 --- Atom_9.html 13 Dec 2005 10:04:00 -0000 1.1.2.9 +++ Atom_9.html 26 Jan 2006 10:42:24 -0000 1.1.2.10 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: Image_3.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/developer/Attic/Image_3.html,v retrieving revision 1.1.2.7 retrieving revision 1.1.2.8 diff -u -d -r1.1.2.7 -r1.1.2.8 --- Image_3.html 20 Dec 2005 08:17:05 -0000 1.1.2.7 +++ Image_3.html 26 Jan 2006 10:42:24 -0000 1.1.2.8 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: Auto_Dimensions_2.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/developer/Auto_Dimensions_2.html,v retrieving revision 1.2.2.7 retrieving revision 1.2.2.8 diff -u -d -r1.2.2.7 -r1.2.2.8 --- Auto_Dimensions_2.html 13 Dec 2005 10:04:00 -0000 1.2.2.7 +++ Auto_Dimensions_2.html 26 Jan 2006 10:42:24 -0000 1.2.2.8 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: Canvas_Layout_Performance_3.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/developer/Attic/Canvas_Layout_Performance_3.html,v retrieving revision 1.1.2.4 retrieving revision 1.1.2.5 diff -u -d -r1.1.2.4 -r1.1.2.5 --- Canvas_Layout_Performance_3.html 13 Dec 2005 10:04:00 -0000 1.1.2.4 +++ Canvas_Layout_Performance_3.html 26 Jan 2006 10:42:24 -0000 1.1.2.5 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: Umlauts_1.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/developer/Attic/Umlauts_1.html,v retrieving revision 1.1.2.2 retrieving revision 1.1.2.3 diff -u -d -r1.1.2.2 -r1.1.2.3 --- Umlauts_1.html 23 Jan 2006 11:24:14 -0000 1.1.2.2 +++ Umlauts_1.html 26 Jan 2006 10:42:24 -0000 1.1.2.3 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: Cross_Browser_2.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/developer/Cross_Browser_2.html,v retrieving revision 1.2.2.8 retrieving revision 1.2.2.9 diff -u -d -r1.2.2.8 -r1.2.2.9 --- Cross_Browser_2.html 13 Dec 2005 10:04:00 -0000 1.2.2.8 +++ Cross_Browser_2.html 26 Jan 2006 10:42:24 -0000 1.2.2.9 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: Application_1.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/developer/Application_1.html,v retrieving revision 1.2.2.6 retrieving revision 1.2.2.7 diff -u -d -r1.2.2.6 -r1.2.2.7 --- Application_1.html 13 Dec 2005 10:04:00 -0000 1.2.2.6 +++ Application_1.html 26 Jan 2006 10:42:23 -0000 1.2.2.7 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: Compile_2.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/developer/Attic/Compile_2.html,v retrieving revision 1.1.2.10 retrieving revision 1.1.2.11 diff -u -d -r1.1.2.10 -r1.1.2.11 --- Compile_2.html 13 Dec 2005 10:04:00 -0000 1.1.2.10 +++ Compile_2.html 26 Jan 2006 10:42:24 -0000 1.1.2.11 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: Auto_Dimensions_1.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/developer/Auto_Dimensions_1.html,v retrieving revision 1.2.2.7 retrieving revision 1.2.2.8 diff -u -d -r1.2.2.7 -r1.2.2.8 --- Auto_Dimensions_1.html 13 Dec 2005 10:04:00 -0000 1.2.2.7 +++ Auto_Dimensions_1.html 26 Jan 2006 10:42:24 -0000 1.2.2.8 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: Performance_2.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/developer/Attic/Performance_2.html,v retrieving revision 1.1.2.2 retrieving revision 1.1.2.3 diff -u -d -r1.1.2.2 -r1.1.2.3 --- Performance_2.html 20 Dec 2005 07:16:22 -0000 1.1.2.2 +++ Performance_2.html 26 Jan 2006 10:42:24 -0000 1.1.2.3 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: Popups_2.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/developer/Attic/Popups_2.html,v retrieving revision 1.1.2.10 retrieving revision 1.1.2.11 diff -u -d -r1.1.2.10 -r1.1.2.11 --- Popups_2.html 13 Dec 2005 10:04:00 -0000 1.1.2.10 +++ Popups_2.html 26 Jan 2006 10:42:24 -0000 1.1.2.11 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: Atom_7.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/developer/Atom_7.html,v retrieving revision 1.1.2.8 retrieving revision 1.1.2.9 diff -u -d -r1.1.2.8 -r1.1.2.9 --- Atom_7.html 13 Dec 2005 10:04:00 -0000 1.1.2.8 +++ Atom_7.html 26 Jan 2006 10:42:23 -0000 1.1.2.9 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: Canvas_Layout_Performance_2.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/developer/Attic/Canvas_Layout_Performance_2.html,v retrieving revision 1.1.2.4 retrieving revision 1.1.2.5 diff -u -d -r1.1.2.4 -r1.1.2.5 --- Canvas_Layout_Performance_2.html 13 Dec 2005 10:04:00 -0000 1.1.2.4 +++ Canvas_Layout_Performance_2.html 26 Jan 2006 10:42:24 -0000 1.1.2.5 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: Atom_8.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/developer/Atom_8.html,v retrieving revision 1.1.2.8 retrieving revision 1.1.2.9 diff -u -d -r1.1.2.8 -r1.1.2.9 --- Atom_8.html 13 Dec 2005 10:04:00 -0000 1.1.2.8 +++ Atom_8.html 26 Jan 2006 10:42:24 -0000 1.1.2.9 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: Popups_1.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/developer/Popups_1.html,v retrieving revision 1.3.2.12 retrieving revision 1.3.2.13 diff -u -d -r1.3.2.12 -r1.3.2.13 --- Popups_1.html 13 Dec 2005 10:04:00 -0000 1.3.2.12 +++ Popups_1.html 26 Jan 2006 10:42:24 -0000 1.3.2.13 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: Auto_Dimensions_8.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/developer/Auto_Dimensions_8.html,v retrieving revision 1.1.2.7 retrieving revision 1.1.2.8 diff -u -d -r1.1.2.7 -r1.1.2.8 --- Auto_Dimensions_8.html 13 Dec 2005 10:04:00 -0000 1.1.2.7 +++ Auto_Dimensions_8.html 26 Jan 2006 10:42:24 -0000 1.1.2.8 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: Auto_Dimensions_7.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/developer/Auto_Dimensions_7.html,v retrieving revision 1.2.2.8 retrieving revision 1.2.2.9 diff -u -d -r1.2.2.8 -r1.2.2.9 --- Auto_Dimensions_7.html 13 Dec 2005 10:04:00 -0000 1.2.2.8 +++ Auto_Dimensions_7.html 26 Jan 2006 10:42:24 -0000 1.2.2.9 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: Index.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/developer/Index.html,v retrieving revision 1.2.2.6 retrieving revision 1.2.2.7 diff -u -d -r1.2.2.6 -r1.2.2.7 --- Index.html 13 Dec 2005 10:04:00 -0000 1.2.2.6 +++ Index.html 26 Jan 2006 10:42:24 -0000 1.2.2.7 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: Block_1.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/developer/Block_1.html,v retrieving revision 1.1.2.7 retrieving revision 1.1.2.8 diff -u -d -r1.1.2.7 -r1.1.2.8 --- Block_1.html 13 Dec 2005 10:04:00 -0000 1.1.2.7 +++ Block_1.html 26 Jan 2006 10:42:24 -0000 1.1.2.8 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: Clone_2.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/developer/Clone_2.html,v retrieving revision 1.4.2.7 retrieving revision 1.4.2.8 diff -u -d -r1.4.2.7 -r1.4.2.8 --- Clone_2.html 13 Dec 2005 10:04:00 -0000 1.4.2.7 +++ Clone_2.html 26 Jan 2006 10:42:24 -0000 1.4.2.8 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: Compile_1.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/developer/Attic/Compile_1.html,v retrieving revision 1.1.2.16 retrieving revision 1.1.2.17 diff -u -d -r1.1.2.16 -r1.1.2.17 --- Compile_1.html 13 Dec 2005 10:04:00 -0000 1.1.2.16 +++ Compile_1.html 26 Jan 2006 10:42:24 -0000 1.1.2.17 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: Focus_Manager_2.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/developer/Focus_Manager_2.html,v retrieving revision 1.3.2.8 retrieving revision 1.3.2.9 diff -u -d -r1.3.2.8 -r1.3.2.9 --- Focus_Manager_2.html 13 Dec 2005 10:04:00 -0000 1.3.2.8 +++ Focus_Manager_2.html 26 Jan 2006 10:42:24 -0000 1.3.2.9 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: Auto_Dimensions_5.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/developer/Auto_Dimensions_5.html,v retrieving revision 1.3.2.11 retrieving revision 1.3.2.12 diff -u -d -r1.3.2.11 -r1.3.2.12 --- Auto_Dimensions_5.html 13 Dec 2005 10:04:00 -0000 1.3.2.11 +++ Auto_Dimensions_5.html 26 Jan 2006 10:42:24 -0000 1.3.2.12 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: Clone_1.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/developer/Clone_1.html,v retrieving revision 1.3.2.9 retrieving revision 1.3.2.10 diff -u -d -r1.3.2.9 -r1.3.2.10 --- Clone_1.html 13 Dec 2005 10:04:00 -0000 1.3.2.9 +++ Clone_1.html 26 Jan 2006 10:42:24 -0000 1.3.2.10 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: Event_Manager_1.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/developer/Event_Manager_1.html,v retrieving revision 1.2.2.7 retrieving revision 1.2.2.8 diff -u -d -r1.2.2.7 -r1.2.2.8 --- Event_Manager_1.html 13 Dec 2005 10:04:00 -0000 1.2.2.7 +++ Event_Manager_1.html 26 Jan 2006 10:42:24 -0000 1.2.2.8 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: Performance_1.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/developer/Attic/Performance_1.html,v retrieving revision 1.1.2.2 retrieving revision 1.1.2.3 diff -u -d -r1.1.2.2 -r1.1.2.3 --- Performance_1.html 20 Dec 2005 07:07:36 -0000 1.1.2.2 +++ Performance_1.html 26 Jan 2006 10:42:24 -0000 1.1.2.3 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: Atom_3.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/developer/Atom_3.html,v retrieving revision 1.3.2.9 retrieving revision 1.3.2.10 diff -u -d -r1.3.2.9 -r1.3.2.10 --- Atom_3.html 13 Dec 2005 10:04:00 -0000 1.3.2.9 +++ Atom_3.html 26 Jan 2006 10:42:23 -0000 1.3.2.10 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: Auto_Dimensions_3.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/developer/Auto_Dimensions_3.html,v retrieving revision 1.2.2.8 retrieving revision 1.2.2.9 diff -u -d -r1.2.2.8 -r1.2.2.9 --- Auto_Dimensions_3.html 13 Dec 2005 10:04:00 -0000 1.2.2.8 +++ Auto_Dimensions_3.html 26 Jan 2006 10:42:24 -0000 1.2.2.9 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: Canvas_Layout_Performance_1.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/developer/Attic/Canvas_Layout_Performance_1.html,v retrieving revision 1.1.2.4 retrieving revision 1.1.2.5 diff -u -d -r1.1.2.4 -r1.1.2.5 --- Canvas_Layout_Performance_1.html 13 Dec 2005 10:04:00 -0000 1.1.2.4 +++ Canvas_Layout_Performance_1.html 26 Jan 2006 10:42:24 -0000 1.1.2.5 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: Atom_4.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/developer/Atom_4.html,v retrieving revision 1.1.2.8 retrieving revision 1.1.2.9 diff -u -d -r1.1.2.8 -r1.1.2.9 --- Atom_4.html 13 Dec 2005 10:04:00 -0000 1.1.2.8 +++ Atom_4.html 26 Jan 2006 10:42:23 -0000 1.1.2.9 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: Focus_Manager_1.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/developer/Focus_Manager_1.html,v retrieving revision 1.3.2.8 retrieving revision 1.3.2.9 diff -u -d -r1.3.2.8 -r1.3.2.9 --- Focus_Manager_1.html 13 Dec 2005 10:04:00 -0000 1.3.2.8 +++ Focus_Manager_1.html 26 Jan 2006 10:42:24 -0000 1.3.2.9 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: Atom_6.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/developer/Atom_6.html,v retrieving revision 1.1.2.8 retrieving revision 1.1.2.9 diff -u -d -r1.1.2.8 -r1.1.2.9 --- Atom_6.html 13 Dec 2005 10:04:00 -0000 1.1.2.8 +++ Atom_6.html 26 Jan 2006 10:42:23 -0000 1.1.2.9 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: Auto_Dimensions_6.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/developer/Auto_Dimensions_6.html,v retrieving revision 1.3.2.7 retrieving revision 1.3.2.8 diff -u -d -r1.3.2.7 -r1.3.2.8 --- Auto_Dimensions_6.html 13 Dec 2005 10:04:00 -0000 1.3.2.7 +++ Auto_Dimensions_6.html 26 Jan 2006 10:42:24 -0000 1.3.2.8 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: Cross_Browser_1.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/developer/Cross_Browser_1.html,v retrieving revision 1.2.2.8 retrieving revision 1.2.2.9 diff -u -d -r1.2.2.8 -r1.2.2.9 --- Cross_Browser_1.html 13 Dec 2005 10:04:00 -0000 1.2.2.8 +++ Cross_Browser_1.html 26 Jan 2006 10:42:24 -0000 1.2.2.9 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: Auto_Dimensions_10.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/developer/Attic/Auto_Dimensions_10.html,v retrieving revision 1.1.2.15 retrieving revision 1.1.2.16 diff -u -d -r1.1.2.15 -r1.1.2.16 --- Auto_Dimensions_10.html 13 Dec 2005 10:04:00 -0000 1.1.2.15 +++ Auto_Dimensions_10.html 26 Jan 2006 10:42:24 -0000 1.1.2.16 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: Canvas_Layout_Performance_4.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/developer/Attic/Canvas_Layout_Performance_4.html,v retrieving revision 1.1.2.4 retrieving revision 1.1.2.5 diff -u -d -r1.1.2.4 -r1.1.2.5 --- Canvas_Layout_Performance_4.html 13 Dec 2005 10:04:00 -0000 1.1.2.4 +++ Canvas_Layout_Performance_4.html 26 Jan 2006 10:42:24 -0000 1.1.2.5 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: Auto_Dimensions_4.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/developer/Auto_Dimensions_4.html,v retrieving revision 1.2.2.7 retrieving revision 1.2.2.8 diff -u -d -r1.2.2.7 -r1.2.2.8 --- Auto_Dimensions_4.html 13 Dec 2005 10:04:00 -0000 1.2.2.7 +++ Auto_Dimensions_4.html 26 Jan 2006 10:42:24 -0000 1.2.2.8 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: Atom_5.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/developer/Atom_5.html,v retrieving revision 1.1.2.8 retrieving revision 1.1.2.9 diff -u -d -r1.1.2.8 -r1.1.2.9 --- Atom_5.html 13 Dec 2005 10:04:00 -0000 1.1.2.8 +++ Atom_5.html 26 Jan 2006 10:42:23 -0000 1.1.2.9 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: Event_Manager_2.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/developer/Event_Manager_2.html,v retrieving revision 1.2.2.7 retrieving revision 1.2.2.8 diff -u -d -r1.2.2.7 -r1.2.2.8 --- Event_Manager_2.html 13 Dec 2005 10:04:00 -0000 1.2.2.7 +++ Event_Manager_2.html 26 Jan 2006 10:42:24 -0000 1.2.2.8 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: Auto_Dimensions_9.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/developer/Attic/Auto_Dimensions_9.html,v retrieving revision 1.1.2.6 retrieving revision 1.1.2.7 diff -u -d -r1.1.2.6 -r1.1.2.7 --- Auto_Dimensions_9.html 13 Dec 2005 10:04:00 -0000 1.1.2.6 +++ Auto_Dimensions_9.html 26 Jan 2006 10:42:24 -0000 1.1.2.7 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> Index: Overflow_Handling_1.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/developer/Overflow_Handling_1.html,v retrieving revision 1.3.2.10 retrieving revision 1.3.2.11 diff -u -d -r1.3.2.10 -r1.3.2.11 --- Overflow_Handling_1.html 13 Dec 2005 10:04:00 -0000 1.3.2.10 +++ Overflow_Handling_1.html 26 Jan 2006 10:42:24 -0000 1.3.2.11 @@ -10,7 +10,6 @@ <meta name="MSSmartTagsPreventParsing" content="yes" /> <title>qooxdoo demo dev</title> - <link type="text/css" rel="stylesheet" href="../../style/qooxdoo.css"/> <link type="text/css" rel="stylesheet" href="../../style/demolayout.css"/> <script type="text/javascript" src="../../../tools/script/includer.js"></script> |
|
From: Sebastian W. <wp...@us...> - 2006-01-26 10:42:31
|
Update of /cvsroot/qooxdoo/qooxdoo/source/style In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14428/source/style Removed Files: Tag: renderer qooxdoo.css Log Message: Finally removed qooxdoo.css --- qooxdoo.css DELETED --- |
|
From: Sebastian W. <wp...@us...> - 2006-01-26 10:33:05
|
Update of /cvsroot/qooxdoo/qooxdoo/source/script/core In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11199/source/script/core Modified Files: Tag: renderer QxConst.js Log Message: Fixed QxInline Index: QxConst.js =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/script/core/Attic/QxConst.js,v retrieving revision 1.1.2.26 retrieving revision 1.1.2.27 diff -u -d -r1.1.2.26 -r1.1.2.27 --- QxConst.js 24 Jan 2006 16:48:54 -0000 1.1.2.26 +++ QxConst.js 26 Jan 2006 10:32:52 -0000 1.1.2.27 @@ -68,7 +68,8 @@ CORE_HIDDEN : "hidden", CORE_0PIXEL : "0px", CORE_ABSOLUTE : "absolute", - CORE_INLINE : "inline", + CORE_RELATIVE : "relative", + CORE_STATIC : "static", CORE_FIXED : "fixed", CORE_DIV : "div", CORE_DISABLED : "disabled", |