You can subscribe to this list here.
| 2007 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(10) |
Jul
(24) |
Aug
(93) |
Sep
(261) |
Oct
(257) |
Nov
(218) |
Dec
(95) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2008 |
Jan
(184) |
Feb
(87) |
Mar
(155) |
Apr
(398) |
May
(201) |
Jun
(35) |
Jul
(68) |
Aug
(92) |
Sep
(52) |
Oct
(111) |
Nov
(135) |
Dec
(116) |
| 2009 |
Jan
(225) |
Feb
(204) |
Mar
(113) |
Apr
(137) |
May
(220) |
Jun
(199) |
Jul
(196) |
Aug
(98) |
Sep
(100) |
Oct
(179) |
Nov
(164) |
Dec
(72) |
| 2010 |
Jan
(59) |
Feb
(61) |
Mar
(64) |
Apr
(159) |
May
(107) |
Jun
(252) |
Jul
(180) |
Aug
(96) |
Sep
(82) |
Oct
(58) |
Nov
(43) |
Dec
(53) |
| 2011 |
Jan
(39) |
Feb
(18) |
Mar
(33) |
Apr
(66) |
May
(48) |
Jun
(124) |
Jul
(112) |
Aug
(62) |
Sep
(45) |
Oct
(102) |
Nov
(47) |
Dec
(37) |
| 2012 |
Jan
(22) |
Feb
(18) |
Mar
(1) |
Apr
(5) |
May
(18) |
Jun
(13) |
Jul
(9) |
Aug
(38) |
Sep
(3) |
Oct
(7) |
Nov
(24) |
Dec
(6) |
| 2013 |
Jan
(1) |
Feb
(14) |
Mar
(1) |
Apr
(2) |
May
(3) |
Jun
(4) |
Jul
(9) |
Aug
(4) |
Sep
(7) |
Oct
|
Nov
(1) |
Dec
(4) |
| 2014 |
Jan
(9) |
Feb
(2) |
Mar
|
Apr
|
May
(4) |
Jun
(2) |
Jul
|
Aug
|
Sep
(6) |
Oct
|
Nov
(1) |
Dec
|
| 2015 |
Jan
|
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(1) |
Oct
(1) |
Nov
|
Dec
|
| 2016 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(2) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| S | M | T | W | T | F | S |
|---|---|---|---|---|---|---|
|
|
|
|
|
|
1
(1) |
2
|
|
3
(4) |
4
(1) |
5
|
6
|
7
|
8
(12) |
9
|
|
10
(1) |
11
(4) |
12
(6) |
13
(10) |
14
(9) |
15
|
16
|
|
17
|
18
|
19
(1) |
20
(2) |
21
(2) |
22
(2) |
23
|
|
24
|
25
|
26
(3) |
27
(1) |
28
(3) |
29
(4) |
30
|
|
From: <mar...@us...> - 2011-04-22 16:29:57
|
Revision: 21074
http://qooxdoo-contrib.svn.sourceforge.net/qooxdoo-contrib/?rev=21074&view=rev
Author: marcputs
Date: 2011-04-22 16:29:50 +0000 (Fri, 22 Apr 2011)
Log Message:
-----------
Fixed bug and potential memory leak in Path element when PathData was used.
Modified Paths:
--------------
trunk/qooxdoo-contrib/SVG/trunk/source/class/svg/path/Path.js
Modified: trunk/qooxdoo-contrib/SVG/trunk/source/class/svg/path/Path.js
===================================================================
--- trunk/qooxdoo-contrib/SVG/trunk/source/class/svg/path/Path.js 2011-04-22 14:44:53 UTC (rev 21073)
+++ trunk/qooxdoo-contrib/SVG/trunk/source/class/svg/path/Path.js 2011-04-22 16:29:50 UTC (rev 21074)
@@ -76,20 +76,20 @@
//applies path data
_applyPathData: function(value, old) {
- if (null == value) {
+ if (null === value) {
this.removeAttribute("d");
- } else if (value instanceof svg.path.PathData) {
-
- if (old instanceof svg.path.PathData) {
- old.removeListener("change", this.__changeListener, this);
- }
-
+ }
+ else if (value instanceof svg.path.PathData) {
this.setAttribute("d", value.toString());
value.addListener("change", this.__changeListener, this);
-
- } else {
+ }
+ else {
this.setAttribute("d", value);
}
+
+ if (old instanceof svg.path.PathData) {
+ old.removeListener("change", this.__changeListener, this);
+ }
},
//applies path length
@@ -108,7 +108,7 @@
* data event fired by PathData
*/
__changeListener: function(ev) {
- this._applyPathData(ev.getData());
+ this._applyPathData(ev.getData(), ev.getOldData());
}
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <mar...@us...> - 2011-04-22 14:44:59
|
Revision: 21073
http://qooxdoo-contrib.svn.sourceforge.net/qooxdoo-contrib/?rev=21073&view=rev
Author: marcputs
Date: 2011-04-22 14:44:53 +0000 (Fri, 22 Apr 2011)
Log Message:
-----------
Added missing package documentation.
Added Paths:
-----------
trunk/qooxdoo-contrib/SVG/trunk/source/class/svg/text/__init__.js
Added: trunk/qooxdoo-contrib/SVG/trunk/source/class/svg/text/__init__.js
===================================================================
--- trunk/qooxdoo-contrib/SVG/trunk/source/class/svg/text/__init__.js (rev 0)
+++ trunk/qooxdoo-contrib/SVG/trunk/source/class/svg/text/__init__.js 2011-04-22 14:44:53 UTC (rev 21073)
@@ -0,0 +1,5 @@
+/**
+ * Place text on the SVG graphic.
+ *
+ * http://www.w3.org/TR/SVG/text.html
+ */
Property changes on: trunk/qooxdoo-contrib/SVG/trunk/source/class/svg/text/__init__.js
___________________________________________________________________
Added: svn:mime-type
+ text/plain
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|