qooxdoo-commit Mailing List for qooxdoo (Page 1398)
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: Andreas E. <ec...@us...> - 2006-02-16 10:40:25
|
Update of /cvsroot/qooxdoo/qooxdoo/source/script/gui In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19030/source/script/gui Modified Files: Tag: renderer QxImagePreloaderSystem.js QxWidget.js Log Message: Renamed buildURI() to buildUri(), since qooxdoo always uses camel case naming convention Index: QxImagePreloaderSystem.js =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/script/gui/Attic/QxImagePreloaderSystem.js,v retrieving revision 1.1.2.3 retrieving revision 1.1.2.4 diff -u -d -r1.1.2.3 -r1.1.2.4 --- QxImagePreloaderSystem.js 13 Feb 2006 14:46:58 -0000 1.1.2.3 +++ QxImagePreloaderSystem.js 16 Feb 2006 10:40:16 -0000 1.1.2.4 @@ -52,7 +52,7 @@ { for (vSource in this._list) { - vPreloader = QxImagePreloaderManager.create(QxImageManager.buildURI(vSource)); + vPreloader = QxImagePreloaderManager.create(QxImageManager.buildUri(vSource)); if (vPreloader.isErroneous() || vPreloader.isLoaded()) { Index: QxWidget.js =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/script/gui/Attic/QxWidget.js,v retrieving revision 1.1.2.74 retrieving revision 1.1.2.75 diff -u -d -r1.1.2.74 -r1.1.2.75 --- QxWidget.js 12 Feb 2006 11:01:53 -0000 1.1.2.74 +++ QxWidget.js 16 Feb 2006 10:40:16 -0000 1.1.2.75 @@ -3899,7 +3899,7 @@ QxWidget.BACKGROUNDIMG_REGEXP2 = /\)$/; proto._modifyBackgroundImage = function(propValue, propOldValue, propData) { - return QxUtil.isValidString(propValue) ? this.setStyleProperty(QxWidget.BACKGROUNDIMG_PROPERTY, QxWidget.BACKGROUNDIMG_VALUE_START + QxImageManager.buildURI(propValue) + QxWidget.BACKGROUNDIMG_VALUE_STOP) : this.removeStyleProperty(QxWidget.BACKGROUNDIMG_PROPERTY); + return QxUtil.isValidString(propValue) ? this.setStyleProperty(QxWidget.BACKGROUNDIMG_PROPERTY, QxWidget.BACKGROUNDIMG_VALUE_START + QxImageManager.buildUri(propValue) + QxWidget.BACKGROUNDIMG_VALUE_STOP) : this.removeStyleProperty(QxWidget.BACKGROUNDIMG_PROPERTY); }; |
|
From: Andreas E. <ec...@us...> - 2006-02-16 10:40:25
|
Update of /cvsroot/qooxdoo/qooxdoo/source/script/managers In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19030/source/script/managers Modified Files: Tag: renderer QxImageManager.js Log Message: Renamed buildURI() to buildUri(), since qooxdoo always uses camel case naming convention Index: QxImageManager.js =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/script/managers/QxImageManager.js,v retrieving revision 1.3.2.29 retrieving revision 1.3.2.30 diff -u -d -r1.3.2.29 -r1.3.2.30 --- QxImageManager.js 13 Feb 2006 14:46:58 -0000 1.3.2.29 +++ QxImageManager.js 16 Feb 2006 10:40:16 -0000 1.3.2.30 @@ -50,7 +50,7 @@ // instances which use this source this._sources = {}; - // Full image URIs (working as a cache to reduce the _buildURI executions) + // Full image URIs (working as a cache to reduce the _buildUri executions) this._uris = {}; // Contains defined aliases (like icons/, widgets/, application/, ...) @@ -231,12 +231,12 @@ --------------------------------------------------------------------------- */ -proto.buildURI = function(vPath, vForceUpdate) +proto.buildUri = function(vPath, vForceUpdate) { var vUri = this._uris[vPath]; if (vForceUpdate || typeof vUri === QxConst.TYPEOF_UNDEFINED) { - vUri = this._uris[vPath] = this._buildURI(vPath); + vUri = this._uris[vPath] = this._buildUri(vPath); }; // this.debug("URI: " + vPath + " => " + vUri); @@ -268,7 +268,7 @@ --------------------------------------------------------------------------- */ -proto._buildURI = function(vPath, vForce) +proto._buildUri = function(vPath, vForce) { switch(vPath.charAt(0)) { @@ -301,7 +301,7 @@ for (var vHashCode in vAll) { vObject = vAll[vHashCode]; - vObject.setPreloader(QxImagePreloaderManager.create(this.buildURI(vObject.getSource(), true))); + vObject.setPreloader(QxImagePreloaderManager.create(this.buildUri(vObject.getSource(), true))); }; return true; |
|
From: Andreas E. <ec...@us...> - 2006-02-16 10:40:25
|
Update of /cvsroot/qooxdoo/qooxdoo/source/script/widgets In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19030/source/script/widgets Modified Files: Tag: renderer QxListViewContentCellImage.js QxIconHtml.js QxGallery.js QxFlash.js QxImage.js QxTreeElement.js QxIframe.js QxGalleryList.js Log Message: Renamed buildURI() to buildUri(), since qooxdoo always uses camel case naming convention Index: QxTreeElement.js =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/script/widgets/QxTreeElement.js,v retrieving revision 1.3.2.51 retrieving revision 1.3.2.52 diff -u -d -r1.3.2.51 -r1.3.2.52 --- QxTreeElement.js 15 Feb 2006 16:51:24 -0000 1.3.2.51 +++ QxTreeElement.js 16 Feb 2006 10:40:16 -0000 1.3.2.52 @@ -59,7 +59,7 @@ this.setSelectable(false); // Base URL used for indent images - this.BASE_URI = QxImageManager.buildURI("widgets/tree/"); + this.BASE_URI = QxImageManager.buildUri("widgets/tree/"); // Adding subwidgets this.add(this._indentObject, this._iconObject, this._labelObject); Index: QxGallery.js =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/script/widgets/QxGallery.js,v retrieving revision 1.21.2.19 retrieving revision 1.21.2.20 diff -u -d -r1.21.2.19 -r1.21.2.20 --- QxGallery.js 15 Feb 2006 18:05:46 -0000 1.21.2.19 +++ QxGallery.js 16 Feb 2006 10:40:16 -0000 1.21.2.20 @@ -35,7 +35,7 @@ { QxTerminator.call(this); - this._blank = QxImageManager.buildURI(QxConst.IMAGE_BLANK); + this._blank = QxImageManager.buildUri(QxConst.IMAGE_BLANK); this._list = vGalleryList; this._listSize = vGalleryList.length; this._processedImages = 0; Index: QxListViewContentCellImage.js =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/script/widgets/Attic/QxListViewContentCellImage.js,v retrieving revision 1.1.2.13 retrieving revision 1.1.2.14 diff -u -d -r1.1.2.13 -r1.1.2.14 --- QxListViewContentCellImage.js 13 Feb 2006 13:23:29 -0000 1.1.2.13 +++ QxListViewContentCellImage.js 16 Feb 2006 10:40:16 -0000 1.1.2.14 @@ -53,7 +53,7 @@ { if (this._initialLayoutDone) { - return this._updateContent(QxImageManager.buildURI(vSource == QxConst.CORE_EMPTY ? QxConst.IMAGE_BLANK : vSource)); + return this._updateContent(QxImageManager.buildUri(vSource == QxConst.CORE_EMPTY ? QxConst.IMAGE_BLANK : vSource)); } else { Index: QxFlash.js =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/script/widgets/Attic/QxFlash.js,v retrieving revision 1.1.2.11 retrieving revision 1.1.2.12 diff -u -d -r1.1.2.11 -r1.1.2.12 --- QxFlash.js 16 Jan 2006 16:11:56 -0000 1.1.2.11 +++ QxFlash.js 16 Feb 2006 10:40:16 -0000 1.1.2.12 @@ -176,7 +176,7 @@ proto._modifySource = function(propValue, propOldValue, propName) { - this._source = QxUtil.isValidString(propValue) ? QxImageManager.buildURI(propValue) : QxConst.CORE_EMPTY; + this._source = QxUtil.isValidString(propValue) ? QxImageManager.buildUri(propValue) : QxConst.CORE_EMPTY; return true; }; Index: QxIconHtml.js =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/script/widgets/Attic/QxIconHtml.js,v retrieving revision 1.1.2.8 retrieving revision 1.1.2.9 diff -u -d -r1.1.2.8 -r1.1.2.9 --- QxIconHtml.js 15 Feb 2006 16:50:22 -0000 1.1.2.8 +++ QxIconHtml.js 16 Feb 2006 10:40:16 -0000 1.1.2.9 @@ -106,7 +106,7 @@ var vHtml = []; vHtml.push(QxIconHtml.START_IMAGE); - vHtml.push(QxImageManager.buildURI(this._mshtml ? QxConst.IMAGE_BLANK : this.getIcon())); + vHtml.push(QxImageManager.buildUri(this._mshtml ? QxConst.IMAGE_BLANK : this.getIcon())); vHtml.push(QxIconHtml.START_STYLE); if (QxUtil.isValidNumber(this.getSpacing())) @@ -134,7 +134,7 @@ { vHtml.push(QxIconHtml.FILTER_START); vHtml.push(QxImage.IMGLOADER_START); - vHtml.push(QxImageManager.buildURI(this.getIcon())); + vHtml.push(QxImageManager.buildUri(this.getIcon())); vHtml.push(QxImage.IMGLOADER_STOP); vHtml.push(QxConst.CORE_SEMICOLON); }; Index: QxIframe.js =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/script/widgets/QxIframe.js,v retrieving revision 1.1.2.22 retrieving revision 1.1.2.23 diff -u -d -r1.1.2.22 -r1.1.2.23 --- QxIframe.js 14 Feb 2006 16:27:54 -0000 1.1.2.22 +++ QxIframe.js 16 Feb 2006 10:40:16 -0000 1.1.2.23 @@ -130,7 +130,7 @@ var currentSource = this.getSource(); if (QxUtil.isInvalidString(currentSource)) { - currentSource = QxImageManager.buildURI("core/blank.gif"); + currentSource = QxImageManager.buildUri("core/blank.gif"); }; this._isLoaded = false; Index: QxGalleryList.js =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/script/widgets/QxGalleryList.js,v retrieving revision 1.7.2.16 retrieving revision 1.7.2.17 diff -u -d -r1.7.2.16 -r1.7.2.17 --- QxGalleryList.js 13 Feb 2006 13:23:29 -0000 1.7.2.16 +++ QxGalleryList.js 16 Feb 2006 10:40:16 -0000 1.7.2.17 @@ -35,7 +35,7 @@ { QxTerminator.call(this); - this._blank = QxImageManager.buildURI(QxConst.IMAGE_BLANK); + this._blank = QxImageManager.buildUri(QxConst.IMAGE_BLANK); this._list = galleryList; this._listSize = galleryList.length; this._processedImages = 0; Index: QxImage.js =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/script/widgets/QxImage.js,v retrieving revision 1.8.2.91 retrieving revision 1.8.2.92 diff -u -d -r1.8.2.91 -r1.8.2.92 --- QxImage.js 15 Feb 2006 18:08:01 -0000 1.8.2.91 +++ QxImage.js 16 Feb 2006 10:40:16 -0000 1.8.2.92 @@ -194,7 +194,7 @@ { if (propValue) { - this.setPreloader(QxImagePreloaderManager.create(QxImageManager.buildURI(propValue))); + this.setPreloader(QxImagePreloaderManager.create(QxImageManager.buildUri(propValue))); } else if (propOldValue) { @@ -280,7 +280,7 @@ // this costs much performance, move setup to blank gif to error handling // is this SSL save? - // this._image.src = QxImageManager.buildURI(QxConst.IMAGE_BLANK); + // this._image.src = QxImageManager.buildUri(QxConst.IMAGE_BLANK); this._image.style.border = QxImage.BORDER_NONE; this._image.style.verticalAlign = QxImage.RESET_VALIGN; @@ -301,7 +301,7 @@ // initialisize preloader var vSource = this.getSource(); if (QxUtil.isValidString(vSource)) { - this.setPreloader(QxImagePreloaderManager.create(QxImageManager.buildURI(vSource))); + this.setPreloader(QxImagePreloaderManager.create(QxImageManager.buildUri(vSource))); }; }; @@ -350,7 +350,7 @@ if (pl.getIsPng() && this.getEnabled()) { - i.src = QxImageManager.buildURI(QxConst.IMAGE_BLANK); + i.src = QxImageManager.buildUri(QxConst.IMAGE_BLANK); i.style.filter = QxImage.IMGLOADER_START + (vSource || pl.getSource()) + QxImage.IMGLOADER_STOP; } else @@ -364,7 +364,7 @@ { var i = this._image; - i.src = QxImageManager.buildURI(QxConst.IMAGE_BLANK); + i.src = QxImageManager.buildUri(QxConst.IMAGE_BLANK); i.style.filter = QxConst.CORE_EMPTY; }; @@ -387,7 +387,7 @@ }; proto._resetContent = function() { - this._image.src = QxImageManager.buildURI(QxConst.IMAGE_BLANK); + this._image.src = QxImageManager.buildUri(QxConst.IMAGE_BLANK); }; proto._applyEnabled = function() @@ -431,7 +431,7 @@ } else if (QxUtil.isValidString(this.getSource())) { - var vPreloader = QxImagePreloaderManager.get(QxImageManager.buildURI(this.getSource())); + var vPreloader = QxImagePreloaderManager.get(QxImageManager.buildUri(this.getSource())); if (vPreloader && vPreloader.isLoaded()) { return vPreloader.getWidth(); @@ -449,7 +449,7 @@ } else if (QxUtil.isValidString(this.getSource())) { - var vPreloader = QxImagePreloaderManager.get(QxImageManager.buildURI(this.getSource())); + var vPreloader = QxImagePreloaderManager.get(QxImageManager.buildUri(this.getSource())); if (vPreloader && vPreloader.isLoaded()) { return vPreloader.getHeight(); |
|
From: Andreas E. <ec...@us...> - 2006-02-16 10:40:24
|
Update of /cvsroot/qooxdoo/qooxdoo/source/demo/test In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19030/source/demo/test Modified Files: Tag: renderer Leak_1.html Log Message: Renamed buildURI() to buildUri(), since qooxdoo always uses camel case naming convention Index: Leak_1.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/demo/test/Attic/Leak_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 --- Leak_1.html 14 Feb 2006 11:24:49 -0000 1.1.2.2 +++ Leak_1.html 16 Feb 2006 10:40:16 -0000 1.1.2.3 @@ -20,7 +20,7 @@ // Does not leak // ***** - // var i1 = new QxImagePreloader(QxImageManager.buildURI("icons/48/hardwareinfo.png")); + // var i1 = new QxImagePreloader(QxImageManager.buildUri("icons/48/hardwareinfo.png")); // Leaks: +2MB |
|
From: Sebastian W. <wp...@us...> - 2006-02-16 09:49:22
|
Update of /cvsroot/qooxdoo/qooxdoo In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26754 Modified Files: Tag: renderer CHANGELOG Log Message: Updated index file Index: CHANGELOG =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/Attic/CHANGELOG,v retrieving revision 1.1.2.70 retrieving revision 1.1.2.71 diff -u -d -r1.1.2.70 -r1.1.2.71 --- CHANGELOG 14 Feb 2006 15:00:07 -0000 1.1.2.70 +++ CHANGELOG 16 Feb 2006 09:49:11 -0000 1.1.2.71 @@ -1,3 +1,199 @@ +2006-02-16 09:32 wpbasti + + * source/demo/index.html, + tools/generate/distribution/make-release.sh, + tools/generate/distribution/make-sync.sh, + tools/generate/internal/patchdemos.sh, + tools/generate/internal/syncfiles.sh: Improved build and sync + scripts + +2006-02-15 19:33 ecker + + * tools/make-clean.sh: Fixed cache path + +2006-02-15 19:32 ecker + + * tools/make-realclean.sh: No verbose output + +2006-02-15 19:31 ecker + + * source/script/core/QxDomElementFromPoint.js: Removed debug code + +2006-02-15 19:08 ecker + + * source/script/: core/QxDebug.js, core/QxDomElementFromPoint.js, + core/QxEmu.js, core/QxExtend.js, core/QxNative.js, + core/QxObject.js, core/QxTarget.js, gui/QxBorder.js, + gui/QxBorderCache.js, gui/QxBorderObject.js, gui/QxColorCache.js, + gui/QxFlashPlayerVersion.js, gui/QxFontCache.js, gui/QxParent.js, + managers/QxEventManager.js, widgets/QxClientDocument.js, + widgets/QxImage.js, widgets/QxListViewHeaderCell.js, + widgets/QxTextField.js: Use identity/nonidentity operators on + typeof checks + +2006-02-15 19:05 ecker + + * source/script/widgets/QxGallery.js: Fixed typeof, since managers + are now objects, not functions + +2006-02-15 19:03 ecker + + * tools/utils/find-massreplace.sh: Bug fix + +2006-02-15 17:50 ecker + + * source/demo/demolayout.js.in: Minor fix + +2006-02-15 17:50 ecker + + * source/demo/test/IconHtml_1.html, source/demo/test/Image_1.html, + source/demo/test/Link_1.html, source/demo/test/Node_1.html, + source/script/widgets/QxHtml.js, + source/script/widgets/QxIconHtml.js, + source/script/widgets/QxLink.js, + source/script/widgets/QxListViewContentCellHtml.js, + source/script/widgets/QxListViewContentCellIconHtml.js, + source/script/widgets/QxListViewContentCellLink.js, + source/script/widgets/QxListViewContentCellText.js, + source/script/widgets/QxNode.js, + source/script/widgets/QxSimpleHtml.js, + source/script/widgets/QxSimpleIconHtml.js, + source/script/widgets/QxSimpleLink.js, + source/script/widgets/QxSimpleNode.js, + source/script/widgets/QxSimpleText.js, + source/script/widgets/QxText.js, + tools/generate/internal/config.sh, + source/script/core/QxTimeTracker.js, + source/script/widgets/QxTreeElement.js: Renamed classes + QxSimpleFOO back to QxFOO + +2006-02-15 17:48 ecker + + * source/demo/test/: Builder_1.html, Builder_2.html, + Builder_3.html, Builder_4.html, Gallery_2.html, Gallery_3.html: + Bug fixes (image urls) + +2006-02-15 17:47 ecker + + * source/demo/example/: GalleryList_1.html, Gallery_1.html: Bug + fixes. + +2006-02-15 13:51 wpbasti + + * source/demo/demolayout.js.in, source/demo/index.css, + source/demo/index.html, source/demo/example/Index.html, + source/demo/example/index.html, source/demo/showcase/Index.html, + source/demo/showcase/index.html, source/demo/test/Index.html, + source/demo/test/index.html, tools/generate/make-source.sh: + Restructered demos a bit. Added new index.html overview page + +2006-02-15 13:49 ecker + + * source/demo/example/Iframe_1.html: Changed QxIframe property + "src" to "source". + +2006-02-15 11:31 wpbasti + + * tools/utils/print-propertylist.sh: More improvements + +2006-02-15 11:26 wpbasti + + * tools/utils/: fix-all.sh, fix-rights.sh, fix-trimright.sh: Minor + improvements + +2006-02-15 11:20 wpbasti + + * tools/utils/: check-source.sh, checksource.sh, classlist.sh, + clean-temp.sh, dos2unix.sh, find-massreplace.sh, find-source.sh, + findsource.sh, fix-all.sh, fix-dos2unix.sh, fix-rights.sh, + fix-tab2space.sh, fix-trimright.sh, fixfiles.sh, fixrights.sh, + fullsize.sh, globalsreplace.sh, massreplace.sh, pcompress.sh, + print-authors.sh, print-classlist.sh, print-diff.sh, + print-fullsize.sh, print-propertylist.sh, printauthors.sh, + propertylist.sh, pwords.sh, pwordscount.sh, showdiff.sh, + tab2space.sh, tempclean.sh, trimright.sh: Cleaned up utils folder + +2006-02-15 11:14 wpbasti + + * tools/utils/fixrights.sh: Added new tool + +2006-02-15 11:13 wpbasti + + * tools/utils/checksource.sh: Minor fix + +2006-02-15 11:12 wpbasti + + * tools/utils/disposecheck.sh: Removed + +2006-02-15 11:11 wpbasti + + * source/: demo/example/data/items/1.xml, + demo/example/data/items/2.xml, demo/test/Builder_2.xml, + demo/test/Builder_3.xml, demo/test/data/items/1.xml, + demo/test/data/items/2.xml, themes/icons/crystalsvg/theme.js, + themes/icons/kids/theme.js, themes/icons/nuvola/theme.js: + Dos2Unix, Tab2Space + +2006-02-15 11:07 wpbasti + + * tools/utils/disposecheck.sh: Minor improvement + +2006-02-15 11:06 wpbasti + + * tools/utils/classlist.sh: Fixed for new config.sh layout + +2006-02-15 11:03 wpbasti + + * tools/utils/checksource.sh: Minor typo + +2006-02-15 11:03 wpbasti + + * source/script/: managers/QxAppearanceManager.js, + core/QxBuilder.js: Added header + +2006-02-15 11:01 wpbasti + + * tools/: make-realclean.sh, generate/distribution/make-sync.sh, + utils/checksource.sh, utils/classlist.sh, utils/disposecheck.sh, + utils/dos2unix.sh, utils/findsource.sh, utils/fixfiles.sh, + utils/fullsize.sh, utils/globalsreplace.sh, utils/massreplace.sh, + utils/printauthors.sh, utils/propertylist.sh, utils/pwords.sh, + utils/pwordscount.sh, utils/showdiff.sh, utils/tab2space.sh, + utils/tempclean.sh, utils/trimright.sh: Fixed path + +2006-02-15 09:59 wpbasti + + * source/demo/: example/Atom_3.html, example/Flash_1.html, + test/Button_1.html, test/ToolBar_3.html: Fixed flash paths + +2006-02-14 17:27 ecker + + * source/script/widgets/QxIframe.js: Minor changes. + +2006-02-14 16:11 wpbasti + + * tools/: make-all.sh, make.sh: Re-added make.sh, make-all.sh now + also creates the docs + +2006-02-14 16:03 wpbasti + + * tools/: make-realclean.sh, generate/internal/docs.sh: Minor fixes + +2006-02-14 16:00 wpbasti + + * CHANGELOG, tools/make-realclean.sh, + tools/generate/distribution/changelog_html.xsl, + tools/generate/distribution/changelog_rss.xsl, + tools/generate/distribution/compile.xsl, + tools/generate/distribution/cvs2cl.pl, + tools/generate/distribution/make-changelog.sh, + tools/generate/distribution/make-sync-changelog.sh, + tools/generate/distribution/internal/changelog_html.xsl, + tools/generate/distribution/internal/changelog_rss.xsl, + tools/generate/distribution/internal/cvs2cl.pl, + tools/generate/internal/compile.py, + tools/generate/internal/compile.xsl: Minor improvements + 2006-02-14 15:30 wpbasti * tools/generate/distribution/: make-changelog.sh, make-release.sh: |
|
From: Sebastian W. <wp...@us...> - 2006-02-16 09:49:21
|
Update of /cvsroot/qooxdoo/qooxdoo/source/demo In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26754/source/demo Modified Files: Tag: renderer index.html Log Message: Updated index file Index: index.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/demo/Attic/index.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 --- index.html 16 Feb 2006 08:32:12 -0000 1.1.2.2 +++ index.html 16 Feb 2006 09:49:11 -0000 1.1.2.3 @@ -17,15 +17,15 @@ <ul> <li> <h2><a href="showcase/index.html">Showcase</a></h2> - <p>Complete application like interfaces using multiple qooxdoo widgets. (Currently empty.)</p> + <p>Complete application like interfaces using multiple qooxdoo widgets.</p> </li> <li> <h2><a href="example/index.html">Example</a></h2> - <p>(Hopefully) Easy understandable tests which try to present the feature of one extracted widget of qooxdoo.</p> + <p>Easy to understand tests which try to present the feature of one widget of qooxdoo in a seperate file.</p> </li> <li> <h2><a href="test/index.html">Test</a></h2> - <p>Like unit tests these HTML files should test some more internal functionality of qooxdoo. Not really useful for the typical qooxdoo user, but needed to test some complex layout stuff, performance related problems and other things like this.</p> + <p>Like unit tests these demos should test some internal functionality of qooxdoo. Not really useful for the typical qooxdoo user, but needed to test some complex layout stuff, performance related problems and more.</p> </li> </ul> </div> |
|
From: Sebastian W. <wp...@us...> - 2006-02-16 08:32:21
|
Update of /cvsroot/qooxdoo/qooxdoo/source/demo In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30202/source/demo Modified Files: Tag: renderer index.html Log Message: Improved build and sync scripts Index: index.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/demo/Attic/index.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 --- index.html 15 Feb 2006 12:51:58 -0000 1.1.2.1 +++ index.html 16 Feb 2006 08:32:12 -0000 1.1.2.2 @@ -3,7 +3,7 @@ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-15" /> - <title>qooxdoo demo dev</title> + <title>qooxdoo demo</title> <link type="text/css" rel="stylesheet" href="demolayout.css"/> <link type="text/css" rel="stylesheet" href="index.css"/> </head> @@ -29,5 +29,16 @@ </li> </ul> </div> + + <script type="text/javascript"> +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; + + document.write("<script type=\"text/javascript\" src=\""); + document.write(url_of_counter_file + "?chCounter_mode=js&jscode_version=3.1.1&status=" + cstatus + "&visible=" + visible + "&page_title=" + encodeURIComponent( page_title )); + document.write("&page_url=" + encodeURIComponent( page_url ) + "&referrer=" + encodeURIComponent( referrer ) + "&res_width=" + screen.width + "&res_height=" + screen.height + "\"><" + "/script>"); +} + </script> </body> </html> \ No newline at end of file |
|
From: Sebastian W. <wp...@us...> - 2006-02-16 08:32:21
|
Update of /cvsroot/qooxdoo/qooxdoo/tools/generate/internal In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30202/tools/generate/internal Modified Files: Tag: renderer patchdemos.sh syncfiles.sh Log Message: Improved build and sync scripts Index: syncfiles.sh =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/tools/generate/internal/Attic/syncfiles.sh,v retrieving revision 1.1.2.1 retrieving revision 1.1.2.2 diff -u -d -r1.1.2.1 -r1.1.2.2 --- syncfiles.sh 14 Feb 2006 11:22:18 -0000 1.1.2.1 +++ syncfiles.sh 16 Feb 2006 08:32:12 -0000 1.1.2.2 @@ -4,8 +4,8 @@ echo ">>> Syncing files..." mkdir -p build/images -rsync -av --exclude=CVS source/images build/ +rsync -rlv --exclude=CVS --exclude=.cvsignore source/images build/ mkdir -p build/themes -rsync -av --exclude=CVS --exclude=*.js source/themes build/ +rsync -rlv --exclude=CVS --exclude=.cvsignore --exclude=*.js source/themes build/ echo ">>> Done" Index: patchdemos.sh =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/tools/generate/internal/Attic/patchdemos.sh,v retrieving revision 1.1.2.1 retrieving revision 1.1.2.2 diff -u -d -r1.1.2.1 -r1.1.2.2 --- patchdemos.sh 14 Feb 2006 11:22:18 -0000 1.1.2.1 +++ patchdemos.sh 16 Feb 2006 08:32:12 -0000 1.1.2.2 @@ -4,7 +4,7 @@ echo ">>> Patching files..." mkdir -p build/demo -rsync -av --exclude=CVS source/demo --exclude=demoinclude.js* build +rsync -rlv --exclude=CVS --exclude=.cvsignore source/demo --exclude=demoinclude.js* build prevfile="" for file in `find source/demo/ -name "*.html"`; |
|
From: Sebastian W. <wp...@us...> - 2006-02-16 08:32:20
|
Update of /cvsroot/qooxdoo/qooxdoo/tools/generate/distribution In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30202/tools/generate/distribution Modified Files: Tag: renderer make-release.sh make-sync.sh Log Message: Improved build and sync scripts Index: make-sync.sh =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/tools/generate/distribution/Attic/make-sync.sh,v retrieving revision 1.1.2.3 retrieving revision 1.1.2.4 diff -u -d -r1.1.2.3 -r1.1.2.4 --- make-sync.sh 15 Feb 2006 10:01:50 -0000 1.1.2.3 +++ make-sync.sh 16 Feb 2006 08:32:12 -0000 1.1.2.4 @@ -9,4 +9,6 @@ tools/generate/make-source.sh tools/generate/make-docs.sh -rsync -rlvzc --delete --exclude=CVS build/* ${SCHLUNDUSER}@qooxdoo.oss.schlund.de:/kunden/homepages/21/d74480075/htdocs/qooxdoo/demo/dev +rsync -rlvzc --delete --delete-excluded build/demo build/docs build/images ${SCHLUNDUSER}@qooxdoo.oss.schlund.de:/kunden/homepages/21/d74480075/htdocs/qooxdoo/public +rsync -rlvzc --delete --delete-excluded --exclude=*.js build/themes ${SCHLUNDUSER}@qooxdoo.oss.schlund.de:/kunden/homepages/21/d74480075/htdocs/qooxdoo/public +rsync -rlvzc --delete --delete-excluded build/script/qooxdoo.js* ${SCHLUNDUSER}@qooxdoo.oss.schlund.de:/kunden/homepages/21/d74480075/htdocs/qooxdoo/public/script Index: make-release.sh =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/tools/generate/distribution/Attic/make-release.sh,v retrieving revision 1.1.2.4 retrieving revision 1.1.2.5 diff -u -d -r1.1.2.4 -r1.1.2.5 --- make-release.sh 14 Feb 2006 14:30:19 -0000 1.1.2.4 +++ make-release.sh 16 Feb 2006 08:32:12 -0000 1.1.2.5 @@ -11,8 +11,10 @@ version=`grep version source/script/core/QxMain.js | cut -d'"' -f2` basename="qooxdoo-${version}" -rsync -av --delete build/* release/$basename -rsync -av --delete --exclude=CVS [A-Z]* release/$basename +rsync -rlv --delete --delete-excluded build/demo build/docs build/images release/$basename +rsync -rlv --delete --delete-excluded --exclude=*.js build/themes release/$basename +rsync -rlv --delete --delete-excluded build/script/qooxdoo.js* release/$basename/script +rsync -rlv --delete --exclude=CVS --exclude=.cvsignore [A-Z]* release/$basename cd release |
|
From: Andreas E. <ec...@us...> - 2006-02-15 18:33:27
|
Update of /cvsroot/qooxdoo/qooxdoo/tools In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17379/tools Modified Files: Tag: renderer make-clean.sh Log Message: Fixed cache path Index: make-clean.sh =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/tools/Attic/make-clean.sh,v retrieving revision 1.1.2.1 retrieving revision 1.1.2.2 diff -u -d -r1.1.2.1 -r1.1.2.2 --- make-clean.sh 14 Feb 2006 11:22:18 -0000 1.1.2.1 +++ make-clean.sh 15 Feb 2006 18:33:16 -0000 1.1.2.2 @@ -4,6 +4,7 @@ echo ">>> Cleaning up..." -rm -rf build/test build/script build/style .cache +rm -rf build/test build/script build/style +rm -rf tools/generate/internal/cache echo ">>> Done" |
|
From: Andreas E. <ec...@us...> - 2006-02-15 18:32:33
|
Update of /cvsroot/qooxdoo/qooxdoo/tools In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16967/tools Modified Files: Tag: renderer make-realclean.sh Log Message: No verbose output Index: make-realclean.sh =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/tools/Attic/make-realclean.sh,v retrieving revision 1.1.2.4 retrieving revision 1.1.2.5 diff -u -d -r1.1.2.4 -r1.1.2.5 --- make-realclean.sh 15 Feb 2006 10:01:50 -0000 1.1.2.4 +++ make-realclean.sh 15 Feb 2006 18:32:25 -0000 1.1.2.5 @@ -4,7 +4,7 @@ echo ">>> Real cleaning up..." -rm -rfv public build release -rm -rfv tools/generate/internal/cache +rm -rf public build release +rm -rf tools/generate/internal/cache echo ">>> Done" |
|
From: Andreas E. <ec...@us...> - 2006-02-15 18:31:48
|
Update of /cvsroot/qooxdoo/qooxdoo/source/script/core In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16593/source/script/core Modified Files: Tag: renderer QxDomElementFromPoint.js Log Message: Removed debug code Index: QxDomElementFromPoint.js =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/script/core/Attic/QxDomElementFromPoint.js,v retrieving revision 1.1.2.2 retrieving revision 1.1.2.3 diff -u -d -r1.1.2.2 -r1.1.2.3 --- QxDomElementFromPoint.js 15 Feb 2006 18:08:01 -0000 1.1.2.2 +++ QxDomElementFromPoint.js 15 Feb 2006 18:31:38 -0000 1.1.2.3 @@ -54,7 +54,7 @@ if (ret) { - if (typeof recursive === QxConst.TYPEOF_BOOLEAN && recursive == false && 2 == 1) + if (typeof recursive === QxConst.TYPEOF_BOOLEAN && recursive == false) { return chc; } |
|
From: Andreas E. <ec...@us...> - 2006-02-15 18:08:14
|
Update of /cvsroot/qooxdoo/qooxdoo/source/script/core In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7679/source/script/core Modified Files: Tag: renderer QxDebug.js QxEmu.js QxObject.js QxNative.js QxDomElementFromPoint.js QxExtend.js QxTarget.js Log Message: Use identity/nonidentity operators on typeof checks Index: QxDomElementFromPoint.js =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/script/core/Attic/QxDomElementFromPoint.js,v retrieving revision 1.1.2.1 retrieving revision 1.1.2.2 diff -u -d -r1.1.2.1 -r1.1.2.2 --- QxDomElementFromPoint.js 3 Feb 2006 14:33:33 -0000 1.1.2.1 +++ QxDomElementFromPoint.js 15 Feb 2006 18:08:01 -0000 1.1.2.2 @@ -54,7 +54,7 @@ if (ret) { - if (typeof recursive == QxConst.TYPEOF_BOOLEAN && recursive == false && 2 == 1) + if (typeof recursive === QxConst.TYPEOF_BOOLEAN && recursive == false && 2 == 1) { return chc; } Index: QxObject.js =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/script/core/QxObject.js,v retrieving revision 1.2.2.42 retrieving revision 1.2.2.43 diff -u -d -r1.2.2.42 -r1.2.2.43 --- QxObject.js 9 Feb 2006 13:46:08 -0000 1.2.2.42 +++ QxObject.js 15 Feb 2006 18:08:01 -0000 1.2.2.43 @@ -158,7 +158,7 @@ */ proto.set = function(propertyValues) { - if (typeof propertyValues != QxConst.TYPEOF_OBJECT) { + if (typeof propertyValues !== QxConst.TYPEOF_OBJECT) { throw new Error("Please use a valid hash of property key-values pairs."); }; @@ -188,7 +188,7 @@ return this[QxConst.INTERNAL_GET + propertyNames.toFirstUp()](); case QxConst.TYPEOF_OBJECT: - if (typeof propertyNames.length == QxConst.TYPEOF_NUMBER) + if (typeof propertyNames.length === QxConst.TYPEOF_NUMBER) { if (outputHint == "hash") { @@ -257,7 +257,7 @@ */ proto.addData = function(p) { - if(typeof p != QxConst.TYPEOF_OBJECT) { + if(typeof p !== QxConst.TYPEOF_OBJECT) { throw new Error("Param should be an object!"); }; @@ -282,7 +282,7 @@ return this._data[valueKey]; }; - if (typeof p.defaultValue != QxConst.TYPEOF_UNDEFINED) + if (typeof p.defaultValue !== QxConst.TYPEOF_UNDEFINED) { this._data[valueKey] = p.defaultValue; @@ -303,7 +303,7 @@ { if (!(newValue == null && p.allowNull)) { - if (p.hasType && typeof newValue != p.type) { + if (p.hasType && typeof newValue !== p.type) { throw new Error("Attention! The value \"" + newValue + "\" is an invalid value for the property \"" + p.name + "\" which must be typeof \"" + p.type + "\" but is typeof \"" + typeof newValue + "\"!"); }; @@ -355,7 +355,7 @@ */ proto.removeData = function(p) { - if(typeof p != QxConst.TYPEOF_OBJECT) { + if(typeof p !== QxConst.TYPEOF_OBJECT) { throw new Error("Param should be an object!"); }; Index: QxEmu.js =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/script/core/Attic/QxEmu.js,v retrieving revision 1.1.2.4 retrieving revision 1.1.2.5 diff -u -d -r1.1.2.4 -r1.1.2.5 --- QxEmu.js 16 Jan 2006 16:11:55 -0000 1.1.2.4 +++ QxEmu.js 15 Feb 2006 18:08:01 -0000 1.1.2.5 @@ -249,7 +249,7 @@ vEvent.initEvent(vName.slice(2), false, false); this.dispatchEvent(vEvent); // not sure that this should be here?? - if (typeof this[vName] == QxConst.TYPEOF_FUNCTION) this[vName](); + if (typeof this[vName] === QxConst.TYPEOF_FUNCTION) this[vName](); else if (this.getAttribute(vName)) eval(this.getAttribute(vName)); }; Index: QxExtend.js =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/script/core/QxExtend.js,v retrieving revision 1.7.2.113 retrieving revision 1.7.2.114 diff -u -d -r1.7.2.113 -r1.7.2.114 --- QxExtend.js 12 Feb 2006 15:44:56 -0000 1.7.2.113 +++ QxExtend.js 15 Feb 2006 18:08:01 -0000 1.7.2.114 @@ -40,11 +40,11 @@ Function.prototype.extend = function(vSuper, vClassName) { - if (typeof vSuper != QxConst.TYPEOF_FUNCTION) { + if (typeof vSuper !== QxConst.TYPEOF_FUNCTION) { throw new Error("Extend: Function/Constructor to extend from is not a function: " + vSuper); }; - if (typeof vClassName != QxConst.TYPEOF_STRING) { + if (typeof vClassName !== QxConst.TYPEOF_STRING) { throw new Error("Extend: Missing or malformed className: " + vClassName); }; @@ -85,7 +85,7 @@ var vSetterName = QxConst.INTERNAL_SET + vUpName; var vComputerName = QxConst.INTERNAL_COMPUTE + vUpName; - proto[vStorageField] = typeof vConfig.defaultValue != QxConst.TYPEOF_UNDEFINED ? vConfig.defaultValue : null; + proto[vStorageField] = typeof vConfig.defaultValue !== QxConst.TYPEOF_UNDEFINED ? vConfig.defaultValue : null; if (vConfig.noCompute) { @@ -134,7 +134,7 @@ var vComputerName = QxConst.INTERNAL_COMPUTE + vUpName; var vChangeName = QxConst.INTERNAL_PRIVATECHANGE + vUpName; - if (typeof p.defaultValue != QxConst.TYPEOF_UNDEFINED) { + if (typeof p.defaultValue !== QxConst.TYPEOF_UNDEFINED) { proto[vStorageField] = p.defaultValue; }; @@ -184,7 +184,7 @@ /* -------------------------------------------------------------------------------- PRE-CHECKS -------------------------------------------------------------------------------- */ - if(typeof p != QxConst.TYPEOF_OBJECT) { + if(typeof p !== QxConst.TYPEOF_OBJECT) { throw new Error("Param should be an object!"); }; @@ -279,11 +279,11 @@ Function.prototype.removeProperty = function(p) { - if (typeof this.prototype._properties != QxConst.TYPEOF_STRING) { + if (typeof this.prototype._properties !== QxConst.TYPEOF_STRING) { throw new Error("Has no properties!"); }; - if(typeof p != QxConst.TYPEOF_OBJECT) { + if(typeof p !== QxConst.TYPEOF_OBJECT) { throw new Error("Param should be an object!"); }; @@ -317,7 +317,7 @@ Function.prototype._createProperty = function(p) { - if(typeof p != QxConst.TYPEOF_OBJECT) { + if(typeof p !== QxConst.TYPEOF_OBJECT) { throw new Error("AddProperty: Param should be an object!"); }; @@ -348,30 +348,30 @@ - if (typeof p.type == QxConst.TYPEOF_STRING) { + if (typeof p.type === QxConst.TYPEOF_STRING) { p.hasType = true; } - else if (typeof p.type != QxConst.TYPEOF_UNDEFINED) { + else if (typeof p.type !== QxConst.TYPEOF_UNDEFINED) { throw new Error("AddProperty: Invalid type definition for property " + p.name + ": " + p.type); } else { p.hasType = false; }; - if (typeof p.instance == QxConst.TYPEOF_STRING) { + if (typeof p.instance === QxConst.TYPEOF_STRING) { p.hasInstance = true; } - else if (typeof p.instance != QxConst.TYPEOF_UNDEFINED) { + else if (typeof p.instance !== QxConst.TYPEOF_UNDEFINED) { throw new Error("AddProperty: Invalid instance definition for property " + p.name + ": " + p.instance); } else { p.hasInstance = false; }; - if (typeof p.classname == QxConst.TYPEOF_STRING) { + if (typeof p.classname === QxConst.TYPEOF_STRING) { p.hasClassName = true; } - else if (typeof p.classname != QxConst.TYPEOF_UNDEFINED) { + else if (typeof p.classname !== QxConst.TYPEOF_UNDEFINED) { throw new Error("AddProperty: Invalid classname definition for property " + p.name + ": " + p.classname); } else { @@ -446,7 +446,7 @@ }; // building toggleFoo(): Switching between two boolean values - if (p.type == QxConst.TYPEOF_BOOLEAN) + if (p.type === QxConst.TYPEOF_BOOLEAN) { pp[QxConst.INTERNAL_TOGGLE + p.method] = function(newValue) { return this[QxConst.INTERNAL_SET + p.method](!this[valueKey]); @@ -484,7 +484,7 @@ if (!(p.allowNull && newValue == null)) { - if (p.hasType && typeof newValue != p.type) { + if (p.hasType && typeof newValue !== p.type) { return this.error("Attention! The value \"" + newValue + "\" is an invalid value for the property \"" + p.name + "\" which must be typeof \"" + p.type + "\" but is typeof \"" + typeof newValue + "\"!", QxConst.INTERNAL_SET + p.method); }; @@ -587,7 +587,7 @@ if (!(p.allowNull && newValue == null)) { - if (p.hasType && typeof newValue != p.type) { + if (p.hasType && typeof newValue !== p.type) { return this.error("Attention! The value \"" + newValue + "\" is an invalid value for the property \"" + p.name + "\" which must be typeof \"" + p.type + "\" but is typeof \"" + typeof newValue + "\"!", QxConst.INTERNAL_SET + p.method); }; }; @@ -651,12 +651,12 @@ }; // building user configured get alias for property - if (typeof p.getAlias == QxConst.TYPEOF_STRING) { + if (typeof p.getAlias === QxConst.TYPEOF_STRING) { pp[p.getAlias] = pp[QxConst.INTERNAL_GET + p.method]; }; // building user configured set alias for property - if (typeof p.setAlias == QxConst.TYPEOF_STRING) { + if (typeof p.setAlias === QxConst.TYPEOF_STRING) { pp[p.setAlias] = pp[QxConst.INTERNAL_SET + p.method]; }; }; Index: QxTarget.js =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/script/core/QxTarget.js,v retrieving revision 1.2.2.39 retrieving revision 1.2.2.40 diff -u -d -r1.2.2.39 -r1.2.2.40 --- QxTarget.js 12 Feb 2006 15:44:56 -0000 1.2.2.39 +++ QxTarget.js 15 Feb 2006 18:08:01 -0000 1.2.2.40 @@ -65,18 +65,18 @@ return; }; - if(typeof vFunction != QxConst.TYPEOF_FUNCTION) { + if(typeof vFunction !== QxConst.TYPEOF_FUNCTION) { throw new Error("QxTarget: addEventListener(" + vType + "): '" + vFunction + "' is not a function!"); }; // If this is the first event of given type, we need to create a subobject // that contains all the actions that will be assigned to this type - if (typeof this._listeners == QxConst.TYPEOF_UNDEFINED) + if (typeof this._listeners === QxConst.TYPEOF_UNDEFINED) { this._listeners = {}; this._listeners[vType] = {}; } - else if(typeof this._listeners[vType] == QxConst.TYPEOF_UNDEFINED) + else if(typeof this._listeners[vType] === QxConst.TYPEOF_UNDEFINED) { this._listeners[vType] = {}; }; @@ -102,11 +102,11 @@ }; var vListeners = this._listeners; - if (!vListeners || typeof vListeners[vType] == QxConst.TYPEOF_UNDEFINED) { + if (!vListeners || typeof vListeners[vType] === QxConst.TYPEOF_UNDEFINED) { return; }; - if(typeof vFunction != QxConst.TYPEOF_FUNCTION) { + if(typeof vFunction !== QxConst.TYPEOF_FUNCTION) { throw new Error("QxTarget: removeEventListener(" + vType + "): '" + vFunction + "' is not a function!"); }; @@ -134,7 +134,7 @@ Check if there are one or more listeners for an event type */ proto.hasEventListeners = function(vType) { - return this._listeners && typeof this._listeners[vType] != QxConst.TYPEOF_UNDEFINED && !QxUtil.isObjectEmpty(this._listeners[vType]); + return this._listeners && typeof this._listeners[vType] !== QxConst.TYPEOF_UNDEFINED && !QxUtil.isObjectEmpty(this._listeners[vType]); }; /*! @@ -226,7 +226,7 @@ // Call object function try { - if(typeof vFunction == QxConst.TYPEOF_FUNCTION) { + if(typeof vFunction === QxConst.TYPEOF_FUNCTION) { vFunction.call(QxUtil.isValid(vObject) ? vObject : this, vEvent); }; } Index: QxDebug.js =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/script/core/QxDebug.js,v retrieving revision 1.1.2.25 retrieving revision 1.1.2.26 diff -u -d -r1.1.2.25 -r1.1.2.26 --- QxDebug.js 8 Feb 2006 11:28:40 -0000 1.1.2.25 +++ QxDebug.js 15 Feb 2006 18:08:01 -0000 1.1.2.26 @@ -147,7 +147,7 @@ // Check if document is ready - if (!QxDebug._head.parentNode || typeof QxDebug._head.parentNode.tagName == QxDebug.undefined) + if (!QxDebug._head.parentNode || typeof QxDebug._head.parentNode.tagName === QxDebug.notdefined) { var d = document.getElementById(QxDebug.console); if (d) @@ -167,4 +167,4 @@ QxDebug.groupClass = "group"; QxDebug.messageClass = "message message-"; QxDebug.tag = QxConst.CORE_DIV; -QxDebug.undefined = QxConst.TYPEOF_UNDEFINED; +QxDebug.notdefined = QxConst.TYPEOF_UNDEFINED; Index: QxNative.js =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/script/core/Attic/QxNative.js,v retrieving revision 1.1.2.12 retrieving revision 1.1.2.13 diff -u -d -r1.1.2.12 -r1.1.2.13 --- QxNative.js 13 Feb 2006 13:23:29 -0000 1.1.2.12 +++ QxNative.js 15 Feb 2006 18:08:01 -0000 1.1.2.13 @@ -41,11 +41,11 @@ Number.prototype.limit = function(vmin, vmax) { - if (vmax != null && typeof vmax == QxConst.TYPEOF_NUMBER && this > vmax) + if (vmax != null && typeof vmax === QxConst.TYPEOF_NUMBER && this > vmax) { return vmax; } - else if (vmin != null && typeof vmin == QxConst.TYPEOF_NUMBER && this < vmin) + else if (vmin != null && typeof vmin === QxConst.TYPEOF_NUMBER && this < vmin) { return vmin; } |
|
From: Andreas E. <ec...@us...> - 2006-02-15 18:08:14
|
Update of /cvsroot/qooxdoo/qooxdoo/source/script/managers In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7679/source/script/managers Modified Files: Tag: renderer QxEventManager.js Log Message: Use identity/nonidentity operators on typeof checks Index: QxEventManager.js =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/script/managers/QxEventManager.js,v retrieving revision 1.14.2.73 retrieving revision 1.14.2.74 diff -u -d -r1.14.2.73 -r1.14.2.74 --- QxEventManager.js 12 Feb 2006 08:50:16 -0000 1.14.2.73 +++ QxEventManager.js 15 Feb 2006 18:08:01 -0000 1.14.2.74 @@ -471,7 +471,7 @@ { case QxKeyEvent.keys.esc: case QxKeyEvent.keys.tab: - if (QxMenuManager) { + if (typeof QxMenuManager !== QxConst.TYPEOF_UNDEFINED) { QxMenuManager.update(); }; @@ -533,7 +533,7 @@ vTarget.dispatchEvent(vKeyEventObject); // Send event to QxDragAndDropManager - if (QxDragAndDropManager) { + if (typeof QxDragAndDropManager !== QxConst.TYPEOF_UNDEFINED) { QxDragAndDropManager.handleKeyEvent(vKeyEventObject); }; @@ -806,25 +806,25 @@ switch(vType) { case QxConst.EVENT_TYPE_MOUSEDOWN: - if (QxPopupManager) { + if (typeof QxPopupManager !== QxConst.TYPEOF_UNDEFINED) { QxPopupManager.update(vTarget); }; - if (QxMenuManager) { + if (typeof QxMenuManager !== QxConst.TYPEOF_UNDEFINED) { QxMenuManager.update(vTarget); }; break; case QxConst.EVENT_TYPE_MOUSEOVER: - if (QxToolTipManager) { + if (typeof QxToolTipManager !== QxConst.TYPEOF_UNDEFINED) { QxToolTipManager.handleMouseOver(vEventObject); }; break; case QxConst.EVENT_TYPE_MOUSEOUT: - if (QxToolTipManager) { + if (typeof QxToolTipManager !== QxConst.TYPEOF_UNDEFINED) { QxToolTipManager.handleMouseOut(vEventObject); }; @@ -841,7 +841,7 @@ // Send Event Object to Drag&Drop Manager - if (QxDragAndDropManager && vTarget) { + if (typeof QxDragAndDropManager !== QxConst.TYPEOF_UNDEFINED && vTarget) { QxDragAndDropManager.handleMouseEvent(vEventObject); }; @@ -996,17 +996,17 @@ this.setCaptureWidget(null); // Hide Popups, Tooltips, ... - if (QxPopupManager) { + if (typeof QxPopupManager !== QxConst.TYPEOF_UNDEFINED) { QxPopupManager.update(); }; // Hide Menus - if (QxMenuManager) { + if (typeof QxMenuManager !== QxConst.TYPEOF_UNDEFINED) { QxMenuManager.update(); }; // Cancel Drag Operations - if (QxDragAndDropManager) { + if (typeof QxDragAndDropManager !== QxConst.TYPEOF_UNDEFINED) { QxDragAndDropManager.globalCancelDrag(); }; |
|
From: Andreas E. <ec...@us...> - 2006-02-15 18:08:13
|
Update of /cvsroot/qooxdoo/qooxdoo/source/script/gui In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7679/source/script/gui Modified Files: Tag: renderer QxParent.js QxColorCache.js QxBorder.js QxFlashPlayerVersion.js QxBorderObject.js QxFontCache.js QxBorderCache.js Log Message: Use identity/nonidentity operators on typeof checks Index: QxColorCache.js =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/script/gui/Attic/QxColorCache.js,v retrieving revision 1.1.2.5 retrieving revision 1.1.2.6 diff -u -d -r1.1.2.5 -r1.1.2.6 --- QxColorCache.js 24 Jan 2006 16:48:54 -0000 1.1.2.5 +++ QxColorCache.js 15 Feb 2006 18:08:01 -0000 1.1.2.6 @@ -59,7 +59,7 @@ }; // Try to detect array of RGB values - if (typeof propValue.join == QxConst.TYPEOF_FUNCTION && propValue.length == 3) + if (typeof propValue.join === QxConst.TYPEOF_FUNCTION && propValue.length == 3) { propKey = QxColor.RGBCSS_START + propValue.join(QxConst.CORE_COMMA) + QxColor.RGBCSS_STOP; propKeyAsStyle = true; Index: QxBorder.js =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/script/gui/Attic/QxBorder.js,v retrieving revision 1.1.2.9 retrieving revision 1.1.2.10 diff -u -d -r1.1.2.9 -r1.1.2.10 --- QxBorder.js 3 Feb 2006 09:42:13 -0000 1.1.2.9 +++ QxBorder.js 15 Feb 2006 18:08:01 -0000 1.1.2.10 @@ -431,7 +431,7 @@ proto._generateDefString = function(vWidth, vStyle, vColor) { - if (typeof vWidth != QxConst.TYPEOF_NUMBER || vWidth < 0) { + if (typeof vWidth !== QxConst.TYPEOF_NUMBER || vWidth < 0) { return QxConst.CORE_EMPTY; }; @@ -725,7 +725,7 @@ var a = QxBorder.data[vWidth][vStyle][vEdge]; } catch(ex) {}; - if (typeof a == QxConst.TYPEOF_OBJECT) + if (typeof a === QxConst.TYPEOF_OBJECT) { for (var i=0, s=[], l=a.length; i<l; i++) { s.push((new QxColorObject(a[i]).getStyle())); @@ -865,7 +865,7 @@ { var c = QxBorder.data[vTopWidth][vTopStyle][QxConst.PROPERTY_TOP]; - if (typeof c == QxConst.TYPEOF_OBJECT) + if (typeof c === QxConst.TYPEOF_OBJECT) { vTopStyle = QxConst.BORDER_STYLE_SOLID; vTopWidth = 1; @@ -927,7 +927,7 @@ { var c = QxBorder.data[vRightWidth][vRightStyle][QxConst.PROPERTY_RIGHT]; - if (typeof c == QxConst.TYPEOF_OBJECT) + if (typeof c === QxConst.TYPEOF_OBJECT) { vRightStyle = QxConst.BORDER_STYLE_SOLID; vRightWidth = 1; @@ -989,7 +989,7 @@ { var c = QxBorder.data[vBottomWidth][vBottomStyle][QxConst.PROPERTY_BOTTOM]; - if (typeof c == QxConst.TYPEOF_OBJECT) + if (typeof c === QxConst.TYPEOF_OBJECT) { vBottomStyle = QxConst.BORDER_STYLE_SOLID; vBottomWidth = 1; @@ -1050,7 +1050,7 @@ { var c = QxBorder.data[vLeftWidth][vLeftStyle][QxConst.PROPERTY_LEFT]; - if (typeof c == QxConst.TYPEOF_OBJECT) + if (typeof c === QxConst.TYPEOF_OBJECT) { vLeftStyle = QxConst.BORDER_STYLE_SOLID; vLeftWidth = 1; @@ -1130,7 +1130,7 @@ return; }; - if (typeof this._defsX == QxConst.TYPEOF_OBJECT) { + if (typeof this._defsX === QxConst.TYPEOF_OBJECT) { for (var i in this._defsX) { delete this._defsX[i]; }; @@ -1138,7 +1138,7 @@ delete this._defsX; - if (typeof this._defsY == QxConst.TYPEOF_OBJECT) { + if (typeof this._defsY === QxConst.TYPEOF_OBJECT) { for (var i in this._defsY) { delete this._defsY[i]; }; @@ -1148,7 +1148,7 @@ if (QxBorder.enhancedCrossBrowserMode) { - if (typeof this._enhancedDefsX == QxConst.TYPEOF_OBJECT) { + if (typeof this._enhancedDefsX === QxConst.TYPEOF_OBJECT) { for (var i in this._enhancedDefsX) { delete this._enhancedDefsX[i]; }; @@ -1156,7 +1156,7 @@ delete this._enhancedDefsX; - if (typeof this._enhancedDefsY == QxConst.TYPEOF_OBJECT) { + if (typeof this._enhancedDefsY === QxConst.TYPEOF_OBJECT) { for (var i in this._enhancedDefsY) { delete this._enhancedDefsY[i]; }; Index: QxFlashPlayerVersion.js =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/script/gui/Attic/QxFlashPlayerVersion.js,v retrieving revision 1.1.2.3 retrieving revision 1.1.2.4 diff -u -d -r1.1.2.3 -r1.1.2.4 --- QxFlashPlayerVersion.js 8 Feb 2006 13:54:25 -0000 1.1.2.3 +++ QxFlashPlayerVersion.js 15 Feb 2006 18:08:01 -0000 1.1.2.4 @@ -50,7 +50,7 @@ { QxObject.call(this); - if (typeof arrVersion == QxConst.TYPEOF_STRING) { + if (typeof arrVersion === QxConst.TYPEOF_STRING) { arrVersion = arrVersion.split(QxConst.CORE_DOT); }; Index: QxFontCache.js =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/script/gui/Attic/QxFontCache.js,v retrieving revision 1.1.2.6 retrieving revision 1.1.2.7 diff -u -d -r1.1.2.6 -r1.1.2.7 --- QxFontCache.js 24 Jan 2006 16:48:54 -0000 1.1.2.6 +++ QxFontCache.js 15 Feb 2006 18:08:01 -0000 1.1.2.7 @@ -55,7 +55,7 @@ }; // Try to detect array of RGB values - if (typeof propValue.join == QxConst.TYPEOF_FUNCTION) + if (typeof propValue.join === QxConst.TYPEOF_FUNCTION) { propKey = propValue.join(QxConst.CORE_SPACE).toLowerCase(); break; Index: QxBorderObject.js =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/script/gui/Attic/QxBorderObject.js,v retrieving revision 1.1.2.5 retrieving revision 1.1.2.6 diff -u -d -r1.1.2.5 -r1.1.2.6 --- QxBorderObject.js 16 Jan 2006 16:11:55 -0000 1.1.2.5 +++ QxBorderObject.js 15 Feb 2006 18:08:01 -0000 1.1.2.6 @@ -143,7 +143,7 @@ return; }; - if (typeof this._dependentObjects == QxConst.TYPEOF_OBJECT) + if (typeof this._dependentObjects === QxConst.TYPEOF_OBJECT) { var vAll = this._dependentObjects; for (vKey in vAll) { Index: QxParent.js =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/script/gui/Attic/QxParent.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 --- QxParent.js 9 Feb 2006 13:46:08 -0000 1.1.2.26 +++ QxParent.js 15 Feb 2006 18:08:01 -0000 1.1.2.27 @@ -163,7 +163,7 @@ var vFocusValid = QxUtil.isValidObject(propValue); var vBlurValid = QxUtil.isValidObject(propOldValue); - if (vFocusValid && typeof QxPopupManager == QxConst.TYPEOF_FUNCTION) { + if (vFocusValid && typeof QxPopupManager !== QxConst.TYPEOF_UNDEFINED) { QxPopupManager.update(propValue); }; Index: QxBorderCache.js =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/script/gui/Attic/QxBorderCache.js,v retrieving revision 1.1.2.6 retrieving revision 1.1.2.7 diff -u -d -r1.1.2.6 -r1.1.2.7 --- QxBorderCache.js 8 Feb 2006 13:54:25 -0000 1.1.2.6 +++ QxBorderCache.js 15 Feb 2006 18:08:01 -0000 1.1.2.7 @@ -41,7 +41,7 @@ propString += p; - if (typeof p == QxConst.TYPEOF_NUMBER) { + if (typeof p === QxConst.TYPEOF_NUMBER) { propString += QxConst.CORE_PIXEL; }; |
|
From: Andreas E. <ec...@us...> - 2006-02-15 18:08:13
|
Update of /cvsroot/qooxdoo/qooxdoo/source/script/widgets In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7679/source/script/widgets Modified Files: Tag: renderer QxTextField.js QxImage.js QxClientDocument.js QxListViewHeaderCell.js Log Message: Use identity/nonidentity operators on typeof checks Index: QxClientDocument.js =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/script/widgets/QxClientDocument.js,v retrieving revision 1.7.2.83 retrieving revision 1.7.2.84 diff -u -d -r1.7.2.83 -r1.7.2.84 --- QxClientDocument.js 12 Feb 2006 12:38:51 -0000 1.7.2.83 +++ QxClientDocument.js 15 Feb 2006 18:08:01 -0000 1.7.2.84 @@ -174,7 +174,7 @@ this._blocker.show(); - if (typeof QxWindow == QxConst.TYPEOF_FUNCTION && vActiveChild instanceof QxWindow) + if (typeof QxWindow === QxConst.TYPEOF_FUNCTION && vActiveChild instanceof QxWindow) { this._modalWidgets.push(vActiveChild); @@ -182,7 +182,7 @@ this._blocker.setZIndex(vOrigIndex); vActiveChild.setZIndex(vOrigIndex+1); } - else if (typeof QxNativeWindow == QxConst.TYPEOF_FUNCTION && vActiveChild instanceof QxNativeWindow) + else if (typeof QxNativeWindow === QxConst.TYPEOF_FUNCTION && vActiveChild instanceof QxNativeWindow) { this._modalNativeWindow = vActiveChild; this._blocker.setZIndex(1e7); @@ -307,7 +307,7 @@ proto._onresize = function(e) { // Hide popups, tooltips, ... - if (typeof QxPopupManager === QxConst.TYPEOF_FUNCTION) { + if (typeof QxPopupManager !== QxConst.TYPEOF_UNDEFINED) { QxPopupManager.update(); }; Index: QxTextField.js =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/script/widgets/QxTextField.js,v retrieving revision 1.5.2.42 retrieving revision 1.5.2.43 diff -u -d -r1.5.2.42 -r1.5.2.43 --- QxTextField.js 26 Jan 2006 08:54:44 -0000 1.5.2.42 +++ QxTextField.js 15 Feb 2006 18:08:01 -0000 1.5.2.43 @@ -36,7 +36,7 @@ // ************************************************************************ QxTerminator.call(this); - if (typeof vValue == QxConst.TYPEOF_STRING) { + if (typeof vValue === QxConst.TYPEOF_STRING) { this.setValue(vValue); }; Index: QxListViewHeaderCell.js =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/script/widgets/Attic/QxListViewHeaderCell.js,v retrieving revision 1.1.2.19 retrieving revision 1.1.2.20 diff -u -d -r1.1.2.19 -r1.1.2.20 --- QxListViewHeaderCell.js 9 Feb 2006 13:46:09 -0000 1.1.2.19 +++ QxListViewHeaderCell.js 15 Feb 2006 18:08:01 -0000 1.1.2.20 @@ -46,7 +46,7 @@ // ************************************************************************ // ARGUMENTS // ************************************************************************ - this.setWidth(typeof vConfig.width == QxConst.TYPEOF_UNDEFINED ? QxConst.CORE_AUTO : vConfig.width); + this.setWidth(typeof vConfig.width === QxConst.TYPEOF_UNDEFINED ? QxConst.CORE_AUTO : vConfig.width); if (QxUtil.isValid(vConfig.minWidth)) { this.setMinWidth(vConfig.minWidth); Index: QxImage.js =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/script/widgets/QxImage.js,v retrieving revision 1.8.2.90 retrieving revision 1.8.2.91 diff -u -d -r1.8.2.90 -r1.8.2.91 --- QxImage.js 13 Feb 2006 14:46:58 -0000 1.8.2.90 +++ QxImage.js 15 Feb 2006 18:08:01 -0000 1.8.2.91 @@ -174,7 +174,7 @@ proto._modifySource = function(propValue, propOldValue, propData) { - if (propValue && typeof QxImageManager._sources[propValue] == QxConst.TYPEOF_UNDEFINED) { + if (propValue && typeof QxImageManager._sources[propValue] === QxConst.TYPEOF_UNDEFINED) { QxImageManager._sources[propValue] = 0; }; |
|
From: Andreas E. <ec...@us...> - 2006-02-15 18:05:57
|
Update of /cvsroot/qooxdoo/qooxdoo/source/script/widgets In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6186/source/script/widgets Modified Files: Tag: renderer QxGallery.js Log Message: Fixed typeof, since managers are now objects, not functions Index: QxGallery.js =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/script/widgets/QxGallery.js,v retrieving revision 1.21.2.18 retrieving revision 1.21.2.19 diff -u -d -r1.21.2.18 -r1.21.2.19 --- QxGallery.js 13 Feb 2006 13:23:29 -0000 1.21.2.18 +++ QxGallery.js 15 Feb 2006 18:05:46 -0000 1.21.2.19 @@ -268,7 +268,7 @@ proto._onmousemove = function(e) { - if (typeof QxToolTipManager != "function") { + if (typeof QxToolTipManager !== QxConst.TYPEOF_OBJECT) { return; }; |
|
From: Andreas E. <ec...@us...> - 2006-02-15 18:03:52
|
Update of /cvsroot/qooxdoo/qooxdoo/tools/utils In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4565/tools/utils Modified Files: Tag: renderer find-massreplace.sh Log Message: Bug fix Index: find-massreplace.sh =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/tools/utils/Attic/find-massreplace.sh,v retrieving revision 1.1.2.1 retrieving revision 1.1.2.2 diff -u -d -r1.1.2.1 -r1.1.2.2 --- find-massreplace.sh 15 Feb 2006 10:20:57 -0000 1.1.2.1 +++ find-massreplace.sh 15 Feb 2006 18:03:43 -0000 1.1.2.2 @@ -6,7 +6,7 @@ echo "Current Hash: $h" -for file in `find source -name "*.js" -o -name "*.css" -o -name "*.html"` tools/config.sh tools/build_dist.pl; do +for file in `find source -name "*.js" -o -name "*.css" -o -name "*.html"` tools/generate/internal/config.sh; do cp -f $file ${file}.${h} echo ">>> Patching: $file" cat ${file}.${h} | sed s:"$1":"$2":g > $file |
|
From: Andreas E. <ec...@us...> - 2006-02-15 16:51:36
|
Update of /cvsroot/qooxdoo/qooxdoo/source/script/widgets In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10476/source/script/widgets Modified Files: Tag: renderer QxTreeElement.js Log Message: Renamed classes QxSimpleFOO back to QxFOO Index: QxTreeElement.js =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/script/widgets/QxTreeElement.js,v retrieving revision 1.3.2.50 retrieving revision 1.3.2.51 diff -u -d -r1.3.2.50 -r1.3.2.51 --- QxTreeElement.js 9 Feb 2006 13:46:09 -0000 1.3.2.50 +++ QxTreeElement.js 15 Feb 2006 16:51:24 -0000 1.3.2.51 @@ -36,7 +36,7 @@ }; // Precreate subwidgets - this._indentObject = new QxSimpleHtml; + this._indentObject = new QxHtml; this._iconObject = new QxImage; this._labelObject = new QxLabel; |
|
From: Andreas E. <ec...@us...> - 2006-02-15 16:51:07
|
Update of /cvsroot/qooxdoo/qooxdoo/source/script/core In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10217/source/script/core Modified Files: Tag: renderer QxTimeTracker.js Log Message: Renamed classes QxSimpleFOO back to QxFOO Index: QxTimeTracker.js =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/script/core/Attic/QxTimeTracker.js,v retrieving revision 1.1.2.8 retrieving revision 1.1.2.9 diff -u -d -r1.1.2.8 -r1.1.2.9 --- QxTimeTracker.js 13 Feb 2006 13:23:29 -0000 1.1.2.8 +++ QxTimeTracker.js 15 Feb 2006 16:50:59 -0000 1.1.2.9 @@ -82,7 +82,7 @@ btnStart3.addEventListener("execute", function() { this.start(15, parseInt(loopInput.getValue())) }, this); btnStart4.addEventListener("execute", function() { this.start(25, parseInt(loopInput.getValue())) }, this); - var htmlOutput = this._output = new QxSimpleHtml(); + var htmlOutput = this._output = new QxHtml(); htmlOutput.setHtml(""); htmlOutput.setLocation(20, 78); |
|
From: Andreas E. <ec...@us...> - 2006-02-15 16:50:57
|
Update of /cvsroot/qooxdoo/qooxdoo/source/demo In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10151/source/demo Modified Files: Tag: renderer demolayout.js.in Log Message: Minor fix Index: demolayout.js.in =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/demo/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 15 Feb 2006 12:51:58 -0000 1.1.2.2 +++ demolayout.js.in 15 Feb 2006 16:50:44 -0000 1.1.2.3 @@ -26,16 +26,16 @@ if( /\/showcase\//.test(window.location.href) ) { document.write('Selected: Showcase | '); - document.write('[<a href="../example/Index.html">Go to: Example</a>]  '); - document.write('[<a href="../test/Index.html">Go to: Test</a>]  '); + 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('Selected: Example | '); - document.write('[<a href="../showcase/Index.html">Go to: Showcase</a>]  '); - document.write('[<a href="../test/Index.html">Go to: Test</a>]  '); + 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('Selected: Test | '); - document.write('[<a href="../showcase/Index.html">Go to: Showcase</a>]  '); - document.write('[<a href="../example/Index.html">Go to: Example</a>]  '); + document.write('[<a href="../showcase/index.html">Go to: Showcase</a>]  '); + document.write('[<a href="../example/index.html">Go to: Example</a>]  '); }; if(window.location.href.indexOf("oss.schlund.de") == -1) |
Update of /cvsroot/qooxdoo/qooxdoo/source/script/widgets In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9967/source/script/widgets Modified Files: Tag: renderer QxListViewContentCellText.js QxListViewContentCellIconHtml.js QxListViewContentCellLink.js QxListViewContentCellHtml.js Added Files: Tag: renderer QxText.js QxLink.js QxNode.js QxIconHtml.js QxHtml.js Removed Files: Tag: renderer QxSimpleHtml.js QxSimpleNode.js QxSimpleLink.js QxSimpleIconHtml.js QxSimpleText.js Log Message: Renamed classes QxSimpleFOO back to QxFOO --- QxSimpleText.js DELETED --- --- QxSimpleHtml.js DELETED --- --- NEW FILE: QxLink.js --- /* ************************************************************************ qooxdoo - the new era of web interface development Version: $Id: QxLink.js,v 1.1.2.6 2006/02/15 16:50:22 ecker Exp $ Copyright: (C) 2004-2005 by Schlund + Partner AG, Germany All rights reserved License: LGPL 2.1: http://creativecommons.org/licenses/LGPL/2.1/ Internet: * http://qooxdoo.oss.schlund.de Authors: * Sebastian Werner (wpbasti) <sebastian dot werner at 1und1 dot de> * Andreas Ecker (aecker) <andreas dot ecker at 1und1 dot de> ************************************************************************ */ /* ************************************************************************ #package(simpleterminators) ************************************************************************ */ function QxLink(vHtml, vUri, vTarget) { QxHtml.call(this, vHtml); if (typeof vUri != QxConst.TYPEOF_UNDEFINED) { this.setUri(vUri); }; if (typeof vTarget != QxConst.TYPEOF_UNDEFINED) { this.setTarget(vTarget); }; }; QxLink.extend(QxHtml, "QxLink"); /* --------------------------------------------------------------------------- PROPERTIES --------------------------------------------------------------------------- */ /*! Any valid html URI */ QxLink.addProperty({ name : "uri", type : QxConst.TYPEOF_STRING, defaultValue : "#", impl : "html" }); /*! Any valid html target */ QxLink.addProperty({ name : "target", type : QxConst.TYPEOF_STRING, defaultValue : "_blank", impl : "html" }); /* --------------------------------------------------------------------------- UTILITIES --------------------------------------------------------------------------- */ QxLink.LINK_START = "<a target='"; QxLink.HREF_START = "' href='"; QxLink.HREF_STOP = "'>"; QxLink.LINK_STOP = "</a>"; proto._syncHtml = function() { var vHtml = []; vHtml.push(QxLink.LINK_START); vHtml.push(this.getTarget()); vHtml.push(QxLink.HREF_START); vHtml.push(this.getUri()); vHtml.push(QxLink.HREF_STOP); vHtml.push(this.getHtml()); vHtml.push(QxLink.LINK_STOP); this.getElement().innerHTML = vHtml.join(QxConst.CORE_EMPTY); }; --- NEW FILE: QxHtml.js --- /* ************************************************************************ qooxdoo - the new era of web interface development Version: $Id: QxHtml.js,v 1.1.2.9 2006/02/15 16:50:22 ecker Exp $ Copyright: (C) 2004-2005 by Schlund + Partner AG, Germany All rights reserved License: LGPL 2.1: http://creativecommons.org/licenses/LGPL/2.1/ Internet: * http://qooxdoo.oss.schlund.de Authors: * Sebastian Werner (wpbasti) <sebastian dot werner at 1und1 dot de> * Andreas Ecker (aecker) <andreas dot ecker at 1und1 dot de> ************************************************************************ */ /* ************************************************************************ #package(simpleterminators) ************************************************************************ */ function QxHtml(vHtml) { QxTerminator.call(this); if (QxUtil.isValidString(vHtml)) { this.setHtml(vHtml); }; }; QxHtml.extend(QxTerminator, "QxHtml"); /* --------------------------------------------------------------------------- PROPERTIES --------------------------------------------------------------------------- */ /*! Any text string which can contain HTML, too */ QxHtml.addProperty({ name : "html", type : QxConst.TYPEOF_STRING }); /*! The font property describes how to paint the font on the widget. */ QxHtml.addProperty({ name : "font", type : QxConst.TYPEOF_OBJECT, instance : "QxFont", convert : QxFontCache, allowMultipleArguments : true }); /*! Wrap the text? */ QxHtml.addProperty({ name : "wrap", type : QxConst.TYPEOF_BOOLEAN, defaultValue : true }); /* --------------------------------------------------------------------------- MODIFIER --------------------------------------------------------------------------- */ proto._modifyHtml = function() { if (this._isCreated) { this._syncHtml(); }; return true; }; proto._modifyFont = function(propValue, propOldValue, propData) { if (propValue) { propValue.applyWidget(this); } else if (propOldValue) { propOldValue.resetWidget(this); }; return true; }; proto._modifyWrap = function(propValue, propOldValue, propData) { this.setStyleProperty(QxConst.PROPERTY_WHITESPACE, propValue ? "normal" : "nowrap"); return true; }; /* --------------------------------------------------------------------------- ELEMENT HANDLING --------------------------------------------------------------------------- */ proto._applyElementData = function() { this._syncHtml(); }; proto._syncHtml = function() { this.getElement().innerHTML = this.getHtml(); }; --- NEW FILE: QxNode.js --- /* ************************************************************************ qooxdoo - the new era of web interface development Version: $Id: QxNode.js,v 1.1.2.7 2006/02/15 16:50:22 ecker Exp $ Copyright: (C) 2004-2005 by Schlund + Partner AG, Germany All rights reserved License: LGPL 2.1: http://creativecommons.org/licenses/LGPL/2.1/ Internet: * http://qooxdoo.oss.schlund.de Authors: * Sebastian Werner (wpbasti) <sebastian dot werner at 1und1 dot de> * Andreas Ecker (aecker) <andreas dot ecker at 1und1 dot de> ************************************************************************ */ /* ************************************************************************ #package(simpleterminators) ************************************************************************ */ function QxNode(vId) { QxTerminator.call(this); if (QxUtil.isValidString(vId)) { this.setSourceNodeId(vId); }; }; QxNode.extend(QxTerminator, "QxNode"); QxNode.addProperty({ name : "sourceNodeId", type : QxConst.TYPEOF_STRING }); proto._createElementImpl = function() { var vNode = document.getElementById(this.getSourceNodeId()); if (!vNode) { throw new Error("Could not find source node with ID: " + this.getSourceNodeId()); }; vNode.style.display = QxConst.CORE_EMPTY; return this.setElement(vNode); }; --- QxSimpleNode.js DELETED --- Index: QxListViewContentCellIconHtml.js =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/script/widgets/Attic/QxListViewContentCellIconHtml.js,v retrieving revision 1.1.2.6 retrieving revision 1.1.2.7 diff -u -d -r1.1.2.6 -r1.1.2.7 --- QxListViewContentCellIconHtml.js 9 Feb 2006 11:59:01 -0000 1.1.2.6 +++ QxListViewContentCellIconHtml.js 15 Feb 2006 16:50:22 -0000 1.1.2.7 @@ -31,12 +31,12 @@ function QxListViewContentCellIconHtml(vHtml, vIcon, vIconWidth, vIconHeight) { - QxSimpleIconHtml.call(this, vHtml, vIcon, vIconWidth, vIconHeight); + QxIconHtml.call(this, vHtml, vIcon, vIconWidth, vIconHeight); this.setSelectable(false); }; -QxListViewContentCellIconHtml.extend(QxSimpleIconHtml, "QxListViewContentCellIconHtml"); +QxListViewContentCellIconHtml.extend(QxIconHtml, "QxListViewContentCellIconHtml"); QxListViewContentCellIconHtml.changeProperty({ name : "appearance", type : QxConst.TYPEOF_STRING, defaultValue : "list-view-content-cell-icon-html" }); --- QxSimpleLink.js DELETED --- --- NEW FILE: QxText.js --- /* ************************************************************************ qooxdoo - the new era of web interface development Version: $Id: QxText.js,v 1.1.2.10 2006/02/15 16:50:22 ecker Exp $ Copyright: (C) 2004-2005 by Schlund + Partner AG, Germany All rights reserved License: LGPL 2.1: http://creativecommons.org/licenses/LGPL/2.1/ Internet: * http://qooxdoo.oss.schlund.de Authors: * Sebastian Werner (wpbasti) <sebastian dot werner at 1und1 dot de> * Andreas Ecker (aecker) <andreas dot ecker at 1und1 dot de> ************************************************************************ */ /* ************************************************************************ #package(simpleterminators) ************************************************************************ */ function QxText(vText) { QxTerminator.call(this); if (QxUtil.isValidString(vText)) { this.setText(vText); }; }; QxText.extend(QxTerminator, "QxText"); /* --------------------------------------------------------------------------- PROPERTIES --------------------------------------------------------------------------- */ /*! Any text string which can contain TEXT, too */ QxText.addProperty({ name : "text", type : QxConst.TYPEOF_STRING }); /*! The font property describes how to paint the font on the widget. */ QxText.addProperty({ name : "font", type : QxConst.TYPEOF_OBJECT, instance : "QxFont", convert : QxFontCache, allowMultipleArguments : true }); /*! Wrap the text? */ QxText.addProperty({ name : "wrap", type : QxConst.TYPEOF_BOOLEAN, defaultValue : true }); /* --------------------------------------------------------------------------- MODIFIER --------------------------------------------------------------------------- */ proto._modifyText = function() { if (this._isCreated) { this._syncText(); }; return true; }; proto._modifyFont = function(propValue, propOldValue, propData) { if (propValue) { propValue.applyWidget(this); } else if (propOldValue) { propOldValue.resetWidget(this); }; return true; }; proto._modifyWrap = function(propValue, propOldValue, propData) { this.setStyleProperty(QxConst.PROPERTY_WHITESPACE, propValue ? "normal" : "nowrap"); return true; }; /* --------------------------------------------------------------------------- ELEMENT HANDLING --------------------------------------------------------------------------- */ proto._applyElementData = function() { this.getElement().appendChild(document.createTextNode(this.getText())); }; proto._syncText = function() { this.getElement().firstChild.nodeValue = this.getText(); }; Index: QxListViewContentCellText.js =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/script/widgets/Attic/QxListViewContentCellText.js,v retrieving revision 1.1.2.12 retrieving revision 1.1.2.13 diff -u -d -r1.1.2.12 -r1.1.2.13 --- QxListViewContentCellText.js 9 Feb 2006 11:59:02 -0000 1.1.2.12 +++ QxListViewContentCellText.js 15 Feb 2006 16:50:22 -0000 1.1.2.13 @@ -31,12 +31,12 @@ function QxListViewContentCellText(vText) { - QxSimpleText.call(this, vText); + QxText.call(this, vText); this.setSelectable(false); }; -QxListViewContentCellText.extend(QxSimpleText, "QxListViewContentCellText"); +QxListViewContentCellText.extend(QxText, "QxListViewContentCellText"); QxListViewContentCellText.changeProperty({ name : "appearance", type : QxConst.TYPEOF_STRING, defaultValue : "list-view-content-cell-text" }); Index: QxListViewContentCellLink.js =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/script/widgets/Attic/QxListViewContentCellLink.js,v retrieving revision 1.1.2.8 retrieving revision 1.1.2.9 diff -u -d -r1.1.2.8 -r1.1.2.9 --- QxListViewContentCellLink.js 9 Feb 2006 11:59:02 -0000 1.1.2.8 +++ QxListViewContentCellLink.js 15 Feb 2006 16:50:22 -0000 1.1.2.9 @@ -31,13 +31,13 @@ function QxListViewContentCellLink(vHtml) { - QxSimpleLink.call(this, vHtml); + QxLink.call(this, vHtml); // selectable = false will break links in gecko based browsers this.setSelectable(true); }; -QxListViewContentCellLink.extend(QxSimpleLink, "QxListViewContentCellLink"); +QxListViewContentCellLink.extend(QxLink, "QxListViewContentCellLink"); QxListViewContentCellLink.changeProperty({ name : "appearance", type : QxConst.TYPEOF_STRING, defaultValue : "list-view-content-cell-link" }); --- NEW FILE: QxIconHtml.js --- /* ************************************************************************ qooxdoo - the new era of web interface development Version: $Id: QxIconHtml.js,v 1.1.2.8 2006/02/15 16:50:22 ecker Exp $ Copyright: (C) 2004-2005 by Schlund + Partner AG, Germany All rights reserved License: LGPL 2.1: http://creativecommons.org/licenses/LGPL/2.1/ Internet: * http://qooxdoo.oss.schlund.de Authors: * Sebastian Werner (wpbasti) <sebastian dot werner at 1und1 dot de> * Andreas Ecker (aecker) <andreas dot ecker at 1und1 dot de> ************************************************************************ */ /* ************************************************************************ #package(simpleterminators) ************************************************************************ */ function QxIconHtml(vHtml, vIcon, vIconWidth, vIconHeight) { QxHtml.call(this, vHtml); if (typeof vIcon != QxConst.TYPEOF_UNDEFINED) { this.setIcon(vIcon); if (typeof vIconWidth != QxConst.TYPEOF_UNDEFINED) { this.setIconWidth(vIconWidth); }; if (typeof vIconHeight != QxConst.TYPEOF_UNDEFINED) { this.setIconHeight(vIconWidth); }; }; }; QxIconHtml.extend(QxHtml, "QxIconHtml"); /* --------------------------------------------------------------------------- PROPERTIES --------------------------------------------------------------------------- */ /*! Any URI String supported by QxImage to display a icon */ QxIconHtml.addProperty({ name : "icon", type : QxConst.TYPEOF_STRING, impl : "html" }); /*! The width of the icon. If configured, this makes QxIconHtml a little bit faster as it does not need to wait until the image loading is finished. */ QxIconHtml.addProperty({ name : "iconWidth", type : QxConst.TYPEOF_NUMBER, impl : "html" }); /*! The height of the icon If configured, this makes QxIconHtml a little bit faster as it does not need to wait until the image loading is finished. */ QxIconHtml.addProperty({ name : "iconHeight", type : QxConst.TYPEOF_NUMBER, impl : "html" }); /*! Space in pixels between the icon and the HTML. */ QxIconHtml.addProperty({ name : "spacing", type : QxConst.TYPEOF_NUMBER, defaultValue : 4, impl : "html" }); /* --------------------------------------------------------------------------- UTILITIES --------------------------------------------------------------------------- */ QxIconHtml.START_IMAGE = "<img src=\""; QxIconHtml.START_STYLE = "\" style=\"vertical-align:middle;"; QxIconHtml.STYLE_MARGIN = "margin-right:"; QxIconHtml.STYLE_WIDTH = "width:"; QxIconHtml.STYLE_HEIGHT = "height:"; QxIconHtml.PIXEL_UNIT = "px;"; QxIconHtml.FILTER_START = "filter:"; QxIconHtml.STOP_IMAGE = "\"/>"; proto._mshtml = QxClient.isMshtml(); proto._syncHtml = function() { var vHtml = []; vHtml.push(QxIconHtml.START_IMAGE); vHtml.push(QxImageManager.buildURI(this._mshtml ? QxConst.IMAGE_BLANK : this.getIcon())); vHtml.push(QxIconHtml.START_STYLE); if (QxUtil.isValidNumber(this.getSpacing())) { vHtml.push(QxIconHtml.STYLE_MARGIN); vHtml.push(this.getSpacing()); vHtml.push(QxIconHtml.PIXEL_UNIT); }; if (QxUtil.isValidNumber(this.getIconWidth())) { vHtml.push(QxIconHtml.STYLE_WIDTH); vHtml.push(this.getIconWidth()); vHtml.push(QxIconHtml.PIXEL_UNIT); }; if (QxUtil.isValidNumber(this.getIconHeight())) { vHtml.push(QxIconHtml.STYLE_HEIGHT); vHtml.push(this.getIconHeight()); vHtml.push(QxIconHtml.PIXEL_UNIT); }; if (this._mshtml) { vHtml.push(QxIconHtml.FILTER_START); vHtml.push(QxImage.IMGLOADER_START); vHtml.push(QxImageManager.buildURI(this.getIcon())); vHtml.push(QxImage.IMGLOADER_STOP); vHtml.push(QxConst.CORE_SEMICOLON); }; vHtml.push(QxIconHtml.STOP_IMAGE); vHtml.push(this.getHtml()); this.getElement().innerHTML = vHtml.join(QxConst.CORE_EMPTY); }; --- QxSimpleIconHtml.js DELETED --- Index: QxListViewContentCellHtml.js =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/script/widgets/Attic/QxListViewContentCellHtml.js,v retrieving revision 1.1.2.9 retrieving revision 1.1.2.10 diff -u -d -r1.1.2.9 -r1.1.2.10 --- QxListViewContentCellHtml.js 9 Feb 2006 11:59:01 -0000 1.1.2.9 +++ QxListViewContentCellHtml.js 15 Feb 2006 16:50:22 -0000 1.1.2.10 @@ -31,12 +31,12 @@ function QxListViewContentCellHtml(vHtml) { - QxSimpleHtml.call(this, vHtml); + QxHtml.call(this, vHtml); this.setSelectable(false); }; -QxListViewContentCellHtml.extend(QxSimpleHtml, "QxListViewContentCellHtml"); +QxListViewContentCellHtml.extend(QxHtml, "QxListViewContentCellHtml"); QxListViewContentCellHtml.changeProperty({ name : "appearance", type : QxConst.TYPEOF_STRING, defaultValue : "list-view-content-cell-html" }); |
|
From: Andreas E. <ec...@us...> - 2006-02-15 16:50:32
|
Update of /cvsroot/qooxdoo/qooxdoo/tools/generate/internal In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9967/tools/generate/internal Modified Files: Tag: renderer config.sh Log Message: Renamed classes QxSimpleFOO back to QxFOO Index: config.sh =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/tools/generate/internal/Attic/config.sh,v retrieving revision 1.1.2.1 retrieving revision 1.1.2.2 diff -u -d -r1.1.2.1 -r1.1.2.2 --- config.sh 14 Feb 2006 11:22:18 -0000 1.1.2.1 +++ config.sh 15 Feb 2006 16:50:22 -0000 1.1.2.2 @@ -158,11 +158,11 @@ L="$L script/widgets/QxGridLayout" # Simple widgets -L="$L script/widgets/QxSimpleText" -L="$L script/widgets/QxSimpleHtml" -L="$L script/widgets/QxSimpleLink" -L="$L script/widgets/QxSimpleIconHtml" -L="$L script/widgets/QxSimpleNode" +L="$L script/widgets/QxText" +L="$L script/widgets/QxHtml" +L="$L script/widgets/QxLink" +L="$L script/widgets/QxIconHtml" +L="$L script/widgets/QxNode" # Most used Widgets L="$L script/widgets/QxLabel" |
|
From: Andreas E. <ec...@us...> - 2006-02-15 16:50:31
|
Update of /cvsroot/qooxdoo/qooxdoo/source/demo/test In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9967/source/demo/test Modified Files: Tag: renderer IconHtml_1.html Node_1.html Link_1.html Image_1.html Log Message: Renamed classes QxSimpleFOO back to QxFOO Index: Image_1.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/demo/test/Attic/Image_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 --- Image_1.html 14 Feb 2006 11:24:49 -0000 1.1.2.2 +++ Image_1.html 15 Feb 2006 16:50:22 -0000 1.1.2.3 @@ -15,7 +15,7 @@ QxEvents which will be fired, and cross-browser PNG with extended alpha channels.</p> <p>PNG file in HTML (in Internet Explorer this should not be transparent):</p> - <img src="../../images/icons/crystalsvg/48/hardwareinfo.png" width="48" height="48"/> + <img src="../../themes/icons/crystalsvg/48/hardwareinfo.png" width="48" height="48"/> </div> <script type="text/javascript"> Index: Link_1.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/demo/test/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 14 Feb 2006 11:24:49 -0000 1.1.2.2 +++ Link_1.html 15 Feb 2006 16:50:22 -0000 1.1.2.3 @@ -17,7 +17,7 @@ <script type="text/javascript"> window.application.main = function() { - var l1 = new QxSimpleLink("Open Google", "http://www.google.com"); + var l1 = new QxLink("Open Google", "http://www.google.com"); l1.setLocation(20, 48); Index: IconHtml_1.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/demo/test/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 14 Feb 2006 11:24:49 -0000 1.1.2.2 +++ IconHtml_1.html 15 Feb 2006 16:50:22 -0000 1.1.2.3 @@ -17,7 +17,7 @@ <script type="text/javascript"> window.application.main = function() { - var l1 = new QxSimpleIconHtml("Hello World", "icons/32/mixer.png", 32, 32); + var l1 = new QxIconHtml("Hello World", "icons/32/mixer.png", 32, 32); l1.setLocation(20, 48); Index: Node_1.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/demo/test/Attic/Node_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 --- Node_1.html 14 Feb 2006 11:24:49 -0000 1.1.2.2 +++ Node_1.html 15 Feb 2006 16:50:22 -0000 1.1.2.3 @@ -11,7 +11,7 @@ <script type="text/javascript" src="../demolayout.js"></script> <div id="demoDescription"> - <p>QxSimpleNode makes a dom node a widget.</p> + <p>QxNode makes a dom node a widget.</p> </div> <div id="text1" style="display:none">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero et accumsan et iusto odio dignissim qui <strong>qooxdoo</strong> blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. Nam liber tempor cum soluta nobis eleifend option congue nihil imperdiet doming id quod mazim placerat facer possim assum.</div> @@ -21,7 +21,7 @@ { var d = this.getClientWindow().getClientDocument(); - var n = new QxSimpleNode("text1"); + var n = new QxNode("text1"); n.setLocation(20, 48); n.setRight(335); |
Update of /cvsroot/qooxdoo/qooxdoo/source/demo/test In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8781/source/demo/test Modified Files: Tag: renderer Gallery_2.html Gallery_3.html Builder_2.html Builder_4.html Builder_1.html Builder_3.html Log Message: Bug fixes (image urls) Index: Builder_3.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/demo/test/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 14 Feb 2006 09:58:11 -0000 1.1.2.1 +++ Builder_3.html 15 Feb 2006 16:48:05 -0000 1.1.2.2 @@ -4,11 +4,12 @@ <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-15" /> <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> + <link type="text/css" rel="stylesheet" href="../demolayout.css"/> + <script type="text/javascript" src="../demoinclude.js"></script> </head> <body> - <script type="text/javascript" src="../../../tools/script/demolayout.js"></script> + <script type="text/javascript" src="../demolayout.js"></script> + <script type="text/javascript"> window.application.main = function() { new QxBuilder().buildFromUrl(this, 'Builder_3.xml'); @@ -21,5 +22,4 @@ </div> </body> </html> -</body> -</html> + Index: Builder_1.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/demo/test/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 14 Feb 2006 09:58:11 -0000 1.1.2.1 +++ Builder_1.html 15 Feb 2006 16:48:05 -0000 1.1.2.2 @@ -4,11 +4,12 @@ <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-15" /> <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> + <link type="text/css" rel="stylesheet" href="../demolayout.css"/> + <script type="text/javascript" src="../demoinclude.js"></script> </head> <body> - <script type="text/javascript" src="../../../tools/script/demolayout.js"></script> + <script type="text/javascript" src="../demolayout.js"></script> + <script type="text/javascript"> window.application.main = function() { new QxBuilder().build(this, document.getElementById('widgets')); @@ -72,5 +73,3 @@ </textarea> </body> </html> -</body> -</html> Index: Gallery_2.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/demo/test/Attic/Gallery_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 --- Gallery_2.html 14 Feb 2006 11:24:49 -0000 1.1.2.2 +++ Gallery_2.html 15 Feb 2006 16:48:05 -0000 1.1.2.3 @@ -15,6 +15,70 @@ </div> <style type="text/css"> + .QxGallery .galleryFrame{ + padding: 2px; + } + + .QxGallery .galleryCell{ + border: 1px solid #444; + background: #fff; + margin: 2px; + float: left; + overflow: hidden; + + font-family: Tahoma, Verdana, sans-serif; + font-size: 10px; + + cursor: default; + + -moz-user-select: none; + user-select: none; + } + + .QxGallery .galleryCell img{ + vertical-align: bottom; + display: block; + } + + .QxGallery .galleryCell .galleryTitle, + .QxGallery .galleryCell .galleryComment{ + background: #eee; + padding: 3px 6px; + text-align: center; + cursor: default; + overflow: hidden; + white-space: nowrap; + } + + .QxGallery .galleryCell .galleryTitle{ + border-bottom: 1px solid #aaa; + } + + .QxGallery .galleryCell .galleryComment{ + border-top: 1px solid #aaa; + } + + .QxGallery .galleryCell-Selected{ + background: #DCE8F6; + border: 1px solid #2760A1; + } + + .QxGallery .galleryCell-Selected .galleryTitle, + .QxGallery .galleryCell-Selected .galleryComment{ + background: #9BBFE7; + } + + .QxGallery .galleryCell-Selected .galleryTitle{ + border-bottom: 1px dotted #2760A1; + } + + .QxGallery .galleryCell-Selected .galleryComment{ + border-top: 1px dotted #2760A1; + } + + + /* customize */ + .QxGallery{ background: #fff; padding: 5px; @@ -48,7 +112,7 @@ timestamp : Math.random().toString(), comment : "Cool Comment", id : "7686191121780974-10682", - src : "../../images/icons/crystalsvg/64/tv.png" + src : "../../themes/icons/crystalsvg/64/tv.png" }); }; Index: Gallery_3.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/demo/test/Attic/Gallery_3.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 --- Gallery_3.html 14 Feb 2006 11:24:49 -0000 1.1.2.2 +++ Gallery_3.html 15 Feb 2006 16:48:05 -0000 1.1.2.3 @@ -16,6 +16,70 @@ </div> <style type="text/css"> + .QxGallery .galleryFrame{ + padding: 2px; + } + + .QxGallery .galleryCell{ + border: 1px solid #444; + background: #fff; + margin: 2px; + float: left; + overflow: hidden; + + font-family: Tahoma, Verdana, sans-serif; + font-size: 10px; + + cursor: default; + + -moz-user-select: none; + user-select: none; + } + + .QxGallery .galleryCell img{ + vertical-align: bottom; + display: block; + } + + .QxGallery .galleryCell .galleryTitle, + .QxGallery .galleryCell .galleryComment{ + background: #eee; + padding: 3px 6px; + text-align: center; + cursor: default; + overflow: hidden; + white-space: nowrap; + } + + .QxGallery .galleryCell .galleryTitle{ + border-bottom: 1px solid #aaa; + } + + .QxGallery .galleryCell .galleryComment{ + border-top: 1px solid #aaa; + } + + .QxGallery .galleryCell-Selected{ + background: #DCE8F6; + border: 1px solid #2760A1; + } + + .QxGallery .galleryCell-Selected .galleryTitle, + .QxGallery .galleryCell-Selected .galleryComment{ + background: #9BBFE7; + } + + .QxGallery .galleryCell-Selected .galleryTitle{ + border-bottom: 1px dotted #2760A1; + } + + .QxGallery .galleryCell-Selected .galleryComment{ + border-top: 1px dotted #2760A1; + } + + + /* customize */ + .QxGallery{ background: #fff; padding: 5px; @@ -51,7 +115,7 @@ timestamp : Math.random().toString(), comment : "Cool Comment: " + i, id : "7686191121780974-10682-" + i, - src : "../../images/icons/crystalsvg/64/paint.png" + src : "../../themes/icons/crystalsvg/64/paint.png" }); }; @@ -102,7 +166,7 @@ timestamp : Math.random().toString(), comment : "Cool Comment: " + i, id : "7686191121780974-10682-" + i, - src : "../../images/icons/crystalsvg/64/colors.png" + src : "../../themes/icons/crystalsvg/64/colors.png" }); }; Index: Builder_2.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/demo/test/Attic/Builder_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 --- Builder_2.html 14 Feb 2006 09:58:11 -0000 1.1.2.1 +++ Builder_2.html 15 Feb 2006 16:48:05 -0000 1.1.2.2 @@ -4,11 +4,12 @@ <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-15" /> <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> + <link type="text/css" rel="stylesheet" href="../demolayout.css"/> + <script type="text/javascript" src="../demoinclude.js"></script> </head> <body> - <script type="text/javascript" src="../../../tools/script/demolayout.js"></script> + <script type="text/javascript" src="../demolayout.js"></script> + <script type="text/javascript"> window.application.main = function() { new QxBuilder().buildFromUrl(this, 'Builder_2.xml'); @@ -21,5 +22,3 @@ </div> </body> </html> -</body> -</html> Index: Builder_4.html =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/demo/test/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 14 Feb 2006 09:58:11 -0000 1.1.2.1 +++ Builder_4.html 15 Feb 2006 16:48:05 -0000 1.1.2.2 @@ -4,11 +4,12 @@ <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-15" /> <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> + <link type="text/css" rel="stylesheet" href="../demolayout.css"/> + <script type="text/javascript" src="../demoinclude.js"></script> </head> <body> - <script type="text/javascript" src="../../../tools/script/demolayout.js"></script> + <script type="text/javascript" src="../demolayout.js"></script> + <script type="text/javascript"> window.application.main = function() { new QxBuilder().build(this, document.getElementById('widgets')); @@ -16,7 +17,7 @@ </script> <div id="demoDescription"> <p>QxBuilder demo.</p> - <p>3 Format Example</> + <p>3 Format Example</p> </div> <textarea id='widgets' style='display:none'> <qx:widgets xmlns:qx='qooxdoo'> @@ -37,5 +38,4 @@ </textarea> </body> </html> -</body> -</html> + |