qooxdoo-commit Mailing List for qooxdoo (Page 1421)
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-27 10:46:45
|
Update of /cvsroot/qooxdoo/qooxdoo/source/html/test In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7610/source/html/test Added Files: Tag: renderer List_4.html Log Message: Added appearance showcase --- NEW FILE: List_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"> <p>List with colored List Items</p> </div> <script type="text/javascript"> // first we create a new appearance called colored-list-item and add it to the current // appearance theme. This appearance is mainly a copy of the list-item appearance. // note the commented difference below in the state function // QxAppearanceManager.getAppearanceThemeObject().registerAppearance("colored-list-item", { setup : function() { this.bgcolor_selected = new QxColorObject("highlight"); this.color_selected = new QxColorObject("highlighttext"); }, initial : function(vWidget, vTheme) { return { cursor : QxConst.CORE_DEFAULT, height : QxConst.CORE_AUTO, horizontalChildrenAlign : QxConst.ALIGN_LEFT, verticalChildrenAlign : QxConst.ALIGN_MIDDLE, spacing : 4, paddingTop : 3, paddingRight : 5, paddingBottom : 3, paddingLeft : 5 }; }, state : function(vWidget, vTheme, vStates) { if (vStates.lead) { vWidget.setStyleProperty("MozOutline", QxConst.FOCUS_OUTLINE); vWidget.setStyleProperty("outline", QxConst.FOCUS_OUTLINE); } else { vWidget.removeStyleProperty("MozOutline"); vWidget.removeStyleProperty("outline"); }; return { // in the case vStates.selected is false, the backgroundColor is set to backgroundColorUnselected // backgroundColor : vStates.selected ? this.bgcolor_selected : vWidget.getBackgroundColorUnselected(), color : vStates.selected ? this.color_selected : null }; } }); // second we create a new class QxColoredListItem which is derived // from QxListItem and has an additional property backgroundColorUnselected // and a changed appearance to "colored-list-item" // function QxColoredListItem(vText, vIcon, vValue) { QxListItem.call(this, vText, vIcon, vValue); }; QxColoredListItem.extend(QxListItem, "QxColoredListItem"); QxColoredListItem.changeProperty({ name : "appearance", type : QxConst.TYPEOF_STRING, defaultValue : "colored-list-item" }); QxColoredListItem.addProperty({ name : "backgroundColorUnselected", type : QxConst.TYPEOF_OBJECT, instance : "QxColor", convert : QxColorCache, allowMultipleArguments : true }); window.application.main = function() { var doc = this.getClientWindow().getClientDocument(); var sourceList = new QxList(); sourceList.setWidth(200); sourceList.setHeight(400); sourceList.setLeft(20); sourceList.setTop(48); // Set horizontal scroll bar to always visible sourceList.setOverflow("auto"); var colors = [ new QxColor("#FFDFDF"), new QxColor("#FEFF9F"), new QxColor("#AAFFFF") ]; // Add items to source list for (var i = 1; i <= 10; i++) { // now we use the class QxColoredListItem and set the backgroundColorUnselected // to alternating colors // var item = new QxColoredListItem("Item " + i + " is colored."); item.setBackgroundColorUnselected(colors[i%3]); sourceList.add(item); }; doc.add(sourceList); }; </script> </body> </html> |
|
From: Sebastian W. <wp...@us...> - 2006-01-27 10:39:33
|
Update of /cvsroot/qooxdoo/qooxdoo/source/html/example/data/items In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5472/data/items Added Files: Tag: renderer 1.xml 2.xml Log Message: Added missing files --- 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-27 10:39:33
|
Update of /cvsroot/qooxdoo/qooxdoo/source/html/example/images/flashs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5472/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: Added missing files --- 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.) |
|
From: Sebastian W. <wp...@us...> - 2006-01-27 10:39:33
|
Update of /cvsroot/qooxdoo/qooxdoo/source/html/example/images In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5472/images Added Files: Tag: renderer fo_tester.fla fo_tester.swf Log Message: Added missing files --- NEW FILE: fo_tester.fla --- (This appears to be a binary file; contents omitted.) --- NEW FILE: fo_tester.swf --- (This appears to be a binary file; contents omitted.) |
|
From: Sebastian W. <wp...@us...> - 2006-01-27 10:39:33
|
Update of /cvsroot/qooxdoo/qooxdoo/source/html/example/data/loadByName In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5472/data/loadByName Added Files: Tag: renderer Anita.xml Harald.xml Lisbeth.xml Paul.xml Log Message: Added missing files --- 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> |
|
From: Sebastian W. <wp...@us...> - 2006-01-27 10:38:59
|
Update of /cvsroot/qooxdoo/qooxdoo/source/html/example/data/items In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5254/data/items Log Message: Directory /cvsroot/qooxdoo/qooxdoo/source/html/example/data/items added to the repository --> Using per-directory sticky tag `renderer' |
|
From: Sebastian W. <wp...@us...> - 2006-01-27 10:38:57
|
Update of /cvsroot/qooxdoo/qooxdoo/source/html/example/data/loadByName In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5254/data/loadByName Log Message: Directory /cvsroot/qooxdoo/qooxdoo/source/html/example/data/loadByName added to the repository --> Using per-directory sticky tag `renderer' |
|
From: Sebastian W. <wp...@us...> - 2006-01-27 10:38:56
|
Update of /cvsroot/qooxdoo/qooxdoo/source/html/example/images/flashs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5254/images/flashs Log Message: Directory /cvsroot/qooxdoo/qooxdoo/source/html/example/images/flashs added to the repository --> Using per-directory sticky tag `renderer' |
|
From: Sebastian W. <wp...@us...> - 2006-01-27 10:38:38
|
Update of /cvsroot/qooxdoo/qooxdoo/source/html/example/images In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5178/images Log Message: Directory /cvsroot/qooxdoo/qooxdoo/source/html/example/images added to the repository --> Using per-directory sticky tag `renderer' |
|
From: Sebastian W. <wp...@us...> - 2006-01-27 10:38:38
|
Update of /cvsroot/qooxdoo/qooxdoo/source/html/example/data In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5178/data Log Message: Directory /cvsroot/qooxdoo/qooxdoo/source/html/example/data added to the repository --> Using per-directory sticky tag `renderer' |
|
From: Sebastian W. <wp...@us...> - 2006-01-27 10:27:03
|
Update of /cvsroot/qooxdoo/qooxdoo/tools/script In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1631/tools/script Modified Files: layout.js.in Log Message: Updated for latest changes in RENDERER Index: layout.js.in =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/tools/script/layout.js.in,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- layout.js.in 10 Dec 2005 16:10:33 -0000 1.9 +++ layout.js.in 27 Jan 2006 10:26:47 -0000 1.10 @@ -27,7 +27,7 @@ document.write('<div id="testFoot">'); document.write('[<a href="javascript:void(window.application.dispose())">Dispose Application</a>]  '); -if(window.location.href.indexOf("sourceforge.net") == -1 && window.location.href.indexOf("sf.net") == -1 && window.location.href.indexOf("oss.schlund.de") == -1) +if(window.location.href.indexOf("oss.schlund.de") == -1) { if( /\/source\//.test(window.location.href) ) { document.write('[<a href="javascript:void(window.location.href=window.location.href.replace(/\\/source\\//, \'\\/public\\/\'))">Go to: Public</a>]  '); @@ -42,10 +42,6 @@ } }; -if (window.location.href.indexOf("release/") != -1) { - document.write('[<a href="' + window.location.href.replace("release", "dev") + '">Switch to: Development Branch</a>]'); -}; - document.write('</div>'); function showTestFiles() { @@ -71,7 +67,7 @@ document.title = location.href.substring(location.href.lastIndexOf("/")+1).replace(".html", "").replace(/_/g, " ") + " @ qooxdoo :: demo [release]"; -if(location.href.indexOf("qooxdoo.sourceforge.net") != -1 || location.href.indexOf("qooxdoo.oss.schlund.de") != -1) +if(location.href.indexOf("qooxdoo.oss.schlund.de") != -1) { var cstatus="active", visible="0", page_title="", url_of_counter_file="http://qooxdoo.oss.schlund.de/counter/counter.php", page_url=unescape(location.href), referrer=(document.referrer) ? document.referrer : "", page_title=(page_title.length == 0) ? document.title : page_title; |
|
From: Sebastian W. <wp...@us...> - 2006-01-27 10:22:42
|
Update of /cvsroot/qooxdoo/qooxdoo In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv426 Modified Files: Tag: renderer CHANGELOG Log Message: Updated Index: CHANGELOG =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/Attic/CHANGELOG,v retrieving revision 1.1.2.40 retrieving revision 1.1.2.41 diff -u -d -r1.1.2.40 -r1.1.2.41 --- CHANGELOG 27 Jan 2006 09:38:10 -0000 1.1.2.40 +++ CHANGELOG 27 Jan 2006 10:22:31 -0000 1.1.2.41 @@ -1,3 +1,7 @@ +2006-01-27 10:38 wpbasti + + * CHANGELOG: Updated + 2006-01-26 19:44 wpbasti * source/style/demolayout.css, tools/script/demolayout.js.in: |
|
From: Sebastian W. <wp...@us...> - 2006-01-27 09:38:20
|
Update of /cvsroot/qooxdoo/qooxdoo In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20225 Modified Files: Tag: renderer CHANGELOG Log Message: Updated Index: CHANGELOG =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/Attic/CHANGELOG,v retrieving revision 1.1.2.39 retrieving revision 1.1.2.40 diff -u -d -r1.1.2.39 -r1.1.2.40 --- CHANGELOG 25 Jan 2006 11:12:35 -0000 1.1.2.39 +++ CHANGELOG 27 Jan 2006 09:38:10 -0000 1.1.2.40 @@ -1,3 +1,265 @@ +2006-01-26 19:44 wpbasti + + * source/style/demolayout.css, tools/script/demolayout.js.in: + Improved layout + +2006-01-26 15:25 wpbasti + + * source/html/example/: ListView_1.html, ListView_2.html, + ListView_3.html, ListView_4.html: Minor changes + +2006-01-26 15:21 wpbasti [...7691 lines suppressed...] - test/developer/Popups_1.html, test/developer/Positioning_1.html, - test/developer/Widget_2.html, test/developer/Widget_3.html, - test/developer/Widget_6.html, test/developer/Widget_7.html, - test/developer/Widget_8.html, test/developer/Widget_9.html, - test/user/Atom_1.html, test/user/Atom_2.html, - test/user/Bar_Selector_1.html, test/user/Border_1.html, - test/user/Button_1.html, test/user/Checkbox_1.html, - test/user/Combobox_1.html, test/user/Drag_And_Drop_1.html, - test/user/Enabled_Disabled_1.html, test/user/Fieldset_1.html, - test/user/Focus_Manager_1.html, test/user/Iframe_1.html, - test/user/Image_1.html, test/user/List_1.html, - test/user/Listview_1.html, test/user/Menu_1.html, - test/user/Radiobutton_1.html, test/user/Tabs_1.html, - test/user/Toolbar_1.html, test/user/Toolbar_2.html, - test/user/Tooltips_1.html, test/user/Tree_1.html, - test/user/Widget_1.html: Added + style/widgets.css: Added 2005-03-04 16:44 wpbasti |
|
From: Sebastian W. <wp...@us...> - 2006-01-26 18:45:01
|
Update of /cvsroot/qooxdoo/qooxdoo/tools/script In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27099/tools/script Modified Files: Tag: renderer demolayout.js.in Log Message: Improved layout Index: demolayout.js.in =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/tools/script/Attic/demolayout.js.in,v retrieving revision 1.1.2.3 retrieving revision 1.1.2.4 diff -u -d -r1.1.2.3 -r1.1.2.4 --- demolayout.js.in 26 Jan 2006 14:21:42 -0000 1.1.2.3 +++ demolayout.js.in 26 Jan 2006 18:44:50 -0000 1.1.2.4 @@ -66,16 +66,33 @@ var arr = str.split(" "); var p = window.location.pathname.replace(/\\/g, "/"); + var sel = -1; document.writeln('<select id="testFiles" onchange="window.location.href=this.options[this.selectedIndex].value">'); for( var i=1; i<arr.length; i++ ) { document.write('<option value="' + arr[i] + '"'); if(p.search(new RegExp( "\/" + arr[i]) )+1) { document.write(' selected="selected"'); + sel = i; } document.writeln('>' + arr[i].replace(/_/g, " ").replace(/\.html/, "") + '</option>'); } document.writeln('</select>'); + + if (sel != -1) + { + document.writeln('<div id="testJump">'); + + if (sel > 1) { + document.writeln("<button onclick='window.location.href=\"" + arr[sel-1] + "\"'><</button>"); + } + + if (sel < arr.length-1) { + document.writeln("<button onclick='window.location.href=\"" + arr[sel+1] + "\"'>></button>"); + } + + document.writeln('</div>'); + }; } document.title = location.href.substring(location.href.lastIndexOf("/")+1).replace(".html", "").replace(/_/g, " ") + " @ qooxdoo :: demo [development]"; |
|
From: Sebastian W. <wp...@us...> - 2006-01-26 18:45:01
|
Update of /cvsroot/qooxdoo/qooxdoo/source/style In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27099/source/style Modified Files: Tag: renderer demolayout.css Log Message: Improved layout Index: demolayout.css =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/style/Attic/demolayout.css,v retrieving revision 1.1.2.7 retrieving revision 1.1.2.8 diff -u -d -r1.1.2.7 -r1.1.2.8 --- demolayout.css 26 Jan 2006 10:32:26 -0000 1.1.2.7 +++ demolayout.css 26 Jan 2006 18:44:50 -0000 1.1.2.8 @@ -5,6 +5,10 @@ padding: 0; } +p{ + margin: 6px 0; +} + #testHead, #testFoot{ position: absolute; @@ -53,51 +57,64 @@ font-family: Tahoma, Verdana, sans-serif; position: absolute; - top: 20px; - right: 0px; - width: 270px; + top: 24px; + right: 50px; + width: 215px; + z-index: 2; +} + +#testJump{ + position: absolute; + top: 24px; + right: 4px; + width: 45px; + text-align: right; z-index: 2; } #testDescription{ position: absolute; - top: 40px; + top: 44px; height : 120px; - width: 270px; - right: 0; + width: 266px; + right: 4px; z-index: 2; overflow: auto; border-bottom: 10px solid #335EA8; - padding: 0px 6px 4px; + padding: 0px 6px 0px 4px; +} + +#testDescription p{ + margin: 4px 0; } #testDebug{ position: absolute; top: 160px; - bottom: 20px; - right: 0; - width: 270px; + bottom: 24px; + right: 4px; + width: 266px; font-size: 10px; font-family: "Bitstream Vera Sans Mono", "Courier New", "Courier", monospace; z-index: 2; } * html #testDebug{ - height: expression(document.body.offsetHeight - 180); + height: expression(document.body.offsetHeight - 184); } #testDebug .log{ overflow: -moz-scrollbars-vertical; - overflow-y: scroll; + overflow-y: scroll; position: absolute; top: 30px; bottom: 0px; - width: 270px; + width: 266px; padding: 4px; } * html #testDebug .log{ - height: expression(document.body.offsetHeight - 210); + height: expression(document.body.offsetHeight - 214); } #testDebug .message{ @@ -129,9 +146,10 @@ #testDebug .head{ visibility: visible; - padding: 6px 2px; + padding: 8px 2px 4px; } +#testJump button, #testDebug .head button{ border: 1px solid #335EA8; margin: 0 2px; @@ -139,3 +157,8 @@ background: #EBE9ED; font-family: Tahoma, Verdana, sans-serif; } + +#testJump button{ + width: 16px; + -moz-appearance: none !important; +} \ No newline at end of file |
|
From: Sebastian W. <wp...@us...> - 2006-01-26 14:26:06
|
Update of /cvsroot/qooxdoo/qooxdoo/source/html/example In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29024/source/html/example Modified Files: Tag: renderer ListView_1.html ListView_2.html ListView_3.html ListView_4.html Log Message: Minor changes Index: ListView_3.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/html/example/Attic/ListView_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 --- ListView_3.html 26 Jan 2006 14:21:36 -0000 1.1.2.1 +++ ListView_3.html 26 Jan 2006 14:25:56 -0000 1.1.2.2 @@ -49,7 +49,6 @@ lv.setWidth(600); lv.setHeight(350); lv.setLocation(20, 48); - lv.setTimerBasedUpdate(true); this.add(lv); }; Index: ListView_2.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/html/example/Attic/ListView_2.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 --- ListView_2.html 26 Jan 2006 14:21:36 -0000 1.1.2.1 +++ ListView_2.html 26 Jan 2006 14:25:56 -0000 1.1.2.2 @@ -18,8 +18,8 @@ <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> + <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"> @@ -27,21 +27,23 @@ { 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({ 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--" }}); + 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", resizable : false }, + 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); @@ -50,24 +52,8 @@ 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> Index: ListView_4.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/html/example/Attic/ListView_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 --- ListView_4.html 26 Jan 2006 14:21:36 -0000 1.1.2.1 +++ ListView_4.html 26 Jan 2006 14:25:56 -0000 1.1.2.2 @@ -50,7 +50,6 @@ lv.setWidth(600); lv.setHeight(350); lv.setLocation(20, 48); - lv.setTimerBasedUpdate(true); this.add(lv); Index: ListView_1.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/html/example/Attic/ListView_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 --- ListView_1.html 26 Jan 2006 14:21:35 -0000 1.1.2.1 +++ ListView_1.html 26 Jan 2006 14:25:56 -0000 1.1.2.2 @@ -18,8 +18,8 @@ <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> + <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"> @@ -27,23 +27,21 @@ { 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--" }}); + 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 = { - icon : { label : "", width: 24, type : "image" }, name : { label : "Name", width : 100, type : "text" }, - size: { label : "Size", width : 50, type : "text", align : "right" }, + 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); @@ -52,9 +50,23 @@ lv.setWidth(600); lv.setHeight(350); lv.setLocation(20, 48); - lv.setTimerBasedUpdate(false); + + // 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> |
|
From: Sebastian W. <wp...@us...> - 2006-01-26 14:23:27
|
Update of /cvsroot/qooxdoo/qooxdoo/source/html/showcase In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28333/source/html/showcase Added Files: Tag: renderer Index.html Log Message: Restructured test examples --- NEW FILE: Index.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>Please choose an example from the select area above.</p> </div> </body> </html> |
|
From: Sebastian W. <wp...@us...> - 2006-01-26 14:23:27
|
Update of /cvsroot/qooxdoo/qooxdoo/source/html/test In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28333/source/html/test Added Files: Tag: renderer Builder_2.xml Builder_3.xml Compile_2.js Index.html cssQuery-p.js Log Message: Restructured test examples --- NEW FILE: Builder_2.xml --- <qx:widgets xmlns:qx='qooxdoo'> <qx:button id='btn' label='Click Me!!!' location='20,50'> <!-- function body event listener --> <qx:eventListener type='click' args='event'> btn.setLabel(btn.getLabel() + "."); alert(event + "\n\nClicked on: " + this.getLabel()); </qx:eventListener> <!-- global object.method delegation when the button is clicked, d.click(event) will be called --> <qx:eventListener type='click' delegate='d.click'/> <!-- global function delegation when the button is clicked, f(event) will be called --> <qx:eventListener type='click' delegate='f'/> </qx:button> <qx:atom id='atom1' label='Test No #1' icon='icons/16/penguin.png' border='QxBorder.presets.black' location='20,90'/> <qx:button label='Test No #2' icon='icons/16/penguin.png' location='20,120'> <qx:eventListener type='click'> atom1.setLabel(atom1.getLabel() + "."); </qx:eventListener> </qx:button> <qx:atom label='Test No #3' icon='icons/16/penguin.png' location='20,160'/> <qx:atom label='a' icon='icons/16/penguin.png' location='20,200'/> <qx:atom label='b' icon='icons/16/penguin.png' location='20,240'/> <qx:script> // test delegate function var f = function(e) { alert(e + '\n\nclick received at delegate function\n\n'); } // test delegate object var d = { hello : 'world', click : function(e) { alert(e + '\n\nclick received at delegate object\n\n' + this.hello); } } </qx:script> </qx:widgets> --- NEW FILE: Index.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>Please choose an example from the select area above.</p> </div> </body> </html> --- NEW FILE: Compile_2.js --- window.application.main = function() { var f = new Function(); f.prototype = QxButton.prototype; $0 = new f; QxObjectDataBase[74] = $0; $0._valueElement = cssQuery("[qxhashcode=74]")[0]; $0._element = $0._valueElement; $0._style = $0._valueElement.style; $0._valueElement._QxWidget = $0; $1 = 74; $2 = {}; $3 = "QxWidgetCore QxButton"; $4 = {}; $5 = {}; $6 = "none"; $7 = "normal"; $8 = "default"; $9 = "buttonface"; [...3828 lines suppressed...] $614[1] = $48; $614[2] = $48; $616["threeddarkshadow"] = $184; $616["threedshadow"] = $232; $616["threedlightshadow"] = $296; $616["threedhighlight"] = $306; $616["infotext"] = $309; $616["graytext"] = $319; $616["buttonface"] = $97; $616["highlight"] = $323; $616["highlighttext"] = $327; $616["inactivecaption"] = $331; $616["inactivecaptiontext"] = $335; $616["activecaption"] = $338; $616["captiontext"] = $342; $616["threedface"] = $359; $616["windowtext"] = $363; $619[0] = $24; $619[1] = $54; }; --- NEW FILE: cssQuery-p.js --- /* cssQuery, version 2.0.2 (2005-08-19) Copyright: 2004-2005, Dean Edwards (http://dean.edwards.name/) License: http://creativecommons.org/licenses/LGPL/2.1/ */ eval(function(p,a,c,k,e,d){e=function(c){return(c<a?'':e(parseInt(c/a)))+((c=c%a)>35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--)d[e(c)]=k[c]||e(c);k=[function(e){return d[e]}];e=function(){return'\\w+'};c=1};while(c--)if(k[c])p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c]);return p}('7 x=6(){7 1D="2.0.2";7 C=/\\s*,\\s*/;7 x=6(s,A){33{7 m=[];7 u=1z.32.2c&&!A;7 b=(A)?(A.31==22)?A:[A]:[1g];7 1E=18(s).1l(C),i;9(i=0;i<1E.y;i++){s=1y(1E[i]);8(U&&s.Z(0,3).2b("")==" *#"){s=s.Z(2);A=24([],b,s[1])}1A A=b;7 j=0,t,f,a,c="";H(j<s.y){t=s[j++];f=s[j++];c+=t+f;a="";8(s[j]=="("){H(s[j++]!=")")a+=s[j];a=a.Z(0,-1);c+="("+a+")"}A=(u&&V[c])?V[c]:21(A,t,f,a);8(u)V[c]=A}m=m.30(A)}2a x.2d;5 m}2Z(e){x.2d=e;5[]}};x.1Z=6(){5"6 x() {\\n [1D "+1D+"]\\n}"};7 V={};x.2c=L;x.2Y=6(s){8(s){s=1y(s).2b("");2a V[s]}1A V={}};7 29={};7 19=L;x.15=6(n,s){8(19)1i("s="+1U(s));29[n]=12 s()};x.2X=6(c){5 c?1i(c):o};7 D={};7 h={};7 q={P:/\\[([\\w-]+(\\|[\\w-]+)?)\\s*(\\W?=)?\\s*([^\\]]*)\\]/};7 T=[];D[" "]=6(r,f,t,n){7 e,i,j;9(i=0;i<f.y;i++){7 s=X(f[i],t,n);9(j=0;(e=s[j]);j++){8(M(e)&&14(e,n))r.z(e)}}};D["#"]=6(r,f,i){7 e,j;9(j=0;(e=f[j]);j++)8(e.B==i)r.z(e)};D["."]=6(r,f,c){c=12 1t("(^|\\\\s)"+c+"(\\\\s|$)");7 e,i;9(i=0;(e=f[i]);i++)8(c.l(e.1V))r.z(e)};D[":"]=6(r,f,p,a){7 t=h[p],e,i;8(t)9(i=0;(e=f[i]);i++)8(t(e,a))r.z(e)};h["2W"]=6(e){7 d=Q(e);8(d.1C)9(7 i=0;i<d.1C.y;i++){8(d.1C[i]==e)5 K}};h["2V"]=6(e){};7 M=6(e){5(e&&e.1c==1&&e.1f!="!")?e:23};7 16=6(e){H(e&&(e=e.2U)&&!M(e))28;5 e};7 G=6(e){H(e&&(e=e.2T)&&!M(e))28;5 e};7 1r=6(e){5 M(e.27)||G(e.27)};7 1P=6(e){5 M(e.26)||16(e.26)};7 1o=6(e){7 c=[];e=1r(e);H(e){c.z(e);e=G(e)}5 c};7 U=K;7 1h=6(e){7 d=Q(e);5(2S d.25=="2R")?/\\.1J$/i.l(d.2Q):2P(d.25=="2O 2N")};7 Q=6(e){5 e.2M||e.1g};7 X=6(e,t){5(t=="*"&&e.1B)?e.1B:e.X(t)};7 17=6(e,t,n){8(t=="*")5 M(e);8(!14(e,n))5 L;8(!1h(e))t=t.2L();5 e.1f==t};7 14=6(e,n){5!n||(n=="*")||(e.2K==n)};7 1e=6(e){5 e.1G};6 24(r,f,B){7 m,i,j;9(i=0;i<f.y;i++){8(m=f[i].1B.2J(B)){8(m.B==B)r.z(m);1A 8(m.y!=23){9(j=0;j<m.y;j++){8(m[j].B==B)r.z(m[j])}}}}5 r};8(![].z)22.2I.z=6(){9(7 i=0;i<1z.y;i++){o[o.y]=1z[i]}5 o.y};7 N=/\\|/;6 21(A,t,f,a){8(N.l(f)){f=f.1l(N);a=f[0];f=f[1]}7 r=[];8(D[t]){D[t](r,A,f,a)}5 r};7 S=/^[^\\s>+~]/;7 20=/[\\s#.:>+~()@]|[^\\s#.:>+~()@]+/g;6 1y(s){8(S.l(s))s=" "+s;5 s.P(20)||[]};7 W=/\\s*([\\s>+~(),]|^|$)\\s*/g;7 I=/([\\s>+~,]|[^(]\\+|^)([#.:@])/g;7 18=6(s){5 s.O(W,"$1").O(I,"$1*$2")};7 1u={1Z:6(){5"\'"},P:/^(\'[^\']*\')|("[^"]*")$/,l:6(s){5 o.P.l(s)},1S:6(s){5 o.l(s)?s:o+s+o},1Y:6(s){5 o.l(s)?s.Z(1,-1):s}};7 1s=6(t){5 1u.1Y(t)};7 E=/([\\/()[\\]?{}|*+-])/g;6 R(s){5 s.O(E,"\\\\$1")};x.15("1j-2H",6(){D[">"]=6(r,f,t,n){7 e,i,j;9(i=0;i<f.y;i++){7 s=1o(f[i]);9(j=0;(e=s[j]);j++)8(17(e,t,n))r.z(e)}};D["+"]=6(r,f,t,n){9(7 i=0;i<f.y;i++){7 e=G(f[i]);8(e&&17(e,t,n))r.z(e)}};D["@"]=6(r,f,a){7 t=T[a].l;7 e,i;9(i=0;(e=f[i]);i++)8(t(e))r.z(e)};h["2G-10"]=6(e){5!16(e)};h["1x"]=6(e,c){c=12 1t("^"+c,"i");H(e&&!e.13("1x"))e=e.1n;5 e&&c.l(e.13("1x"))};q.1X=/\\\\:/g;q.1w="@";q.J={};q.O=6(m,a,n,c,v){7 k=o.1w+m;8(!T[k]){a=o.1W(a,c||"",v||"");T[k]=a;T.z(a)}5 T[k].B};q.1Q=6(s){s=s.O(o.1X,"|");7 m;H(m=s.P(o.P)){7 r=o.O(m[0],m[1],m[2],m[3],m[4]);s=s.O(o.P,r)}5 s};q.1W=6(p,t,v){7 a={};a.B=o.1w+T.y;a.2F=p;t=o.J[t];t=t?t(o.13(p),1s(v)):L;a.l=12 2E("e","5 "+t);5 a};q.13=6(n){1d(n.2D()){F"B":5"e.B";F"2C":5"e.1V";F"9":5"e.2B";F"1T":8(U){5"1U((e.2A.P(/1T=\\\\1v?([^\\\\s\\\\1v]*)\\\\1v?/)||[])[1]||\'\')"}}5"e.13(\'"+n.O(N,":")+"\')"};q.J[""]=6(a){5 a};q.J["="]=6(a,v){5 a+"=="+1u.1S(v)};q.J["~="]=6(a,v){5"/(^| )"+R(v)+"( |$)/.l("+a+")"};q.J["|="]=6(a,v){5"/^"+R(v)+"(-|$)/.l("+a+")"};7 1R=18;18=6(s){5 1R(q.1Q(s))}});x.15("1j-2z",6(){D["~"]=6(r,f,t,n){7 e,i;9(i=0;(e=f[i]);i++){H(e=G(e)){8(17(e,t,n))r.z(e)}}};h["2y"]=6(e,t){t=12 1t(R(1s(t)));5 t.l(1e(e))};h["2x"]=6(e){5 e==Q(e).1H};h["2w"]=6(e){7 n,i;9(i=0;(n=e.1F[i]);i++){8(M(n)||n.1c==3)5 L}5 K};h["1N-10"]=6(e){5!G(e)};h["2v-10"]=6(e){e=e.1n;5 1r(e)==1P(e)};h["2u"]=6(e,s){7 n=x(s,Q(e));9(7 i=0;i<n.y;i++){8(n[i]==e)5 L}5 K};h["1O-10"]=6(e,a){5 1p(e,a,16)};h["1O-1N-10"]=6(e,a){5 1p(e,a,G)};h["2t"]=6(e){5 e.B==2s.2r.Z(1)};h["1M"]=6(e){5 e.1M};h["2q"]=6(e){5 e.1q===L};h["1q"]=6(e){5 e.1q};h["1L"]=6(e){5 e.1L};q.J["^="]=6(a,v){5"/^"+R(v)+"/.l("+a+")"};q.J["$="]=6(a,v){5"/"+R(v)+"$/.l("+a+")"};q.J["*="]=6(a,v){5"/"+R(v)+"/.l("+a+")"};6 1p(e,a,t){1d(a){F"n":5 K;F"2p":a="2n";1a;F"2o":a="2n+1"}7 1m=1o(e.1n);6 1k(i){7 i=(t==G)?1m.y-i:i-1;5 1m[i]==e};8(!Y(a))5 1k(a);a=a.1l("n");7 m=1K(a[0]);7 s=1K(a[1]);8((Y(m)||m==1)&&s==0)5 K;8(m==0&&!Y(s))5 1k(s);8(Y(s))s=0;7 c=1;H(e=t(e))c++;8(Y(m)||m==1)5(t==G)?(c<=s):(s>=c);5(c%m)==s}});x.15("1j-2m",6(){U=1i("L;/*@2l@8(@\\2k)U=K@2j@*/");8(!U){X=6(e,t,n){5 n?e.2i("*",t):e.X(t)};14=6(e,n){5!n||(n=="*")||(e.2h==n)};1h=1g.1I?6(e){5/1J/i.l(Q(e).1I)}:6(e){5 Q(e).1H.1f!="2g"};1e=6(e){5 e.2f||e.1G||1b(e)};6 1b(e){7 t="",n,i;9(i=0;(n=e.1F[i]);i++){1d(n.1c){F 11:F 1:t+=1b(n);1a;F 3:t+=n.2e;1a}}5 t}}});19=K;5 x}();',62,190,'|||||return|function|var|if|for||||||||pseudoClasses||||test|||this||AttributeSelector|||||||cssQuery|length|push|fr|id||selectors||case|nextElementSibling|while||tests|true|false|thisElement||replace|match|getDocument|regEscape||attributeSelectors|isMSIE|cache||getElementsByTagName|isNaN|slice|child||new|getAttribute|compareNamespace|addModule|previousElementSibling|compareTagName|parseSelector|loaded|break|_0|nodeType|switch|getTextContent|tagName|document|isXML|eval|css|_1|split|ch|parentNode|childElements|nthChild|disabled|firstElementChild|getText|RegExp|Quote|x22|PREFIX|lang|_2|arguments|else|all|links|version|se|childNodes|innerText|documentElement|contentType|xml|parseInt|indeterminate|checked|last|nth|lastElementChild|parse|_3|add|href|String|className|create|NS_IE|remove|toString|ST|select|Array|null|_4|mimeType|lastChild|firstChild|continue|modules|delete|join|caching|error|nodeValue|textContent|HTML|prefix|getElementsByTagNameNS|end|x5fwin32|cc_on|standard||odd|even|enabled|hash|location|target|not|only|empty|root|contains|level3|outerHTML|htmlFor|class|toLowerCase|Function|name|first|level2|prototype|item|scopeName|toUpperCase|ownerDocument|Document|XML|Boolean|URL|unknown|typeof|nextSibling|previousSibling|visited|link|valueOf|clearCache|catch|concat|constructor|callee|try'.split('|'),0,{})) --- NEW FILE: Builder_3.xml --- <qx:widgets xmlns:qx='qooxdoo'> <qx:menu id='m2'> <qx:menuButton label='New Window'/> <qx:menuButton label='Overlapping'/> <qx:menuButton label='Split Vertical'/> <qx:menuButton label='Split Horizontal'/> <qx:menuButton label='Next Window'/> <qx:menuButton label='Previous Window'/> </qx:menu> <qx:menu id='m1'> <qx:menuButton label='View/Lists'/> <qx:menuButton label='Syntax Highlighting'/> <qx:menuSeparator/> <qx:menuButton label='Window Font'/> <qx:menuButton label='Printer Font' menu='m2'/> </qx:menu> <qx:button id='btn' label='Reference Property' location='20,48'> <qx:eventListener type='click' args='e'> var el = this.getElement(); m1.setLeft(QxDom.getComputedPageBoxLeft(el)); m1.setTop(QxDom.getComputedPageBoxBottom(el)); m1.show(); e.setPropagationStopped(true); </qx:eventListener> <qx:eventListener type='mousedown' args='e'> e.setPropagationStopped(true); </qx:eventListener> </qx:button> <qx:atom label='Comma Delimited Property & Eval Property ' location='140,48' backgroundColor='#BDD2EF' dimension='220,220' border='QxBorderObject.presets.outset'/> </qx:widgets> |
|
From: Sebastian W. <wp...@us...> - 2006-01-26 14:23:27
|
Update of /cvsroot/qooxdoo/qooxdoo/source/html/example In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28333/source/html/example Added Files: Tag: renderer Index.html Log Message: Restructured test examples --- NEW FILE: Index.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>Please choose an example from the select area above.</p> </div> </body> </html> |
|
From: Sebastian W. <wp...@us...> - 2006-01-26 14:22:03
|
Update of /cvsroot/qooxdoo/qooxdoo/source/test/user/data/loadByName In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27655/source/test/user/data/loadByName Removed Files: Tag: renderer Anita.xml Harald.xml Lisbeth.xml Paul.xml Log Message: Restructured test examples --- Lisbeth.xml DELETED --- --- Harald.xml DELETED --- --- Anita.xml DELETED --- --- Paul.xml DELETED --- |
|
From: Sebastian W. <wp...@us...> - 2006-01-26 14:22:03
|
Update of /cvsroot/qooxdoo/qooxdoo/source/test/user/data/items In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27655/source/test/user/data/items Removed Files: Tag: renderer 1.xml 2.xml Log Message: Restructured test examples --- 1.xml DELETED --- --- 2.xml DELETED --- |
|
From: Sebastian W. <wp...@us...> - 2006-01-26 14:22:03
|
Update of /cvsroot/qooxdoo/qooxdoo/tools/script In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27655/tools/script Modified Files: Tag: renderer demolayout.js.in Log Message: Restructured test examples Index: demolayout.js.in =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/tools/script/Attic/demolayout.js.in,v retrieving revision 1.1.2.2 retrieving revision 1.1.2.3 diff -u -d -r1.1.2.2 -r1.1.2.3 --- demolayout.js.in 26 Jan 2006 09:33:25 -0000 1.1.2.2 +++ demolayout.js.in 26 Jan 2006 14:21:42 -0000 1.1.2.3 @@ -32,10 +32,15 @@ document.write('[<a href="javascript:void(window.location.href=window.location.href.replace(/\\/public\\//, \'\\/source\\/\'))">Go to: Source</a>]  '); }; - if( /\/developer\//.test(window.location.href) ) { - document.write('[<a href="../user/Index.html">Go to: User Examples</a>]  '); + if( /\/showcase\//.test(window.location.href) ) { + document.write('[<a href="../example/Index.html">Go to: Example</a>]  '); + document.write('[<a href="../test/Index.html">Go to: Test</a>]  '); + } else if( /\/example\//.test(window.location.href) ) { + document.write('[<a href="../showcase/Index.html">Go to: Showcase</a>]  '); + document.write('[<a href="../test/Index.html">Go to: Test</a>]  '); } else { - document.write('[<a href="../developer/Index.html">Go to: Developer Examples</a>]  '); + document.write('[<a href="../showcase/Index.html">Go to: Showcase</a>]  '); + document.write('[<a href="../example/Index.html">Go to: Example</a>]  '); }; }; @@ -49,9 +54,14 @@ function showTestFiles() { - var str = usrstr;; - if( window.location.href.search(/\/developer\//)+1 ) { - str = devstr; + if( window.location.href.search(/\/showcase\//)+1 ) { + str = showstr; + } + else if( window.location.href.search(/\/example\//)+1 ) { + str = exastr; + } + else if( window.location.href.search(/\/test\//)+1 ) { + str = teststr; } var arr = str.split(" "); |
Update of /cvsroot/qooxdoo/qooxdoo/source/test/user In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27655/source/test/user Removed 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_2.xml Builder_3.html Builder_3.xml 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_1.html Window_2.html Window_3.html Window_4.html Window_5.html Window_6.html Log Message: Restructured test examples --- Image_2.html DELETED --- --- Tab_View_1.html DELETED --- --- List_View_3.html DELETED --- --- List_View_3b.html DELETED --- --- Bar_View_2.html DELETED --- --- List_View_12.html DELETED --- --- Gallery_3.html DELETED --- --- Atom_2.html DELETED --- --- Dock_Layout_3.html DELETED --- --- Toolbar_5.html DELETED --- --- Fieldset_3.html DELETED --- --- Gallery_List_1.html DELETED --- --- List_1.html DELETED --- --- Tree_7.html DELETED --- --- Builder_3.html DELETED --- --- Box_Layout_3.html DELETED --- --- Grid_Layout_3.html DELETED --- --- List_View_2b.html DELETED --- --- List_View_10.html DELETED --- --- Fields_1.html DELETED --- --- Dock_Layout_2.html DELETED --- --- List_2.html DELETED --- --- Drag_And_Drop_1.html DELETED --- --- List_View_2.html DELETED --- --- Combobox_1.html DELETED --- --- Index.html DELETED --- --- User_Data_1.html DELETED --- --- Color_Themes_2.html DELETED --- --- Tooltip_1.html DELETED --- --- Grid_Layout_6.html DELETED --- --- Fieldset_1.html DELETED --- --- Box_Layout_4.html DELETED --- --- Tree_5.html DELETED --- --- Repeat_Button_1.html DELETED --- --- Window_3.html DELETED --- --- List_View_5.html DELETED --- --- Label_3.html DELETED --- --- IconHtml_1.html DELETED --- --- Flow_Layout_3.html DELETED --- --- Fields_2.html DELETED --- --- Grid_Layout_4.html DELETED --- --- Box_Layout_2.html DELETED --- --- Toolbar_3.html DELETED --- --- Toolbar_1.html DELETED --- --- Flow_Layout_2.html DELETED --- --- Builder_4.html DELETED --- --- Bar_View_1.html DELETED --- --- List_View_1b.html DELETED --- --- Window_2.html DELETED --- --- Builder_1.html DELETED --- --- Enabled_Disabled_1.html DELETED --- --- Canvas_Layout_1.html DELETED --- --- Clipping_1.html DELETED --- --- Menu_3.html DELETED --- --- Tree_4.html DELETED --- --- Toolbar_7.html DELETED --- --- Checkbox_1.html DELETED --- --- Menu_2.html DELETED --- --- Tree_3.html DELETED --- --- Combobox_2.html DELETED --- --- Cookie_1.html DELETED --- --- Grid_Layout_8.html DELETED --- --- Color_Themes_1.html DELETED --- --- Label_1.html DELETED --- --- Fieldset_4.html DELETED --- --- Link_1.html DELETED --- --- Toolbar_4.html DELETED --- --- Label_4.html DELETED --- --- Drag_And_Drop_2.html DELETED --- --- List_View_13.html DELETED --- --- Builder_3.xml DELETED --- --- Tree_6.html DELETED --- --- Border_1.html DELETED --- --- Fieldset_2.html DELETED --- --- Box_Layout_1.html DELETED --- --- Rounded_Corners_1.html DELETED --- --- Grid_Layout_1.html DELETED --- --- List_View_4.html DELETED --- --- List_View_6.html DELETED --- --- Box_Layout_7.html DELETED --- --- Window_1.html DELETED --- --- Data_Handling_2.html DELETED --- --- Box_Layout_8.html DELETED --- --- Node_1.html DELETED --- --- Grid_Layout_5.html DELETED --- --- Grid_Layout_7.html DELETED --- --- Grid_Layout_10.html DELETED --- --- Image_1.html DELETED --- --- Builder_2.html DELETED --- --- Iframe_1.html DELETED --- --- Radiobutton_1.html DELETED --- --- Dock_Layout_5.html DELETED --- --- Tree_1.html DELETED --- --- Font_1.html DELETED --- --- Toolbar_6.html DELETED --- --- Button_2.html DELETED --- --- Flash_1.html DELETED --- --- List_View_8.html DELETED --- --- Combobox_3.html DELETED --- --- Transport_1.html DELETED --- --- Tree_2.html DELETED --- --- List_View_1.html DELETED --- --- Menu_1.html DELETED --- --- List_View_7.html DELETED --- --- Gallery_2.html DELETED --- --- Grid_Layout_2.html DELETED --- --- Focus_Manager_1.html DELETED --- --- Dock_Layout_1.html DELETED --- --- Toolbar_8.html DELETED --- --- Data_Handling_1.html DELETED --- --- Window_4.html DELETED --- --- Box_Layout_6.html DELETED --- --- List_View_14.html DELETED --- --- Spinner_1.html DELETED --- --- Atom_1.html DELETED --- --- Dock_Layout_6.html DELETED --- --- List_4.html DELETED --- --- List_3.html DELETED --- --- List_View_9.html DELETED --- --- Window_6.html DELETED --- --- Toolbar_2.html DELETED --- --- Grid_Layout_11.html DELETED --- --- Box_Layout_5.html DELETED --- --- Inline_1.html DELETED --- --- List_View_11.html DELETED --- --- Flow_Layout_1.html DELETED --- --- Builder_2.xml DELETED --- --- Color_Themes_3.html DELETED --- --- Native_Window_1.html DELETED --- --- Dock_Layout_4.html DELETED --- --- Gallery_1.html DELETED --- --- Label_2.html DELETED --- --- Grid_Layout_9.html DELETED --- --- Combobox_4.html DELETED --- --- Button_1.html DELETED --- --- Window_5.html DELETED --- --- Atom_3.html DELETED --- |
|
From: Sebastian W. <wp...@us...> - 2006-01-26 14:22:03
|
Update of /cvsroot/qooxdoo/qooxdoo/source/test/user/images/flashs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27655/source/test/user/images/flashs Removed 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 --- file5.swf DELETED --- --- file9.swf DELETED --- --- file4.swf DELETED --- --- file7.swf DELETED --- --- file8.swf DELETED --- --- file2.swf DELETED --- --- file10.swf DELETED --- --- file3.swf DELETED --- --- file6.swf DELETED --- --- file1.swf DELETED --- |
|
From: Sebastian W. <wp...@us...> - 2006-01-26 14:22:03
|
Update of /cvsroot/qooxdoo/qooxdoo/source/test/user/images In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27655/source/test/user/images Removed Files: Tag: renderer fo_tester.fla fo_tester.swf grid_dialog_box.png Log Message: Restructured test examples --- grid_dialog_box.png DELETED --- --- fo_tester.swf DELETED --- --- fo_tester.fla DELETED --- |